Jack, I think you have a problem with wireless because of the broadcom chip
on your netbook.Have you tried this solution already -
http://slaine.org/_slaine/Dell_Mini_9.html?

2009/9/2 <dev-requ...@moblin.org>

> Send dev mailing list submissions to
>        dev@moblin.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
>        http://lists.moblin.org/listinfo/dev
> or, via email, send a message with subject or body 'help' to
>        dev-requ...@moblin.org
>
> You can reach the person managing the list at
>        dev-ow...@moblin.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of dev digest..."
>
> Today's Topics:
>
>   1. Re: Buttons position in mutter toolbar (Wang, Jing J)
>   2. is this behavior going to be in RC? (jack craig)
>   3. Re: is this behavior going to be in RC? (Rusty Lynch)
>   4. Re: is this behavior going to be in RC? (Glen Gray)
>   5. Re: is this behavior going to be in RC? (jack craig)
>   6. Re: is this behavior going to be in RC? (Rusty Lynch)
>   7. Re: is this behavior going to be in RC? (jack craig)
>   8. Re: is this behavior going to be in RC? (Kok, Auke)
>
>
> ---------- Forwarded message ----------
> From: "Wang, Jing J" <jing.j.w...@intel.com>
> To: Le Quang Minh <min...@asianux.org.vn>
> Date: Thu, 3 Sep 2009 00:39:55 +0800
> Subject: Re: [Moblin Dev] Buttons position in mutter toolbar
> Moving date & time to right is easy, but it cause layout restructure of the
> whole toolbar. So, in addition to move Date & Time to right, you have to
> move all other toolbar buttons to left.
> Below modifications are for your reference. I have tried and it works.
>
> 1.       In mnb_toolbar_constructed (GObject *self).
>
> //Move Date&Time from left to right
> clutter_actor_set_position (CLUTTER_ACTOR (priv->time), 192 / 2, 16); ->
>  clutter_actor_set_position (CLUTTER_ACTOR (priv->time), (screen_width -
> 213) + 192 / 2, 16);
> clutter_actor_set_position (CLUTTER_ACTOR (priv->date), 192 / 2, 48); ->
> clutter_actor_set_position (CLUTTER_ACTOR (priv->date), (screen_width - 213)
> + 192 / 2, 48);
>
> 2.       In mnb_toolbar_append_panel and mnb_toolbar_append_panel_old
> functions,
>      clutter_actor_set_position (CLUTTER_ACTOR (button),
>                                  213 + (BUTTON_WIDTH * index)
> ------------------------------------>   (BUTTON_WIDTH * index)
>                                  + (BUTTON_SPACING * index),
>                                  TOOLBAR_HEIGHT - BUTTON_HEIGHT);
>
> x = screen_width - (applets + 1) * (TRAY_BUTTON_WIDTH + TRAY_PADDING);
> ------>       x = (screen_width - 213) - (applets + 1) * (TRAY_BUTTON_WIDTH
> + TRAY_PADDING);
>
> 3.       In shell_tray_manager_icon_added_cb function
> x = screen_width - (col + 1) * (TRAY_BUTTON_WIDTH + TRAY_PADDING) -
> TRAY_PADDING; --->  x = (screen_width -213) - (col + 1) * (TRAY_BUTTON_WIDTH
> + TRAY_PADDING) - TRAY_PADDING;
>
> WangJing
> ________________________________
> From: Le Quang Minh [mailto:min...@asianux.org.vn]
> Sent: 2009年9月1日 17:59
> To: Wang, Jing J
> Subject: Re: [Moblin Dev] Buttons position in mutter toolbar
>
> Hi all
>
> I wan't move date&time to the right in toolbar. Where to find it ?
> 2009/9/1 Wang, Jing J <jing.j.w...@intel.com<mailto:jing.j.w...@intel.com
> >>
> If you'd like adjust button order in toolbar, update
> mnb_toolbar_panel_name_to_index (const gchar *name) in mnb_toolbar.c is the
> easy way. If you'd like change button size and location, look at
> mnb_toolbar_append_panel (MnbToolbar  *toolbar, MnbDropDown *panel), where
> button is created, set size and set position.
>
> -----Original Message-----
> From: dev-boun...@moblin.org<mailto:dev-boun...@moblin.org> [mailto:
> dev-boun...@moblin.org<mailto:dev-boun...@moblin.org>] On Behalf Of bob
> Sent: 2009年9月1日 11:24
> To: dev@moblin.org<mailto:dev@moblin.org>
> Subject: [Moblin Dev] Buttons position in mutter toolbar
>
> Hi All
>
> I'm trying to adjust button position of top toolbar but I don't see any
> position setting in *.CSS and Mutter-moblin source code.
> Does anyone know whare to find it?
>
> Thansk,
> -Bob
> _______________________________________________
> Moblin dev Mailing List
> dev@moblin.org<mailto:dev@moblin.org>
>
> To manage or unsubscribe from this mailing list visit:
> http://lists.moblin.org/listinfo/dev or your user account on
> http://moblin.org once logged in.
>
> For more information on the Moblin Developer Mailing lists visit:
> http://moblin.org/community/mailing-lists
> _______________________________________________
> Moblin dev Mailing List
> dev@moblin.org<mailto:dev@moblin.org>
>
> To manage or unsubscribe from this mailing list visit:
> http://lists.moblin.org/listinfo/dev or your user account on
> http://moblin.org once logged in.
>
> For more information on the Moblin Developer Mailing lists visit:
> http://moblin.org/community/mailing-lists
>
>
>
> ---------- Forwarded message ----------
> From: jack craig <ja...@linuxlighthouse.com>
> To: "dev@moblin.org" <dev@moblin.org>
> Date: Wed, 02 Sep 2009 11:17:43 -0700
> Subject: [Moblin Dev] is this behavior going to be in RC?
> Hi Moblin Folks,
>
> i am using an SD card to shuttle binaries to my notebook where they are
> tested.
>
> when i insert the SD media, i open a file browser zone and that will let me
> mount the media.
> i click on the icon to umount the media and that works fine, i leave the
> file manager zone open.
>
> i take the SD out and refill  it on my FC host.
>
> when i reinsert the SD, i get a new instance of the file manager in a new
> zone leaving the
> already existent file manager in a first zone and point less.
>
> my expectation to avoid zone bloat is, if a file manger zone is active,
> it would be reused on the second SD insertion.
>
> are my expectations unreasonable? is this proper behaviour for RC?
>
> tia, jackc...
>
> --
>   jack craig
>      ja...@linuxlighthouse.com
>         831-684-1375 (Office)
>            831-596-6924 (cell)
>               IM: jackcraigaptos (AIM)
>
> _________________________________
> This email has been ClamScanned !
>    www.LinuxLightHouse.com
>
>
>
> ---------- Forwarded message ----------
> From: Rusty Lynch <rusty.ly...@intel.com>
> To: jack craig <ja...@linuxlighthouse.com>
> Date: Wed, 02 Sep 2009 11:39:19 -0700
> Subject: Re: [Moblin Dev] is this behavior going to be in RC?
> On Wed, 2009-09-02 at 11:17 -0700, jack craig wrote:
> > Hi Moblin Folks,
> >
> > i am using an SD card to shuttle binaries to my notebook where they are
> > tested.
> >
> > when i insert the SD media, i open a file browser zone and that will let
> > me mount the media.
> > i click on the icon to umount the media and that works fine, i leave the
> > file manager zone open.
> >
> > i take the SD out and refill  it on my FC host.
> >
> > when i reinsert the SD, i get a new instance of the file manager in a
> > new zone leaving the
> > already existent file manager in a first zone and point less.
> >
> > my expectation to avoid zone bloat is, if a file manger zone is active,
> > it would be reused on the second SD insertion.
> >
> > are my expectations unreasonable? is this proper behaviour for RC?
>
> This is just the default nautilus behavior.  We are not changing this
> for 2.0.
>
> NOTE: I bet there is a gconf key for changing this behavior, but that's
> just a guess.
>
> BTW... you ever consider just using scp to copy over files? it's a
> million times easier.
>
>    --rusty
>
>
>
>
> ---------- Forwarded message ----------
> From: Glen Gray <glen.g...@lincor.com>
> To: rusty.ly...@intel.com
> Date: Wed, 2 Sep 2009 19:49:28 +0100
> Subject: Re: [Moblin Dev] is this behavior going to be in RC?
> Or rsync
>
> On 2 Sep 2009, at 19:39, Rusty Lynch wrote:
>
>  On Wed, 2009-09-02 at 11:17 -0700, jack craig wrote:
>>
>>> Hi Moblin Folks,
>>>
>>> i am using an SD card to shuttle binaries to my notebook where they are
>>> tested.
>>>
>>> when i insert the SD media, i open a file browser zone and that will let
>>> me mount the media.
>>> i click on the icon to umount the media and that works fine, i leave the
>>> file manager zone open.
>>>
>>> i take the SD out and refill  it on my FC host.
>>>
>>> when i reinsert the SD, i get a new instance of the file manager in a
>>> new zone leaving the
>>> already existent file manager in a first zone and point less.
>>>
>>> my expectation to avoid zone bloat is, if a file manger zone is active,
>>> it would be reused on the second SD insertion.
>>>
>>> are my expectations unreasonable? is this proper behaviour for RC?
>>>
>>
>> This is just the default nautilus behavior.  We are not changing this
>> for 2.0.
>>
>> NOTE: I bet there is a gconf key for changing this behavior, but that's
>> just a guess.
>>
>> BTW... you ever consider just using scp to copy over files? it's a
>> million times easier.
>>
>>   --rusty
>>
>> _______________________________________________
>> Moblin dev Mailing List
>> dev@moblin.org
>>
>> To manage or unsubscribe from this mailing list visit:
>> http://lists.moblin.org/listinfo/dev or your user account on
>> http://moblin.org once logged in.
>>
>> For more information on the Moblin Developer Mailing lists visit:
>> http://moblin.org/community/mailing-lists
>>
>
> --
> Glen Gray <glen.g...@lincor.com>         Digital Depot, Thomas Street
> Software Engineering Manager                        Dublin 8, Ireland
> Lincor Solutions Ltd.                          Ph: +353 (0) 1 4893682
>
>
>
>
> ---------- Forwarded message ----------
> From: jack craig <ja...@linuxlighthouse.com>
> To: Glen Gray <glen.g...@lincor.com>
> Date: Wed, 02 Sep 2009 12:15:45 -0700
> Subject: Re: [Moblin Dev] is this behavior going to be in RC?
> first, thx for both your replies.
>
> second, i'd LOVE to use the network and hope to when the wireless support
> for my netbook is fixed in the driver.
> i keep dragging my netbook to/from my vehicle to test after the SD shuttle.
> once wireless is working,
> i can leave the netbook in the truck and update it directly over the
> network. I'm ready when moblin is... :-P
>
> i bought a wireless router just for this option only to find the aug 18
> beta image still has a broke driver for
> my EeePC netbook wireless.
>
> i tried to file a bug on that, but found despite my moblin membership, i
> could edit only and not add bugs to bugzilla.
> i was going to wait for the next beta image before i banged on the broken
> wireless bug again.
>
> suggestions i have not considered? thx again, jackc..
>
>
> On 09/02/2009 11:49 AM, Glen Gray wrote:
>
>> Or rsync
>>
>> On 2 Sep 2009, at 19:39, Rusty Lynch wrote:
>>
>>  On Wed, 2009-09-02 at 11:17 -0700, jack craig wrote:
>>>
>>>> Hi Moblin Folks,
>>>>
>>>> i am using an SD card to shuttle binaries to my notebook where they are
>>>> tested.
>>>>
>>>> when i insert the SD media, i open a file browser zone and that will let
>>>> me mount the media.
>>>> i click on the icon to umount the media and that works fine, i leave the
>>>> file manager zone open.
>>>>
>>>> i take the SD out and refill  it on my FC host.
>>>>
>>>> when i reinsert the SD, i get a new instance of the file manager in a
>>>> new zone leaving the
>>>> already existent file manager in a first zone and point less.
>>>>
>>>> my expectation to avoid zone bloat is, if a file manger zone is active,
>>>> it would be reused on the second SD insertion.
>>>>
>>>> are my expectations unreasonable? is this proper behaviour for RC?
>>>>
>>>
>>> This is just the default nautilus behavior.  We are not changing this
>>> for 2.0.
>>>
>>> NOTE: I bet there is a gconf key for changing this behavior, but that's
>>> just a guess.
>>>
>>> BTW... you ever consider just using scp to copy over files? it's a
>>> million times easier.
>>>
>>>   --rusty
>>>
>>> _______________________________________________
>>> Moblin dev Mailing List
>>> dev@moblin.org
>>>
>>> To manage or unsubscribe from this mailing list visit:
>>> http://lists.moblin.org/listinfo/dev or your user account on
>>> http://moblin.org once logged in.
>>>
>>> For more information on the Moblin Developer Mailing lists visit:
>>> http://moblin.org/community/mailing-lists
>>>
>>
>> --
>> Glen Gray <glen.g...@lincor.com>         Digital Depot, Thomas Street
>> Software Engineering Manager                        Dublin 8, Ireland
>> Lincor Solutions Ltd.                          Ph: +353 (0) 1 4893682
>>
>> _________________________________
>> This email has been ClamScanned !
>>    www.LinuxLightHouse.com
>>
>
> --
>   jack craig
>      ja...@linuxlighthouse.com
>         831-684-1375 (Office)
>            831-596-6924 (cell)
>               IM: jackcraigaptos (AIM)
>
> _________________________________
> This email has been ClamScanned !
>    www.LinuxLightHouse.com
>
>
>
> ---------- Forwarded message ----------
> From: Rusty Lynch <rusty.ly...@intel.com>
> To: jack craig <ja...@linuxlighthouse.com>
> Date: Wed, 02 Sep 2009 12:53:10 -0700
> Subject: Re: [Moblin Dev] is this behavior going to be in RC?
> On Wed, 2009-09-02 at 12:15 -0700, jack craig wrote:
> > first, thx for both your replies.
> >
> > second, i'd LOVE to use the network and hope to when the wireless
> > support for my netbook is fixed in the driver.
> > i keep dragging my netbook to/from my vehicle to test after the SD
> > shuttle. once wireless is working,
> > i can leave the netbook in the truck and update it directly over the
> > network. I'm ready when moblin is... :-P
> >
> > i bought a wireless router just for this option only to find the aug 18
> > beta image still has a broke driver for
> > my EeePC netbook wireless.
> >
> > i tried to file a bug on that, but found despite my moblin membership, i
> > could edit only and not add bugs to bugzilla.
> > i was going to wait for the next beta image before i banged on the
> > broken wireless bug again.
>
> Anyone should be able to file a new bug.  if that's broken we have a
> very big issue.
>
> Mike??
>
>
>
>
>
>
> ---------- Forwarded message ----------
> From: jack craig <ja...@linuxlighthouse.com>
> To: rusty.ly...@intel.com
> Date: Wed, 02 Sep 2009 13:12:22 -0700
> Subject: Re: [Moblin Dev] is this behavior going to be in RC?
> i kept trying to click on new bug, it just ignored me so i went to my
> profile and found priv's of edit bugs only.
>
> maybe i am missing a procedure?
>
> thx, jackc...
>
>
> On 09/02/2009 12:53 PM, Rusty Lynch wrote:
>
>> On Wed, 2009-09-02 at 12:15 -0700, jack craig wrote:
>>
>>
>>> first, thx for both your replies.
>>>
>>> second, i'd LOVE to use the network and hope to when the wireless
>>> support for my netbook is fixed in the driver.
>>> i keep dragging my netbook to/from my vehicle to test after the SD
>>> shuttle. once wireless is working,
>>> i can leave the netbook in the truck and update it directly over the
>>> network. I'm ready when moblin is... :-P
>>>
>>> i bought a wireless router just for this option only to find the aug 18
>>> beta image still has a broke driver for
>>> my EeePC netbook wireless.
>>>
>>> i tried to file a bug on that, but found despite my moblin membership, i
>>> could edit only and not add bugs to bugzilla.
>>> i was going to wait for the next beta image before i banged on the
>>> broken wireless bug again.
>>>
>>>
>> Anyone should be able to file a new bug.  if that's broken we have a
>> very big issue.
>>
>> Mike??
>>
>>
>>
>> _________________________________
>> This email has been ClamScanned !
>>      www.LinuxLightHouse.com
>>
>>
>
> --
>   jack craig
>      ja...@linuxlighthouse.com
>         831-684-1375 (Office)
>            831-596-6924 (cell)
>               IM: jackcraigaptos (AIM)
>
> _________________________________
> This email has been ClamScanned !
>    www.LinuxLightHouse.com
>
>
>
> ---------- Forwarded message ----------
> From: "Kok, Auke" <auke-jan.h....@intel.com>
> To: Glen Gray <glen.g...@lincor.com>
> Date: Wed, 02 Sep 2009 13:41:00 -0700
> Subject: Re: [Moblin Dev] is this behavior going to be in RC?
>
> actually, with fuse, nautilus and gvfs installed, the best solution is just
> to use
> sshfs through gvfs:
>
> - start nautilus
> - hit Control-L to bring up the location bar
> - type: ssh://u...@hostname-or-ip-address/ (and provide password or pubkey
> though
> config files)
>
> voila, bi-directional drag and dropping of files across to the other
> machine works.
>
> you can even drag the mountpoint to the panel in the left to create a
> permanent
> shortcut.
>
> Auke
>
>
>
> Glen Gray wrote:
> > Or rsync
> >
> > On 2 Sep 2009, at 19:39, Rusty Lynch wrote:
> >
> >> On Wed, 2009-09-02 at 11:17 -0700, jack craig wrote:
> >>> Hi Moblin Folks,
> >>>
> >>> i am using an SD card to shuttle binaries to my notebook where they
> >>> are
> >>> tested.
> >>>
> >>> when i insert the SD media, i open a file browser zone and that
> >>> will let
> >>> me mount the media.
> >>> i click on the icon to umount the media and that works fine, i
> >>> leave the
> >>> file manager zone open.
> >>>
> >>> i take the SD out and refill  it on my FC host.
> >>>
> >>> when i reinsert the SD, i get a new instance of the file manager in a
> >>> new zone leaving the
> >>> already existent file manager in a first zone and point less.
> >>>
> >>> my expectation to avoid zone bloat is, if a file manger zone is
> >>> active,
> >>> it would be reused on the second SD insertion.
> >>>
> >>> are my expectations unreasonable? is this proper behaviour for RC?
> >> This is just the default nautilus behavior.  We are not changing this
> >> for 2.0.
> >>
> >> NOTE: I bet there is a gconf key for changing this behavior, but
> >> that's
> >> just a guess.
> >>
> >> BTW... you ever consider just using scp to copy over files? it's a
> >> million times easier.
> >>
> >>    --rusty
> >>
> >> _______________________________________________
> >> Moblin dev Mailing List
> >> dev@moblin.org
> >>
> >> To manage or unsubscribe from this mailing list visit:
> >> http://lists.moblin.org/listinfo/dev or your user account on
> http://moblin.org
> >>  once logged in.
> >>
> >> For more information on the Moblin Developer Mailing lists visit:
> >> http://moblin.org/community/mailing-lists
> >
> > --
> > Glen Gray <glen.g...@lincor.com>         Digital Depot, Thomas Street
> > Software Engineering Manager                        Dublin 8, Ireland
> > Lincor Solutions Ltd.                          Ph: +353 (0) 1 4893682
> >
> > _______________________________________________
> > Moblin dev Mailing List
> > dev@moblin.org
> >
> > To manage or unsubscribe from this mailing list visit:
> > http://lists.moblin.org/listinfo/dev or your user account on
> http://moblin.org once logged in.
> >
> > For more information on the Moblin Developer Mailing lists visit:
> > http://moblin.org/community/mailing-lists
>
>
>
> Moblin dev Mailing List
> dev@moblin.org
>
> To manage or unsubscribe from this mailing list visit:
> http://lists.moblin.org/listinfo/dev or your user account on
> http://moblin.org once logged in.
>
> For more information on the Moblin Developer Mailing lists visit:
> http://moblin.org/community/mailing-lists
>



-- 
Oleg Bezorudko-Chyrykalov
mailto:obezoru...@gmail.com
_______________________________________________
Moblin dev Mailing List
dev@moblin.org

To manage or unsubscribe from this mailing list visit:
http://lists.moblin.org/listinfo/dev or your user account on http://moblin.org 
once logged in.

For more information on the Moblin Developer Mailing lists visit:
http://moblin.org/community/mailing-lists

Reply via email to