framework/uifw/edbus.git
13 years agoe_dbus: uncrustify ofono module
lucas [Thu, 16 Sep 2010 01:11:08 +0000 (01:11 +0000)]
e_dbus: uncrustify ofono module
The following exceptions apply to current uncrustify config:

mod_add_long_function_closebrace_comment=0
mod_add_long_switch_closebrace_comment=0
mod_add_long_ifdef_endif_comment=0
mod_add_long_ifdef_else_comment=0
mod_full_brace_if_chain=true

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@52332 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoe_dbus: uncrustify connman module
lucas [Thu, 16 Sep 2010 01:05:02 +0000 (01:05 +0000)]
e_dbus: uncrustify connman module
The following exceptions apply to current uncrustify config:

mod_add_long_function_closebrace_comment=0
mod_add_long_switch_closebrace_comment=0
mod_add_long_ifdef_endif_comment=0
mod_add_long_ifdef_else_comment=0
mod_full_brace_if_chain=true

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@52331 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoconnman: set also gateway when configuring manually
lucas [Wed, 15 Sep 2010 20:51:43 +0000 (20:51 +0000)]
connman: set also gateway when configuring manually

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@52329 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoRemove unneeded re-definition of EAPI
lucas [Wed, 15 Sep 2010 20:51:37 +0000 (20:51 +0000)]
Remove unneeded re-definition of EAPI
Windows doesn't have these submodules and the #else part is just a
re-define of what is made in eina_types.h

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@52328 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoClear connman header file
lucas [Wed, 15 Sep 2010 20:51:27 +0000 (20:51 +0000)]
Clear connman header file
Remove lots of blank lines by grouping similar functions.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@52327 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoFix common misspellings
lucas [Wed, 8 Sep 2010 12:15:22 +0000 (12:15 +0000)]
Fix common misspellings

Following misspellings were fixed:

dependant->dependent
sucess->success
sufficent->sufficient
ther->their (plus line wrapping)

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@51989 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agosvn:ignore!
barbieri [Tue, 7 Sep 2010 15:24:12 +0000 (15:24 +0000)]
svn:ignore!

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@51950 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoConvert (hopefully) all comparisons to NULL
lucas [Sat, 21 Aug 2010 13:52:25 +0000 (13:52 +0000)]
Convert (hopefully) all comparisons to NULL

Apply badzero.cocci, badnull.coci and badnull2.cocci

This should convert all cases where there's a comparison to NULL to simpler
forms. This patch applies the following transformations:

code before patch               ||code after patch
===============================================================

return a == NULL;                 return !a;

return a != NULL;                 return !!a;

func(a == NULL);                  func(!a);

func(a != NULL);                  func(!!a);

b = a == NULL;                    b = !a;

b = a != NULL;                    b = !!a;

b = a == NULL ? c : d;            b = !a ? c : d;

b = a != NULL ? c : d;            b = a ? c : d;

other cases:

a == NULL                         !a
a != NULL                         a

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@51487 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoremove spaces
caro [Thu, 19 Aug 2010 06:34:49 +0000 (06:34 +0000)]
remove spaces

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@51382 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agodbus is in Requires, no need to have it in Libs
caro [Wed, 18 Aug 2010 23:05:35 +0000 (23:05 +0000)]
dbus is in Requires, no need to have it in Libs

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@51372 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agodbus-1 in requires too.
raster [Wed, 18 Aug 2010 07:35:25 +0000 (07:35 +0000)]
dbus-1 in requires too.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@51271 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agosorry vtorri :( put back in. dso fix is right due to dbus.h include.
raster [Wed, 18 Aug 2010 01:25:53 +0000 (01:25 +0000)]
sorry vtorri :( put back in. dso fix is right due to dbus.h include.
see email! :)

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@51269 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agomisc. fixes and cleanups by Albin Tonnerre
caro [Tue, 17 Aug 2010 18:34:33 +0000 (18:34 +0000)]
misc. fixes and cleanups by Albin Tonnerre

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@51265 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agorevert the DSO fix, it's wrong. If there is a problem, it should be fixed elsewhere
caro [Tue, 17 Aug 2010 18:27:51 +0000 (18:27 +0000)]
revert the DSO fix, it's wrong. If there is a problem, it should be fixed elsewhere

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@51264 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoand fox docs too to be consistent
raster [Mon, 16 Aug 2010 09:52:41 +0000 (09:52 +0000)]
and fox docs too to be consistent

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@51184 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoooh edbus didn thave runtime version check! fix fix fix! and... 1.0.0
raster [Mon, 16 Aug 2010 09:47:24 +0000 (09:47 +0000)]
ooh edbus didn thave runtime version check! fix fix fix! and... 1.0.0
alpha.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@51183 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agofix up copyings likewise. nicely standardised templateish.
raster [Mon, 16 Aug 2010 03:00:16 +0000 (03:00 +0000)]
fix up copyings likewise. nicely standardised templateish.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@51150 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agofix double free
discomfitor [Tue, 10 Aug 2010 18:39:23 +0000 (18:39 +0000)]
fix double free
patch from  Leif Middelschulte

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@50971 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agodso fix - part of it isnt in e- it's in edbus.
raster [Mon, 12 Jul 2010 00:12:17 +0000 (00:12 +0000)]
dso fix - part of it isnt in e- it's in edbus.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@50187 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoadd missing EVAS_CFLAGS for notify binaries.
barbieri [Fri, 9 Jul 2010 15:01:39 +0000 (15:01 +0000)]
add missing EVAS_CFLAGS for notify binaries.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@50159 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoMove E_Dbus Header (and associated headers) to own directory.
devilhorns [Fri, 9 Jul 2010 07:29:46 +0000 (07:29 +0000)]
Move E_Dbus Header (and associated headers) to own directory.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@50150 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years ago * e_dbus: pending change due to Ecore API change.
cedric [Thu, 1 Jul 2010 16:30:40 +0000 (16:30 +0000)]
* e_dbus: pending change due to Ecore API change.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@49967 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoGet size from the right variable, as spotted by k-s, but he has a flat tire so he...
sachiel [Wed, 30 Jun 2010 20:42:28 +0000 (20:42 +0000)]
Get size from the right variable, as spotted by k-s, but he has a flat tire so he can't commit.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@49954 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoand final post snap - next releasename
raster [Sun, 27 Jun 2010 14:06:10 +0000 (14:06 +0000)]
and final post snap - next releasename

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@49903 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agosnap+release
raster [Sun, 27 Jun 2010 13:45:27 +0000 (13:45 +0000)]
snap+release

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@49899 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoSnapshot e_dbus
raster [Sun, 27 Jun 2010 13:33:03 +0000 (13:33 +0000)]
Snapshot e_dbus

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@49896 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years ago * e_dbus: remove warning due to change in Ecore API.
cedric [Thu, 24 Jun 2010 16:18:26 +0000 (16:18 +0000)]
* e_dbus: remove warning due to change in Ecore API.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@49832 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoSVN_REPO_PATH envvar during autoconf to use svnversion in there.
barbieri [Wed, 9 Jun 2010 18:22:47 +0000 (18:22 +0000)]
SVN_REPO_PATH envvar during autoconf to use svnversion in there.

Some systems, like the Gentoo, copy the svn contents somewhere before
doing the autoconf, this may result in lack of .svn and thus minor
version "0".

This patch introduces the $SVN_REPO_PATH to say where the svn checkout
containing the ".svn" directory is.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@49594 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agomissing returned type in function signature
caro [Sun, 6 Jun 2010 19:41:32 +0000 (19:41 +0000)]
missing  returned type in function signature

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@49544 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agorestore after snap/release
raster [Sun, 6 Jun 2010 17:43:03 +0000 (17:43 +0000)]
restore after snap/release

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@49540 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoSnapshot e_dbus
raster [Sun, 6 Jun 2010 17:26:59 +0000 (17:26 +0000)]
Snapshot e_dbus

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@49537 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agopost-snap anr release.. reset svn back.. this time for real.
raster [Sun, 6 Jun 2010 17:17:52 +0000 (17:17 +0000)]
post-snap anr release.. reset svn back.. this time for real.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@49526 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoSnapshot e_dbus
raster [Sun, 6 Jun 2010 16:42:52 +0000 (16:42 +0000)]
Snapshot e_dbus

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@49520 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agopost release - move relname to pre-svn again.
raster [Sun, 6 Jun 2010 16:23:16 +0000 (16:23 +0000)]
post release - move relname to pre-svn again.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@49506 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoSnapshot e_dbus
raster [Sun, 6 Jun 2010 16:08:18 +0000 (16:08 +0000)]
Snapshot e_dbus

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@49501 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agochange svnversion shell goop to nuke sed and just use tr to delete
raster [Fri, 4 Jun 2010 01:04:24 +0000 (01:04 +0000)]
change svnversion shell goop to nuke sed and just use tr to delete
unwanted goop.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@49429 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoLet git-svn users get the right revision number to be used as version.
sachiel [Thu, 3 Jun 2010 07:40:54 +0000 (07:40 +0000)]
Let git-svn users get the right revision number to be used as version.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@49407 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agofix transparency of notification hint icons. evas image data is premul it seems
jeffdameth [Tue, 1 Jun 2010 23:35:39 +0000 (23:35 +0000)]
fix transparency of notification hint icons. evas image data is premul it seems

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@49385 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoadd a define for fdo.properties interface, replace lots of code with #define values
discomfitor [Tue, 1 Jun 2010 19:42:29 +0000 (19:42 +0000)]
add a define for fdo.properties interface, replace lots of code with #define values

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@49379 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoadd defines for fdo bus/path/interface
discomfitor [Tue, 1 Jun 2010 19:21:47 +0000 (19:21 +0000)]
add defines for fdo bus/path/interface

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@49377 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoadd e_dbus_introspect; this call can be used on any bus+objectpath that follows the...
discomfitor [Mon, 31 May 2010 18:17:27 +0000 (18:17 +0000)]
add e_dbus_introspect; this call can be used on any bus+objectpath that follows the spec (which should be all of them that we'll use).  in the callback, if error is not set, then the bus exists.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@49358 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agonopw svn revision works again.
raster [Mon, 31 May 2010 03:12:45 +0000 (03:12 +0000)]
nopw svn revision works again.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@49344 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agofix - if no svn tree, then it will pretend to be a release.
raster [Mon, 31 May 2010 01:59:22 +0000 (01:59 +0000)]
fix - if no svn tree, then it will pretend to be a release.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@49343 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoedbus... version info
raster [Sat, 29 May 2010 09:37:56 +0000 (09:37 +0000)]
edbus... version info

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@49283 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agospace--
caro [Sat, 22 May 2010 13:56:47 +0000 (13:56 +0000)]
space--

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@49139 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years ago * add a main page for the documentation of the project
caro [Sat, 22 May 2010 13:55:30 +0000 (13:55 +0000)]
 * add a main page for the documentation of the project
 * add links in the header.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@49138 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agofix few doxy warnings
caro [Sat, 22 May 2010 08:17:39 +0000 (08:17 +0000)]
fix few doxy warnings

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@49135 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoFix a bit the doc. Main page, modules page, etc... should be fixed/improved
caro [Sat, 22 May 2010 07:59:34 +0000 (07:59 +0000)]
Fix a bit the doc. Main page, modules page, etc... should be fixed/improved

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@49133 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years ago * fix autotools
caro [Sat, 22 May 2010 07:36:21 +0000 (07:36 +0000)]
 * fix autotools
 * add doc support

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@49132 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agonew line at end of line
caro [Fri, 14 May 2010 05:51:11 +0000 (05:51 +0000)]
new line at end of line

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@48851 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agorevert some changes and improve a bit the detection on Windows
caro [Fri, 14 May 2010 05:45:06 +0000 (05:45 +0000)]
revert some changes and improve a bit the detection on Windows

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@48849 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoWindows stuff
caro [Fri, 14 May 2010 05:44:26 +0000 (05:44 +0000)]
Windows stuff

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@48848 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agofix properly the e_ukit_privfunc.h functions thingy and improve a bit Makefile.am
caro [Fri, 14 May 2010 05:43:43 +0000 (05:43 +0000)]
fix properly the e_ukit_privfunc.h functions thingy and improve a bit Makefile.am

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@48847 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agos/udev/ukit/g
discomfitor [Thu, 13 May 2010 11:32:55 +0000 (11:32 +0000)]
s/udev/ukit/g

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@48810 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoand now remove last bits of the old configure stuff.
raster [Tue, 11 May 2010 13:16:12 +0000 (13:16 +0000)]
and now remove last bits of the old configure stuff.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@48753 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agorevert debian changes - didn't mean that.
raster [Tue, 11 May 2010 13:04:37 +0000 (13:04 +0000)]
revert debian changes - didn't mean that.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@48751 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agobuild all the modules for dbus by default (well all the liub wrappers). as
raster [Tue, 11 May 2010 13:02:28 +0000 (13:02 +0000)]
build all the modules for dbus by default (well all the liub wrappers). as
its protocol wrappers there is little reason not to do so by default.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@48750 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoe_hal: make sure dbus doesn't free strings we use
englebass [Fri, 7 May 2010 19:18:02 +0000 (19:18 +0000)]
e_hal: make sure dbus doesn't free strings we use

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@48674 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agorevert stringshare code for e_hal
englebass [Fri, 7 May 2010 18:07:11 +0000 (18:07 +0000)]
revert stringshare code for e_hal

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@48673 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agorevert broken dbus return handling, readd stringshares
discomfitor [Fri, 7 May 2010 16:48:41 +0000 (16:48 +0000)]
revert broken dbus return handling, readd stringshares

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@48670 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoe_dbus/hal: remove stringshare madness
englebass [Thu, 6 May 2010 20:50:37 +0000 (20:50 +0000)]
e_dbus/hal: remove stringshare madness

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@48653 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agosvn:ignore and stop polluting my svn-status :-)
barbieri [Mon, 3 May 2010 18:43:17 +0000 (18:43 +0000)]
svn:ignore and stop polluting my svn-status :-)

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@48586 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agofix notification's critical warning, cleanup logging and daemon.
barbieri [Sat, 1 May 2010 20:06:56 +0000 (20:06 +0000)]
fix notification's critical warning, cleanup logging and daemon.

 * daemon now must be initialized, as it is independent from client;

 * client and daemon now have separate logging, actually just daemon
   have it now;

 * update gadget to use daemon_init call.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@48520 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agounmarshal for string lists must eina_stringshare_add() them.
barbieri [Sat, 1 May 2010 19:38:28 +0000 (19:38 +0000)]
unmarshal for string lists must eina_stringshare_add() them.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@48519 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoUse proper error handling functions
lucas [Fri, 30 Apr 2010 15:10:25 +0000 (15:10 +0000)]
Use proper error handling functions

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@48479 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoe_hal: fix const
englebass [Thu, 29 Apr 2010 18:16:26 +0000 (18:16 +0000)]
e_hal: fix const

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@48430 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoDefault to yes for ehal
sachiel [Thu, 29 Apr 2010 14:45:05 +0000 (14:45 +0000)]
Default to yes for ehal

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@48417 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agofix ehal build, I'll figure this out later
discomfitor [Thu, 29 Apr 2010 09:56:00 +0000 (09:56 +0000)]
fix ehal build, I'll figure this out later

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@48415 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoyet another forgotten oops
discomfitor [Wed, 28 Apr 2010 20:55:11 +0000 (20:55 +0000)]
yet another forgotten oops

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@48406 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agooops forgot to add the pc
discomfitor [Wed, 28 Apr 2010 20:53:17 +0000 (20:53 +0000)]
oops forgot to add the pc

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@48405 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoadd completed ukit (upower/udisks aka devicekit) module
discomfitor [Wed, 28 Apr 2010 20:40:58 +0000 (20:40 +0000)]
add completed ukit (upower/udisks aka devicekit) module
fixes for hal module:
more readable by using defined type insertion
now utility functions always return stringshared strings. DO NOT FREE THESE.

Note that until you see a followup commit from me in e17, the filemanager/battery/illume modules will all potentially break from attempting to free stringshares

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@48404 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoRevert r48365 as requested by Mike.
barbieri [Tue, 27 Apr 2010 19:41:11 +0000 (19:41 +0000)]
Revert r48365 as requested by Mike.

It turns out that the hal stringshare part will break efm without his
other changes, so it must wait the full change that includes udev
work.

Sorry!

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@48366 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoHAL changes to make API cleaner and fix string handling.
barbieri [Tue, 27 Apr 2010 19:37:40 +0000 (19:37 +0000)]
HAL changes to make API cleaner and fix string handling.

By: Mike@zentific.com

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@48365 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoApply the same fix MEJ did ( http://marc.info/?l=enlightenment-svn&m=127157420508183...
rui [Wed, 21 Apr 2010 20:55:23 +0000 (20:55 +0000)]
Apply the same fix MEJ did ( marc.info/?l=enlightenment-svn&m=127157420508183&w=3 ) to more specs

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@48213 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agofix func signature, remove warnings.
barbieri [Sun, 18 Apr 2010 00:59:12 +0000 (00:59 +0000)]
fix func signature, remove warnings.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@48091 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoe_dbus/ofono: fix memory leak on test
barbieri [Tue, 23 Mar 2010 19:05:19 +0000 (19:05 +0000)]
e_dbus/ofono: fix memory leak on test

By: João Paulo Rechi Vita <jprvita@profusion.mobi>

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@47398 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoe_dbus/ofono: fix: with empty vectors property_get returns NULL and... BOOM!
barbieri [Tue, 23 Mar 2010 19:04:03 +0000 (19:04 +0000)]
e_dbus/ofono: fix: with empty vectors property_get returns NULL and... BOOM!

By: João Paulo Rechi Vita <jprvita@profusion.mobi>

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@47397 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoe_dbus/ofono: Add SmsManager interface support.
barbieri [Thu, 18 Mar 2010 22:09:55 +0000 (22:09 +0000)]
e_dbus/ofono: Add SmsManager interface support.

By: João Paulo Rechi Vita <jprvita@profusion.mobi>

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@47336 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agochar -> uint8_t as it is unsigned...
barbieri [Thu, 18 Mar 2010 22:06:59 +0000 (22:06 +0000)]
char -> uint8_t as it is unsigned...

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@47334 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoe_dbus/ofono: change bool to Eina_Bool
barbieri [Mon, 15 Mar 2010 20:45:15 +0000 (20:45 +0000)]
e_dbus/ofono: change bool to Eina_Bool

By: João Paulo Rechi Vita <jprvita@profusion.mobi>

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@47257 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoe_dbus/ofono: add functions to check element's interface.
barbieri [Mon, 15 Mar 2010 20:45:09 +0000 (20:45 +0000)]
e_dbus/ofono: add functions to check element's interface.

By: João Paulo Rechi Vita <jprvita@profusion.mobi>

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@47256 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoe_dbus/ofono: shorten var name
barbieri [Mon, 15 Mar 2010 20:45:04 +0000 (20:45 +0000)]
e_dbus/ofono: shorten var name

By: João Paulo Rechi Vita <jprvita@profusion.mobi>

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@47255 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoe_dbus/ofono: add function to get Modems property.
barbieri [Mon, 15 Mar 2010 20:44:58 +0000 (20:44 +0000)]
e_dbus/ofono: add function to get Modems property.

By: João Paulo Rechi Vita <jprvita@profusion.mobi>

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@47254 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoe_dbus/ofono: fix manager events names.
barbieri [Mon, 15 Mar 2010 20:44:50 +0000 (20:44 +0000)]
e_dbus/ofono: fix manager events names.

By: João Paulo Rechi Vita <jprvita@profusion.mobi>

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@47253 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agounfuck indentation, sorry.
barbieri [Fri, 12 Mar 2010 19:32:03 +0000 (19:32 +0000)]
unfuck indentation, sorry.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@47165 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agocouple of missing getters and fixes, consts...
barbieri [Fri, 12 Mar 2010 13:50:09 +0000 (13:50 +0000)]
couple of missing getters and fixes, consts...

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@47159 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoadd missing func attributes.
barbieri [Fri, 12 Mar 2010 13:49:21 +0000 (13:49 +0000)]
add missing func attributes.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@47158 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoadd missing func attributes.
barbieri [Fri, 12 Mar 2010 13:47:11 +0000 (13:47 +0000)]
add missing func attributes.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@47157 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoconst
barbieri [Fri, 12 Mar 2010 01:15:58 +0000 (01:15 +0000)]
const

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@47149 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoelement type checking.
barbieri [Thu, 11 Mar 2010 23:48:37 +0000 (23:48 +0000)]
element type checking.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@47147 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years ago-Wextra cleanup.
barbieri [Thu, 11 Mar 2010 23:20:33 +0000 (23:20 +0000)]
-Wextra cleanup.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@47146 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoformatting, damn!
barbieri [Thu, 11 Mar 2010 23:16:25 +0000 (23:16 +0000)]
formatting, damn!

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@47145 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years ago[PATCH 5/5] e_dbus/bluez: move to Eina_Bool
barbieri [Wed, 10 Mar 2010 20:36:17 +0000 (20:36 +0000)]
[PATCH 5/5] e_dbus/bluez: move to Eina_Bool

By: Gustavo F. Padovan <padovan@profusion.mobi>

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@47117 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years ago[PATCH 4/5] e_dbus/bluez: add more bluez functions to e_dbus
barbieri [Wed, 10 Mar 2010 20:36:09 +0000 (20:36 +0000)]
[PATCH 4/5] e_dbus/bluez: add more bluez functions to e_dbus
On this commit set/get for 3 adapters properties: Name, Discoverable,
DiscoverableTimeout.

By: Gustavo F. Padovan <padovan@profusion.mobi>

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@47116 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years ago[PATCH 3/5] e_dbus/bluez: fix some errors on doc
barbieri [Wed, 10 Mar 2010 20:36:04 +0000 (20:36 +0000)]
[PATCH 3/5] e_dbus/bluez: fix some errors on doc

By: Gustavo F. Padovan <padovan@profusion.mobi>

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@47115 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years ago[PATCH 2/5] e_dbus/bluez: fix crash when reattaching a dbus iface
barbieri [Wed, 10 Mar 2010 20:35:56 +0000 (20:35 +0000)]
[PATCH 2/5] e_dbus/bluez: fix crash when reattaching a dbus iface

By: Gustavo F. Padovan <padovan@profusion.mobi>

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@47114 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years ago[PATCH 1/5] e_dbus/bluez: fix compile warning
barbieri [Wed, 10 Mar 2010 20:35:42 +0000 (20:35 +0000)]
[PATCH 1/5] e_dbus/bluez: fix compile warning

By: Gustavo F. Padovan <padovan@profusion.mobi>

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@47113 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoset svn:ignore for ofono files.
barbieri [Wed, 10 Mar 2010 20:35:17 +0000 (20:35 +0000)]
set svn:ignore for ofono files.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@47112 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoe_dbus: add support to Technologies interface
barbieri [Sun, 7 Mar 2010 20:10:05 +0000 (20:10 +0000)]
e_dbus: add support to Technologies interface

By: Lucas De Marchi <lucas.demarchi@profusion.mobi>

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@46959 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years ago[PATCH 2/2] Add tests for Technology interface
barbieri [Wed, 3 Mar 2010 23:31:37 +0000 (23:31 +0000)]
[PATCH 2/2] Add tests for Technology interface

By: Lucas De Marchi <lucas.demarchi@profusion.mobi>

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@46855 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33