Linux bluetooth development
 help / color / mirror / Atom feed
* [Bluez-devel] More thoughts on bluez-gnome
@ 2007-03-05 16:46 Bastien Nocera
  2007-03-05 20:19 ` Marcel Holtmann
  0 siblings, 1 reply; 4+ messages in thread
From: Bastien Nocera @ 2007-03-05 16:46 UTC (permalink / raw)
  To: BlueZ development

Heya,

I was taking a look at the bluez-gnome source code on Friday, and this
week-end, as well as the interface in general.

I wanted to know what the target use of the bluetooth-applet (and
-properties) was.

The sort of thing that I'd like to see in a GNOME bluetooth applet:
- remove class of device drop-down menus (made a GConf-only option if
really necessary).
- add some integration into HAL (Software on/off, state restoration
after sleep)
- always display the bluetooth icon if a bluetooth device is present,
grayed out if the device is disabled (see above), removed if no adapter
is present at all
- more integration into existing GNOME software (gnome-vfs2-obexftp to
browse phones with Nautilus, gnome-obex-send and gnome-obex-server to
send and receive files).

The applet and the properties windows could also use a lot of cleanup,
codewise, to follow the GNOME style a bit more closely (separate the
auth/passkey code, make the "applet" into an object, use Glade when
possible to generate the interface).

Finally, I'd like to see convenience dialogues (as currently badly
implemented in gnome-bluetooth) for selecting particular Bluetooth
devices. Something aking to MacOS X' Bluetooth UI classes:
http://developer.apple.com/documentation/DeviceDrivers/Reference/IOBluetoothUI/index.html
and
http://developer.apple.com/documentation/DeviceDrivers/Conceptual/Bluetooth/BT_Bluetooth_On_MOSX/chapter_3_section_7.html#//apple_ref/doc/uid/TP30000997-CH215-TPXREF110

If the plan of bluez-gnome is to cater for the advanced Bluetooth
user[1], or the users of desktops other than GNOME, then I think I'll
move my focus onto bringing functionality to gnome-bluetooth instead.

Otherwise, I'd kindly request a CVS account so that my trivial cleanups
can get in faster.

Cheers

[1]: who wants to enable his bluetooth adapters as routers, need to be
able to enable/disable notification area icons, or change device
classes, etc.


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Bluez-devel mailing list
Bluez-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bluez-devel

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Bluez-devel] More thoughts on bluez-gnome
  2007-03-05 16:46 [Bluez-devel] More thoughts on bluez-gnome Bastien Nocera
@ 2007-03-05 20:19 ` Marcel Holtmann
  2007-03-07  0:58   ` Bastien Nocera
  0 siblings, 1 reply; 4+ messages in thread
From: Marcel Holtmann @ 2007-03-05 20:19 UTC (permalink / raw)
  To: BlueZ development

Hi Bastien,

> I was taking a look at the bluez-gnome source code on Friday, and this
> week-end, as well as the interface in general.
> 
> I wanted to know what the target use of the bluetooth-applet (and
> -properties) was.

the applet is the code that will run all the time and has the default
passkey and authorization agent code. It is also the place for all user
specific settings etc. It needs some more thinking about user switching
and special task when the screensaver has been enabled. For example
switching the device invisible when screensaver is on. However it should
be the only Bluetooth user application that needs to be running all the
time.

The properties will take care of all settings. This includes all GConf
settings we gonna use to control certain behaviors of the applet (like
the visibility of the applet icon). It also configures the basic
settings of an adapter (if not overwritten by HAL). Currently missing is
the handling of paired or trusted devices. You must be able to remove
bonding and trust relations with known devices. Additionally it will
also let you configure the services, but that is some future stuff.

> The sort of thing that I'd like to see in a GNOME bluetooth applet:
> - remove class of device drop-down menus (made a GConf-only option if
> really necessary).

I am all for it, but it must be an alternate based on the GConf option
and the presence of HAL support. Right now only the missing part is to
make the drop-down menu invisible when the HAL option is selected.

> - add some integration into HAL (Software on/off, state restoration
> after sleep)

I have no idea what you mean by that. If it is the rfkill switch then I
fully agree that we need to have this. However in case of rfkill it is
kinda complicated since the device will disappear physically from the
bus and so it makes it kinda complicated to view it any different than a
dongle that got removed and later re-attached.

> - always display the bluetooth icon if a bluetooth device is present,
> grayed out if the device is disabled (see above), removed if no adapter
> is present at all

I am all for having different icon. One that means the device is
inactive, one if it is scanning, one if it has an active connection and
so on. However to have this really nicely integrated with the theme
engine, I think someone has to come up with some Tango icons for us.

> - more integration into existing GNOME software (gnome-vfs2-obexftp to
> browse phones with Nautilus, gnome-obex-send and gnome-obex-server to
> send and receive files).

I am not actively looking at the VFS integration. For the OBEX stuff, I
am working on a transfer service that gives a simple D-Bus based API for
task like pushing and receiving files. So in general it will be as
simple ask calling a D-Bus method with a remote address and a filename
to actually push files. For the receiving parts we need some integration
with the applet. It should display an authorization request and then a
file selector. Not fully sure how this will finally look like, but we
might have this sorted out until the end of this week.

> The applet and the properties windows could also use a lot of cleanup,
> codewise, to follow the GNOME style a bit more closely (separate the
> auth/passkey code, make the "applet" into an object, use Glade when
> possible to generate the interface).

The passkey and authorization agent should be nice GOjects that can be
used by every application in the bluez-gnome source code. I have this on
my todo list, but I never got around actually getting this done. So feel
free to send a patch for this.

The applet itself is not an object. It is an application. However the
separate parts should be created as objects.

About the coding style, it has to follow the BlueZ coding style since it
is not part of the GNOME project. None of the applications are not
really GNOME applications. The only dependency is GTK and personally I
like to keep it this way. The name bluez-gnome might be misleading, but
original the idea was to have one package for GNOME and another one for
KDE. However the KDE is developed completely outside the scope of the
BlueZ project.

> Finally, I'd like to see convenience dialogues (as currently badly
> implemented in gnome-bluetooth) for selecting particular Bluetooth
> devices. Something aking to MacOS X' Bluetooth UI classes:
> http://developer.apple.com/documentation/DeviceDrivers/Reference/IOBluetoothUI/index.html
> and
> http://developer.apple.com/documentation/DeviceDrivers/Conceptual/Bluetooth/BT_Bluetooth_On_MOSX/chapter_3_section_7.html#//apple_ref/doc/uid/TP30000997-CH215-TPXREF110
> 
> If the plan of bluez-gnome is to cater for the advanced Bluetooth
> user[1], or the users of desktops other than GNOME, then I think I'll
> move my focus onto bringing functionality to gnome-bluetooth instead.

I am not happy with taking the control from the user. I think that they
should have a choice to enable expert settings if they want to. However
having automatic settings by default is a good idea.

The idea of having a libbluetooth-gtk with generic Bluetooth related UI
objects has crossed my mind already multiple times. The idea looks
pretty good. However I am not sure if we should rush into it. I would
prefer to see it as a private library inside bluez-gnome first and let
it evolve a little bit before we make it system wide available.

I already started with a generic object that will listen for inquiry
results and populate a tree of local and remote devices. This tree
should be the base for all dialogs. Then you can apply filters on it to
get the correct list that need. For example all phone devices. This
object needs to be created first by every UI application and it will
take care of all state changes and propagate them to the child trees or
lists and also to the UI. Check the test-client code in the CVS.

> Otherwise, I'd kindly request a CVS account so that my trivial cleanups
> can get in faster.

In general no problem, but I wanna first get the repository in a better
shape. That is mainly the reason why I haven't done a new release so
far. I a quite busy at the moment, so apologies for the inconvenience
that your patches currently have to go through. We will change that in
the future.

Regards

Marcel



-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Bluez-devel mailing list
Bluez-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bluez-devel

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Bluez-devel] More thoughts on bluez-gnome
  2007-03-05 20:19 ` Marcel Holtmann
@ 2007-03-07  0:58   ` Bastien Nocera
  2007-03-07 12:00     ` Marcel Holtmann
  0 siblings, 1 reply; 4+ messages in thread
From: Bastien Nocera @ 2007-03-07  0:58 UTC (permalink / raw)
  To: BlueZ development

On Mon, 2007-03-05 at 21:19 +0100, Marcel Holtmann wrote:
> Hi Bastien,
> 
> > I was taking a look at the bluez-gnome source code on Friday, and this
> > week-end, as well as the interface in general.
> > 
> > I wanted to know what the target use of the bluetooth-applet (and
> > -properties) was.
<snip>

That's not quite what I meant.

I wanted to know why the Bluetooth applet even allowed the user to
disable HAL support, why it would ask to define the device class when it
can be guessed, or why one could disable the bluetooth applet's icon in
the notification area.

> > The sort of thing that I'd like to see in a GNOME bluetooth applet:
> > - remove class of device drop-down menus (made a GConf-only option if
> > really necessary).
> 
> I am all for it, but it must be an alternate based on the GConf option
> and the presence of HAL support. Right now only the missing part is to
> make the drop-down menu invisible when the HAL option is selected.

Again, I don't see why this should even be an option.

> > - add some integration into HAL (Software on/off, state restoration
> > after sleep)
> 
> I have no idea what you mean by that. If it is the rfkill switch then I
> fully agree that we need to have this. However in case of rfkill it is
> kinda complicated since the device will disappear physically from the
> bus and so it makes it kinda complicated to view it any different than a
> dongle that got removed and later re-attached.

I know. For the applet it would be as easy as finding the rfkill switch
in the HAL tree, and using the GetPower/SetPower methods on it. If the
device is present, there's a bluetooth adapter ready to be used.

This would need HAL support, which should be a requirement, not an
option.

> > - always display the bluetooth icon if a bluetooth device is present,
> > grayed out if the device is disabled (see above), removed if no adapter
> > is present at all
> 
> I am all for having different icon. One that means the device is
> inactive, one if it is scanning, one if it has an active connection and
> so on. However to have this really nicely integrated with the theme
> engine, I think someone has to come up with some Tango icons for us.

So you'd be happy to remove the "Notification area" options in the
applet?

> > - more integration into existing GNOME software (gnome-vfs2-obexftp to
> > browse phones with Nautilus, gnome-obex-send and gnome-obex-server to
> > send and receive files).
> 
> I am not actively looking at the VFS integration. For the OBEX stuff, I
> am working on a transfer service that gives a simple D-Bus based API for
> task like pushing and receiving files. So in general it will be as
> simple ask calling a D-Bus method with a remote address and a filename
> to actually push files. For the receiving parts we need some integration
> with the applet. It should display an authorization request and then a
> file selector. Not fully sure how this will finally look like, but we
> might have this sorted out until the end of this week.

The integration I was talking about was about adding menu items to the
applet to allow sending files from it, or browsing a device using the
applet as a starting point.

As for the sharing service, the only part I could find was an incomplete
API doc in CVS. I couldn't find much information about the services
either. Would those services be running as root or the user? If the
former, it could be a security issue, and would cause problems on
SELinux systems.

I'd like to see an API (even a draft one). The current libbtctl obex API
is pretty good, and has all the information needed for UIs to be
implemented on top.

> > The applet and the properties windows could also use a lot of cleanup,
> > codewise, to follow the GNOME style a bit more closely (separate the
> > auth/passkey code, make the "applet" into an object, use Glade when
> > possible to generate the interface).
> 
> The passkey and authorization agent should be nice GOjects that can be
> used by every application in the bluez-gnome source code. I have this on
> my todo list, but I never got around actually getting this done. So feel
> free to send a patch for this.
> 
> The applet itself is not an object. It is an application. However the
> separate parts should be created as objects.

static globals don't help much when extending an application though, and
packing the important parts in a struct would help see what parts of the
application depends on which.

> About the coding style, it has to follow the BlueZ coding style since it
> is not part of the GNOME project. None of the applications are not
> really GNOME applications. The only dependency is GTK and personally I
> like to keep it this way. The name bluez-gnome might be misleading, but
> original the idea was to have one package for GNOME and another one for
> KDE. However the KDE is developed completely outside the scope of the
> BlueZ project.

I meant coding style, but not meaning indentation style. Depending on
libglade wouldn't be much of a stretch. It's self-contained, and only
depends on libxml and glib (and will soon be integrated in GTK+ itself,
most likely with compatible UI files).

> > Finally, I'd like to see convenience dialogues (as currently badly
> > implemented in gnome-bluetooth) for selecting particular Bluetooth
> > devices. Something aking to MacOS X' Bluetooth UI classes:
> > http://developer.apple.com/documentation/DeviceDrivers/Reference/IOBluetoothUI/index.html
> > and
> > http://developer.apple.com/documentation/DeviceDrivers/Conceptual/Bluetooth/BT_Bluetooth_On_MOSX/chapter_3_section_7.html#//apple_ref/doc/uid/TP30000997-CH215-TPXREF110
> > 
> > If the plan of bluez-gnome is to cater for the advanced Bluetooth
> > user[1], or the users of desktops other than GNOME, then I think I'll
> > move my focus onto bringing functionality to gnome-bluetooth instead.
> 
> I am not happy with taking the control from the user. I think that they
> should have a choice to enable expert settings if they want to. However
> having automatic settings by default is a good idea.

Good documentation and/or a FAQ would go a longer way than trying to fit
in "expert" settings in the UI.

> The idea of having a libbluetooth-gtk with generic Bluetooth related UI
> objects has crossed my mind already multiple times. The idea looks
> pretty good. However I am not sure if we should rush into it. I would
> prefer to see it as a private library inside bluez-gnome first and let
> it evolve a little bit before we make it system wide available.

There are already applications with Bluetooth support that could make
use of it. gnome-pilot to sync Palms over Bluetooth for example, or
Rhythmbox to sync your phone's music over Bluetooth.

> I already started with a generic object that will listen for inquiry
> results and populate a tree of local and remote devices. This tree
> should be the base for all dialogs. Then you can apply filters on it to
> get the correct list that need. For example all phone devices. This
> object needs to be created first by every UI application and it will
> take care of all state changes and propagate them to the child trees or
> lists and also to the UI. Check the test-client code in the CVS.

I saw it, and it would be easy to create useful widgets on top of it.

> > Otherwise, I'd kindly request a CVS account so that my trivial cleanups
> > can get in faster.
> 
> In general no problem, but I wanna first get the repository in a better
> shape. That is mainly the reason why I haven't done a new release so
> far. I a quite busy at the moment, so apologies for the inconvenience
> that your patches currently have to go through. We will change that in
> the future.

Thanks. I wouldn't want to have to reimplement loads of code, and
maintain it apart, just because we couldn't agree on the UI bits...

Cheers

-- 
Bastien Nocera <hadess@hadess.net> 


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Bluez-devel mailing list
Bluez-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bluez-devel

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Bluez-devel] More thoughts on bluez-gnome
  2007-03-07  0:58   ` Bastien Nocera
@ 2007-03-07 12:00     ` Marcel Holtmann
  0 siblings, 0 replies; 4+ messages in thread
From: Marcel Holtmann @ 2007-03-07 12:00 UTC (permalink / raw)
  To: BlueZ development

Hi Bastien,

> > > I was taking a look at the bluez-gnome source code on Friday, and this
> > > week-end, as well as the interface in general.
> > > 
> > > I wanted to know what the target use of the bluetooth-applet (and
> > > -properties) was.
>
> That's not quite what I meant.
> 
> I wanted to know why the Bluetooth applet even allowed the user to
> disable HAL support, why it would ask to define the device class when it
> can be guessed, or why one could disable the bluetooth applet's icon in
> the notification area.

I mentioned that already. The class of device is tricky and sometimes
you don't wanna appear as "computer" major class. In this case the
applet would overwrite the current setting when you login. Most people
are fine with having this automatically set and this is why I picked it
as default, but you must be able to disable it. And I am one of the
persons that need this.

About the icon visibility. It was requested that the icon can be fully
disabled. Reason was to keep the notification area clean. Don't ask me
why. I am fine with it, because it is a simple setting and doesn't have
an bad implications. I think mainly the idea is to show the icon only
when something is happening. For example when a PIN code is needed. This
doesn't work right now, but could be easily fixed.

> > > The sort of thing that I'd like to see in a GNOME bluetooth applet:
> > > - remove class of device drop-down menus (made a GConf-only option if
> > > really necessary).
> > 
> > I am all for it, but it must be an alternate based on the GConf option
> > and the presence of HAL support. Right now only the missing part is to
> > make the drop-down menu invisible when the HAL option is selected.
> 
> Again, I don't see why this should even be an option.

Let me make this clear. I need it.

I wanna use the applet, because it does a lot of things for me in a
simple way. However for some setups, I have to change the class of
device to something different. Let me get you a simple example. The
Maemo system (and other Bluetooth test setups) can run inside GNOME and
we use it for testing. In this case the class of device is different.

> > > - add some integration into HAL (Software on/off, state restoration
> > > after sleep)
> > 
> > I have no idea what you mean by that. If it is the rfkill switch then I
> > fully agree that we need to have this. However in case of rfkill it is
> > kinda complicated since the device will disappear physically from the
> > bus and so it makes it kinda complicated to view it any different than a
> > dongle that got removed and later re-attached.
> 
> I know. For the applet it would be as easy as finding the rfkill switch
> in the HAL tree, and using the GetPower/SetPower methods on it. If the
> device is present, there's a bluetooth adapter ready to be used.
> 
> This would need HAL support, which should be a requirement, not an
> option.

I am not comfortable to make HAL a requirement now. We have parts of
bluez-gnome that will also run on Maemo and there is no HAL, yet.

> > > - always display the bluetooth icon if a bluetooth device is present,
> > > grayed out if the device is disabled (see above), removed if no adapter
> > > is present at all
> > 
> > I am all for having different icon. One that means the device is
> > inactive, one if it is scanning, one if it has an active connection and
> > so on. However to have this really nicely integrated with the theme
> > engine, I think someone has to come up with some Tango icons for us.
> 
> So you'd be happy to remove the "Notification area" options in the
> applet?

No. I am happy with the different icons presenting different states.
However the icons for this have to be outside the scope of bluez-gnome
to make them nicely themeable.

> > > - more integration into existing GNOME software (gnome-vfs2-obexftp to
> > > browse phones with Nautilus, gnome-obex-send and gnome-obex-server to
> > > send and receive files).
> > 
> > I am not actively looking at the VFS integration. For the OBEX stuff, I
> > am working on a transfer service that gives a simple D-Bus based API for
> > task like pushing and receiving files. So in general it will be as
> > simple ask calling a D-Bus method with a remote address and a filename
> > to actually push files. For the receiving parts we need some integration
> > with the applet. It should display an authorization request and then a
> > file selector. Not fully sure how this will finally look like, but we
> > might have this sorted out until the end of this week.
> 
> The integration I was talking about was about adding menu items to the
> applet to allow sending files from it, or browsing a device using the
> applet as a starting point.

We can add menu items for that. Like for example MacOS X does. I didn't
do that right now, because the bluetooth-sendto application isn't ready,
yet.

> As for the sharing service, the only part I could find was an incomplete
> API doc in CVS. I couldn't find much information about the services
> either. Would those services be running as root or the user? If the
> former, it could be a security issue, and would cause problems on
> SELinux systems.

I did some work and research in this area, but it is not done, yet. In
the end all Bluetooth services should be able to drop as much privileges
as possible.

> I'd like to see an API (even a draft one). The current libbtctl obex API
> is pretty good, and has all the information needed for UIs to be
> implemented on top.

We need the OpenOBEX GLib bindings. However the work on it stopped some
month ago since the priorities got shifted into other directions.

> > > The applet and the properties windows could also use a lot of cleanup,
> > > codewise, to follow the GNOME style a bit more closely (separate the
> > > auth/passkey code, make the "applet" into an object, use Glade when
> > > possible to generate the interface).
> > 
> > The passkey and authorization agent should be nice GOjects that can be
> > used by every application in the bluez-gnome source code. I have this on
> > my todo list, but I never got around actually getting this done. So feel
> > free to send a patch for this.
> > 
> > The applet itself is not an object. It is an application. However the
> > separate parts should be created as objects.
> 
> static globals don't help much when extending an application though, and
> packing the important parts in a struct would help see what parts of the
> application depends on which.

Maybe I was a little bit lazy in that area. However for the status icon
and some GConf interaction, the globals are not really avoidable.

> > About the coding style, it has to follow the BlueZ coding style since it
> > is not part of the GNOME project. None of the applications are not
> > really GNOME applications. The only dependency is GTK and personally I
> > like to keep it this way. The name bluez-gnome might be misleading, but
> > original the idea was to have one package for GNOME and another one for
> > KDE. However the KDE is developed completely outside the scope of the
> > BlueZ project.
> 
> I meant coding style, but not meaning indentation style. Depending on
> libglade wouldn't be much of a stretch. It's self-contained, and only
> depends on libxml and glib (and will soon be integrated in GTK+ itself,
> most likely with compatible UI files).

At the moment I am against UI descriptions files. This was different
some years ago. However I haven't looked at the GTK+ roadmap regarding
this so far.

> > > Finally, I'd like to see convenience dialogues (as currently badly
> > > implemented in gnome-bluetooth) for selecting particular Bluetooth
> > > devices. Something aking to MacOS X' Bluetooth UI classes:
> > > http://developer.apple.com/documentation/DeviceDrivers/Reference/IOBluetoothUI/index.html
> > > and
> > > http://developer.apple.com/documentation/DeviceDrivers/Conceptual/Bluetooth/BT_Bluetooth_On_MOSX/chapter_3_section_7.html#//apple_ref/doc/uid/TP30000997-CH215-TPXREF110
> > > 
> > > If the plan of bluez-gnome is to cater for the advanced Bluetooth
> > > user[1], or the users of desktops other than GNOME, then I think I'll
> > > move my focus onto bringing functionality to gnome-bluetooth instead.
> > 
> > I am not happy with taking the control from the user. I think that they
> > should have a choice to enable expert settings if they want to. However
> > having automatic settings by default is a good idea.
> 
> Good documentation and/or a FAQ would go a longer way than trying to fit
> in "expert" settings in the UI.

I don't believe in taking all the control from the user (and me). The
Bluetooth D-Bus API has already designed from a simplification point of
view. We have to find a way to integrate possible expert settings.

> > The idea of having a libbluetooth-gtk with generic Bluetooth related UI
> > objects has crossed my mind already multiple times. The idea looks
> > pretty good. However I am not sure if we should rush into it. I would
> > prefer to see it as a private library inside bluez-gnome first and let
> > it evolve a little bit before we make it system wide available.
> 
> There are already applications with Bluetooth support that could make
> use of it. gnome-pilot to sync Palms over Bluetooth for example, or
> Rhythmbox to sync your phone's music over Bluetooth.

No doubt in that, but I simply don't see a stable API raising without
some real testing and playing with it.

> > I already started with a generic object that will listen for inquiry
> > results and populate a tree of local and remote devices. This tree
> > should be the base for all dialogs. Then you can apply filters on it to
> > get the correct list that need. For example all phone devices. This
> > object needs to be created first by every UI application and it will
> > take care of all state changes and propagate them to the child trees or
> > lists and also to the UI. Check the test-client code in the CVS.
> 
> I saw it, and it would be easy to create useful widgets on top of it.

That was the idea. However the tree storage has to fully work first. One
tricky thing is the multiple adapter integration. Don't underestimate
the work that has to be done to support this correctly.

Regards

Marcel



-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Bluez-devel mailing list
Bluez-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bluez-devel

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2007-03-07 12:00 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-03-05 16:46 [Bluez-devel] More thoughts on bluez-gnome Bastien Nocera
2007-03-05 20:19 ` Marcel Holtmann
2007-03-07  0:58   ` Bastien Nocera
2007-03-07 12:00     ` Marcel Holtmann

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox