Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add default Ad-hoc networks #1610HEADmasterSimon Schampijer2010-08-136-133/+639
| | | | | | | | | | This patch adds three default Ad-hoc networks, for channel 1, 6 and 11. They are represented with designated icons in the neighborhood view. This will mimic the mesh behavior on devices where mesh hardware is not available and make the "under a tree"-scenario possible in those cases. If Sugar sees no "known" network when it starts, it does autoconnect to an Ad-hoc network. http://wiki.sugarlabs.org/go/Features/Sugar_Adhoc_Networks
* Merge branch 'master' of git://git.sugarlabs.org/sugar/frans-cloneTomeu Vizoso2010-08-132-4/+9
|\ | | | | | | | | Conflicts: extensions/deviceicon/network.py
| * Replace string concatenation with %s in network iconFran Rogers2010-07-151-2/+2
| |
| * Escape Pango markup in network namesFran Rogers2010-07-122-4/+9
| |
* | restore sugar-launch by bundle id substring, fixes #897James Cameron2010-08-131-3/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | sugar-launch uses GetBundlePath which calls bundleregistry.get_bundle(). In this patch, the get_bundle() method is changed to retain as much of the original API as possible, yet in the situation where it might return None it will now return a bundle if there is only one bundle that matches the search string. http://bugs.sugarlabs.org/ticket/897 http://dev.laptop.org/ticket/9189 Patch tested on Sugar 0.84.10 on OLPC XO-1.5 build os108. Test case: import jarabe.model.bundleregistry registry = jarabe.model.bundleregistry.BundleRegistry() tests = ['org.laptop.Terminal', 'Terminal', 'terminal', 'e', 'asdqweas'] for x in tests: y = registry.get_bundle(x) if y is None: z = 'None' else: z = y.get_bundle_id() print x, z Output before patch: org.laptop.Terminal org.laptop.Terminal Terminal None terminal None e None asdqweas None Output after patch: org.laptop.Terminal org.laptop.Terminal Terminal org.laptop.Terminal terminal org.laptop.Terminal e None asdqweas None
* | Fix more sugar.datastore breakageTomeu Vizoso2010-08-111-4/+5
| |
* | datastore.write expects a DSObject, not an idTomeu Vizoso2010-08-111-1/+1
| |
* | Journal:show error message on write failure: #1842anishmangal20022010-08-102-2/+40
| | | | | | | | | | | | | | | | | | volumestoolbar.py now catches the IOError and ValueError exceptions and emits 'volume-error'signal. This signal is caught in journalactivity.py which displays the error as an ErrorAlert message. Signed-off-by: anishmangal2002 <anishmangal2002@gmail.com>
* |