Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar_network/local/mounts.py
diff options
context:
space:
mode:
authorAleksey Lim <alsroot@sugarlabs.org>2012-10-02 15:09:47 (GMT)
committer Aleksey Lim <alsroot@sugarlabs.org>2012-10-02 15:09:47 (GMT)
commitf4052d1cf38132aaab56c9228e18fa791aa1be57 (patch)
treed1187723aea8074c44bb164eb00ec9902d22d9b2 /sugar_network/local/mounts.py
parentef69b25a9ba9c34abe0493026162790bbb5ea424 (diff)
Fix launching; calculate feeds instead of storing
Diffstat (limited to 'sugar_network/local/mounts.py')
-rw-r--r--sugar_network/local/mounts.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/sugar_network/local/mounts.py b/sugar_network/local/mounts.py
index f19505d..7a2c292 100644
--- a/sugar_network/local/mounts.py
+++ b/sugar_network/local/mounts.py
@@ -215,7 +215,12 @@ class _ProxyCommands(object):
if home.exists(guid):
home.update(guid, patch)
elif [True for prop, value in patch.items() if value]:
- copy = Request(method='GET', document='context', guid=guid)
+ copy = Request(method='GET', document='context', guid=guid,
+ reply=[
+ 'type', 'implement', 'title', 'summary',
+ 'description', 'homepage', 'mime_types',
+ 'dependencies',
+ ])
copy.accept_language = request.accept_language
props = super_call(copy, ad.Response())
props.update(patch)