From 4951c1b04bf66f81cf648b76af3795245d56381a Mon Sep 17 00:00:00 2001 From: jsdelfino Date: Mon, 11 Feb 2013 05:48:20 +0000 Subject: Improvements to the app management UI. git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1444660 13f79535-47bb-0310-9956-ffa450edef68 --- sca-cpp/trunk/hosting/server/apps.py | 19 ++- sca-cpp/trunk/hosting/server/composites.py | 14 +- .../trunk/hosting/server/data/apps/nearme/app.info | 2 +- .../hosting/server/data/apps/nearme2/app.info | 2 +- .../trunk/hosting/server/data/apps/new/app.info | 2 +- .../hosting/server/data/apps/ourphotos/app.info | 2 +- .../hosting/server/data/apps/shoppingcart/app.info | 2 +- .../trunk/hosting/server/data/apps/slice/app.info | 2 +- .../trunk/hosting/server/data/apps/test/app.info | 2 +- .../server/data/apps/testanimation/app.info | 2 +- .../trunk/hosting/server/data/apps/testdb/app.info | 2 +- .../hosting/server/data/apps/testevents/app.info | 2 +- .../hosting/server/data/apps/testhttp/app.info | 2 +- .../hosting/server/data/apps/testlogic/app.info | 2 +- .../hosting/server/data/apps/testsearch/app.info | 2 +- .../hosting/server/data/apps/testsms/app.info | 2 +- .../hosting/server/data/apps/testsocial/app.info | 2 +- .../hosting/server/data/apps/testtext/app.info | 2 +- .../hosting/server/data/apps/testurl/app.info | 2 +- .../hosting/server/data/apps/testvalues/app.info | 2 +- .../hosting/server/data/apps/testwidgets/app.info | 2 +- .../hosting/server/data/apps/testwidgets2/app.info | 2 +- .../hosting/server/data/apps/testwidgets3/app.info | 2 +- .../trunk/hosting/server/data/apps/twsms/app.info | 2 +- .../trunk/hosting/server/data/store/all/store.apps | 2 +- .../hosting/server/data/store/featured/store.apps | 2 +- .../trunk/hosting/server/data/store/new/store.apps | 2 +- .../trunk/hosting/server/data/store/top/store.apps | 2 +- .../trunk/hosting/server/htdocs/account/index.html | 23 ++-- sca-cpp/trunk/hosting/server/htdocs/app/index.html | 21 ++- .../trunk/hosting/server/htdocs/clone/index.html | 4 +- .../trunk/hosting/server/htdocs/create/index.html | 6 +- .../trunk/hosting/server/htdocs/delete/index.html | 4 +- .../trunk/hosting/server/htdocs/graph/index.html | 4 +- .../trunk/hosting/server/htdocs/home/index.html | 6 +- sca-cpp/trunk/hosting/server/htdocs/index.html | 44 +++--- .../trunk/hosting/server/htdocs/info/index.html | 49 +++---- .../trunk/hosting/server/htdocs/login/index.html | 30 ++-- .../trunk/hosting/server/htdocs/page/index.html | 72 ++++------ .../server/htdocs/proxy/public/oops/index.html | 10 +- .../server/htdocs/public/notauth/index.html | 10 +- .../server/htdocs/public/notfound/index.html | 10 +- .../hosting/server/htdocs/public/notyet/index.html | 10 +- .../hosting/server/htdocs/public/oops/index.html | 10 +- .../trunk/hosting/server/htdocs/rate/index.html | 14 +- .../trunk/hosting/server/htdocs/search/index.html | 17 ++- .../trunk/hosting/server/htdocs/store/index.html | 9 +- sca-cpp/trunk/hosting/server/icons.py | 21 ++- sca-cpp/trunk/hosting/server/pages.py | 14 +- sca-cpp/trunk/hosting/server/ratings.py | 4 +- sca-cpp/trunk/hosting/server/server.composite | 1 + sca-cpp/trunk/hosting/server/store.py | 8 ++ sca-cpp/trunk/hosting/server/test.py | 34 ++--- sca-cpp/trunk/modules/js/htdocs/component.js | 152 +++++++++++++++------ sca-cpp/trunk/modules/js/htdocs/ui.js | 110 +++++++++++++-- 55 files changed, 491 insertions(+), 291 deletions(-) (limited to 'sca-cpp') diff --git a/sca-cpp/trunk/hosting/server/apps.py b/sca-cpp/trunk/hosting/server/apps.py index 20c38cb3c5..e61ee5eb9d 100644 --- a/sca-cpp/trunk/hosting/server/apps.py +++ b/sca-cpp/trunk/hosting/server/apps.py @@ -25,7 +25,7 @@ def appid(id): return ("apps", car(id), "app.info") # Put an app into the apps db -def put(id, app, user, cache, dashboard, store, composites, pages, icons): +def put(id, app, user, cache, db, dashboard, store, composites, pages, icons): debug('apps.py::put::id', id) debug('apps.py::put::app', app) @@ -68,7 +68,7 @@ def put(id, app, user, cache, dashboard, store, composites, pages, icons): return False # Clone app - appentry = mkentry(title(app), car(id), user.get(()), now(), content(app)) + appentry = mkentry(title(capp), car(id), user.get(()), now(), content(capp)) debug('apps.py::put::appentry', appentry) cache.put(appid(id), appentry) composites.put(id, composites.get((eid,))) @@ -78,10 +78,19 @@ def put(id, app, user, cache, dashboard, store, composites, pages, icons): return True # Get an app from the apps db -def get(id, user, cache, dashboard, store, composites, pages, icons): +def get(id, user, cache, db, dashboard, store, composites, pages, icons): debug('apps.py::get::id', id) + + # Return the newest apps if isNull(id): - return (("'feed", ("'title", "Apps"), ("'id", "apps")),) + newentries = db.get((("'regex", '("apps" .* "app.info")'), ("'rank", "(regexp_matches(value, '(.*\(updated )([^\)]+)(\).*)'))[2]::timestamp"), ("'limit", 25))) + flatentries = tuple(map(lambda v: car(v), () if isNull(newentries) else newentries)) + def sortkey(e): + return updated((e,)) + sortedentries = tuple(sorted(flatentries, key = sortkey, reverse = True))[0:25] + newapps = ((("'feed", ("'title", "Apps"), ("'id", 'apps')) + sortedentries),) + debug('apps.py::get::newapps', newapps) + return newapps # Get the requested app app = cache.get(appid(id)) @@ -94,7 +103,7 @@ def get(id, user, cache, dashboard, store, composites, pages, icons): return app # Delete an app from the apps db -def delete(id, user, cache, dashboard, store, composites, pages, icons): +def delete(id, user, cache, db, dashboard, store, composites, pages, icons): debug('apps.py::delete::id', id) # Get the requested app diff --git a/sca-cpp/trunk/hosting/server/composites.py b/sca-cpp/trunk/hosting/server/composites.py index d0276ab5ee..581d202671 100644 --- a/sca-cpp/trunk/hosting/server/composites.py +++ b/sca-cpp/trunk/hosting/server/composites.py @@ -43,7 +43,12 @@ def put(id, comp, user, cache, apps): # Update the composite in the composite db compentry = mkentry(title(app), car(id), user.get(()), now(), content(comp)) debug('composites.py::put::compentry', compentry) - return cache.put(compid(id), compentry) + rc = cache.put(compid(id), compentry) + if rc == False: + return False + + # Update the app's updated date + return apps.put(id, app) # Get a composite from the composite db def get(id, user, cache, apps): @@ -88,5 +93,10 @@ def delete(id, user, cache, apps): return False # Delete the composite - return cache.delete(compid(id)) + rc = cache.delete(compid(id)) + if rc == False: + return False + + # Update the app's updated date + return apps.put(id, app) diff --git a/sca-cpp/trunk/hosting/server/data/apps/nearme/app.info b/sca-cpp/trunk/hosting/server/data/apps/nearme/app.info index 07777a07b0..9669bd85f0 100644 --- a/sca-cpp/trunk/hosting/server/data/apps/nearme/app.info +++ b/sca-cpp/trunk/hosting/server/data/apps/nearme/app.info @@ -1 +1 @@ -((entry (title "nearme") (id "nearme") (author "admin@example.com") (updated "Jan 01, 2012") (content (info (description "Sample app"))))) +((entry (title "nearme") (id "nearme") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00") (content (info (description "Sample app"))))) diff --git a/sca-cpp/trunk/hosting/server/data/apps/nearme2/app.info b/sca-cpp/trunk/hosting/server/data/apps/nearme2/app.info index e637ebab14..0b7f3f3e7a 100644 --- a/sca-cpp/trunk/hosting/server/data/apps/nearme2/app.info +++ b/sca-cpp/trunk/hosting/server/data/apps/nearme2/app.info @@ -1 +1 @@ -((entry (title "nearme2") (id "nearme2") (author "admin@example.com") (updated "Jan 01, 2012") (content (info (description "Sample app"))))) +((entry (title "nearme2") (id "nearme2") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00") (content (info (description "Sample app"))))) diff --git a/sca-cpp/trunk/hosting/server/data/apps/new/app.info b/sca-cpp/trunk/hosting/server/data/apps/new/app.info index 04ab8b8571..3b5a1e748d 100644 --- a/sca-cpp/trunk/hosting/server/data/apps/new/app.info +++ b/sca-cpp/trunk/hosting/server/data/apps/new/app.info @@ -1 +1 @@ -((entry (title "An empty app template") (id "new") (author "admin@example.com") (updated "Jan 01, 2012") (content (info (description "Sample app"))))) +((entry (title "A new app") (id "new") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00") (content (info (description "A new app"))))) diff --git a/sca-cpp/trunk/hosting/server/data/apps/ourphotos/app.info b/sca-cpp/trunk/hosting/server/data/apps/ourphotos/app.info index afc57e86da..7fd5c86dc8 100644 --- a/sca-cpp/trunk/hosting/server/data/apps/ourphotos/app.info +++ b/sca-cpp/trunk/hosting/server/data/apps/ourphotos/app.info @@ -1 +1 @@ -((entry (title "Our photos of an event") (id "ourphotos") (author "admin@example.com") (updated "Jan 01, 2012") (content (info (description "Sample app"))))) +((entry (title "Our photos of an event") (id "ourphotos") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00") (content (info (description "Sample app"))))) diff --git a/sca-cpp/trunk/hosting/server/data/apps/shoppingcart/app.info b/sca-cpp/trunk/hosting/server/data/apps/shoppingcart/app.info index 3b77112bff..c23fa1dbe5 100644 --- a/sca-cpp/trunk/hosting/server/data/apps/shoppingcart/app.info +++ b/sca-cpp/trunk/hosting/server/data/apps/shoppingcart/app.info @@ -1 +1 @@ -((entry (title "My online store") (id "shoppingcart") (author "admin@example.com") (updated "Jan 01, 2012") (content (info (description "Sample app"))))) +((entry (title "My online store") (id "shoppingcart") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00") (content (info (description "Sample app"))))) diff --git a/sca-cpp/trunk/hosting/server/data/apps/slice/app.info b/sca-cpp/trunk/hosting/server/data/apps/slice/app.info index 76685cd580..02b7744464 100644 --- a/sca-cpp/trunk/hosting/server/data/apps/slice/app.info +++ b/sca-cpp/trunk/hosting/server/data/apps/slice/app.info @@ -1 +1 @@ -((entry (title "Slice") (id "slice") (author "admin@example.com") (updated "Jan 01, 2012") (content (info (description "Sample app"))))) +((entry (title "Slice") (id "slice") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00") (content (info (description "Sample app"))))) diff --git a/sca-cpp/trunk/hosting/server/data/apps/test/app.info b/sca-cpp/trunk/hosting/server/data/apps/test/app.info index b6ea414f7a..90e394831e 100644 --- a/sca-cpp/trunk/hosting/server/data/apps/test/app.info +++ b/sca-cpp/trunk/hosting/server/data/apps/test/app.info @@ -1 +1 @@ -((entry (title "An empty test app") (id "test") (author "admin@example.com") (updated "Jan 01, 2012") (content (info (description "Sample app"))))) +((entry (title "An empty test app") (id "test") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00") (content (info (description "Sample app"))))) diff --git a/sca-cpp/trunk/hosting/server/data/apps/testanimation/app.info b/sca-cpp/trunk/hosting/server/data/apps/testanimation/app.info index a6759e4df8..9d3c35bc0e 100644 --- a/sca-cpp/trunk/hosting/server/data/apps/testanimation/app.info +++ b/sca-cpp/trunk/hosting/server/data/apps/testanimation/app.info @@ -1 +1 @@ -((entry (title "Test animation components") (id "testanimation") (author "admin@example.com") (updated "Jan 01, 2012") (content (info (description "Sample app"))))) +((entry (title "Test animation components") (id "testanimation") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00") (content (info (description "Sample app"))))) diff --git a/sca-cpp/trunk/hosting/server/data/apps/testdb/app.info b/sca-cpp/trunk/hosting/server/data/apps/testdb/app.info index 3f5b3deadc..df9d884bfb 100644 --- a/sca-cpp/trunk/hosting/server/data/apps/testdb/app.info +++ b/sca-cpp/trunk/hosting/server/data/apps/testdb/app.info @@ -1 +1 @@ -((entry (title "Test database components") (id "testdb") (author "admin@example.com") (updated "Jan 01, 2012") (content (info (description "Sample app"))))) +((entry (title "Test database components") (id "testdb") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00") (content (info (description "Sample app"))))) diff --git a/sca-cpp/trunk/hosting/server/data/apps/testevents/app.info b/sca-cpp/trunk/hosting/server/data/apps/testevents/app.info index 20191d663c..788c083d77 100644 --- a/sca-cpp/trunk/hosting/server/data/apps/testevents/app.info +++ b/sca-cpp/trunk/hosting/server/data/apps/testevents/app.info @@ -1 +1 @@ -((entry (title "Test event components") (id "testevents") (author "admin@example.com") (updated "Jan 01, 2012") (content (info (description "Sample app"))))) +((entry (title "Test event components") (id "testevents") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00") (content (info (description "Sample app"))))) diff --git a/sca-cpp/trunk/hosting/server/data/apps/testhttp/app.info b/sca-cpp/trunk/hosting/server/data/apps/testhttp/app.info index ef2afff46f..50f315e6f0 100644 --- a/sca-cpp/trunk/hosting/server/data/apps/testhttp/app.info +++ b/sca-cpp/trunk/hosting/server/data/apps/testhttp/app.info @@ -1 +1 @@ -((entry (title "Test HTTP components") (id "testhttp") (author "admin@example.com") (updated "Jan 01, 2012") (content (info (description "Sample app"))))) +((entry (title "Test HTTP components") (id "testhttp") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00") (content (info (description "Sample app"))))) diff --git a/sca-cpp/trunk/hosting/server/data/apps/testlogic/app.info b/sca-cpp/trunk/hosting/server/data/apps/testlogic/app.info index b4d3d9d492..7475616ec4 100644 --- a/sca-cpp/trunk/hosting/server/data/apps/testlogic/app.info +++ b/sca-cpp/trunk/hosting/server/data/apps/testlogic/app.info @@ -1 +1 @@ -((entry (title "Test logic components") (id "testlogic") (author "admin@example.com") (updated "Jan 01, 2012") (content (info (description "Sample app"))))) +((entry (title "Test logic components") (id "testlogic") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00") (content (info (description "Sample app"))))) diff --git a/sca-cpp/trunk/hosting/server/data/apps/testsearch/app.info b/sca-cpp/trunk/hosting/server/data/apps/testsearch/app.info index 6c959dc3c4..baf16599e1 100644 --- a/sca-cpp/trunk/hosting/server/data/apps/testsearch/app.info +++ b/sca-cpp/trunk/hosting/server/data/apps/testsearch/app.info @@ -1 +1 @@ -((entry (title "Test search components") (id "testsearch") (author "admin@example.com") (updated "Jan 01, 2012") (content (info (description "Sample app"))))) +((entry (title "Test search components") (id "testsearch") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00") (content (info (description "Sample app"))))) diff --git a/sca-cpp/trunk/hosting/server/data/apps/testsms/app.info b/sca-cpp/trunk/hosting/server/data/apps/testsms/app.info index ef2afff46f..50f315e6f0 100644 --- a/sca-cpp/trunk/hosting/server/data/apps/testsms/app.info +++ b/sca-cpp/trunk/hosting/server/data/apps/testsms/app.info @@ -1 +1 @@ -((entry (title "Test HTTP components") (id "testhttp") (author "admin@example.com") (updated "Jan 01, 2012") (content (info (description "Sample app"))))) +((entry (title "Test HTTP components") (id "testhttp") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00") (content (info (description "Sample app"))))) diff --git a/sca-cpp/trunk/hosting/server/data/apps/testsocial/app.info b/sca-cpp/trunk/hosting/server/data/apps/testsocial/app.info index 16190d4fe8..401a9a4a9b 100644 --- a/sca-cpp/trunk/hosting/server/data/apps/testsocial/app.info +++ b/sca-cpp/trunk/hosting/server/data/apps/testsocial/app.info @@ -1 +1 @@ -((entry (title "Test social components") (id "testsocial") (author "admin@example.com") (updated "Jan 01, 2012") (content (info (description "Sample app"))))) +((entry (title "Test social components") (id "testsocial") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00") (content (info (description "Sample app"))))) diff --git a/sca-cpp/trunk/hosting/server/data/apps/testtext/app.info b/sca-cpp/trunk/hosting/server/data/apps/testtext/app.info index e717015880..4277aed6df 100644 --- a/sca-cpp/trunk/hosting/server/data/apps/testtext/app.info +++ b/sca-cpp/trunk/hosting/server/data/apps/testtext/app.info @@ -1 +1 @@ -((entry (title "Test text processing components") (id "testtext") (author "admin@example.com") (updated "Jan 01, 2012") (content (info (description "Sample app"))))) +((entry (title "Test text processing components") (id "testtext") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00") (content (info (description "Sample app"))))) diff --git a/sca-cpp/trunk/hosting/server/data/apps/testurl/app.info b/sca-cpp/trunk/hosting/server/data/apps/testurl/app.info index 37d89b57e0..3b2d48fd43 100644 --- a/sca-cpp/trunk/hosting/server/data/apps/testurl/app.info +++ b/sca-cpp/trunk/hosting/server/data/apps/testurl/app.info @@ -1 +1 @@ -((entry (title "Test URL components") (id "testurl") (author "admin@example.com") (updated "Jan 01, 2012") (content (info (description "Sample app"))))) +((entry (title "Test URL components") (id "testurl") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00") (content (info (description "Sample app"))))) diff --git a/sca-cpp/trunk/hosting/server/data/apps/testvalues/app.info b/sca-cpp/trunk/hosting/server/data/apps/testvalues/app.info index 42ed01b53d..97c95917e3 100644 --- a/sca-cpp/trunk/hosting/server/data/apps/testvalues/app.info +++ b/sca-cpp/trunk/hosting/server/data/apps/testvalues/app.info @@ -1 +1 @@ -((entry (title "Test values and lists") (id "testvalues") (author "admin@example.com") (updated "Jan 01, 2012") (content (info (description "Sample app"))))) +((entry (title "Test values and lists") (id "testvalues") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00") (content (info (description "Sample app"))))) diff --git a/sca-cpp/trunk/hosting/server/data/apps/testwidgets/app.info b/sca-cpp/trunk/hosting/server/data/apps/testwidgets/app.info index 3d8e7be195..3d0f35c15a 100644 --- a/sca-cpp/trunk/hosting/server/data/apps/testwidgets/app.info +++ b/sca-cpp/trunk/hosting/server/data/apps/testwidgets/app.info @@ -1 +1 @@ -((entry (title "Test widgets") (id "testwidgets") (author "admin@example.com") (updated "Jan 01, 2012") (content (info (description "Sample app"))))) +((entry (title "Test widgets") (id "testwidgets") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00") (content (info (description "Sample app"))))) diff --git a/sca-cpp/trunk/hosting/server/data/apps/testwidgets2/app.info b/sca-cpp/trunk/hosting/server/data/apps/testwidgets2/app.info index 2ba25712f9..e5e2e47bb8 100644 --- a/sca-cpp/trunk/hosting/server/data/apps/testwidgets2/app.info +++ b/sca-cpp/trunk/hosting/server/data/apps/testwidgets2/app.info @@ -1 +1 @@ -((entry (title "Test more widgets") (id "testwidgets2") (author "admin@example.com") (updated "Jan 01, 2012") (content (info (description "Sample app"))))) +((entry (title "Test more widgets") (id "testwidgets2") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00") (content (info (description "Sample app"))))) diff --git a/sca-cpp/trunk/hosting/server/data/apps/testwidgets3/app.info b/sca-cpp/trunk/hosting/server/data/apps/testwidgets3/app.info index 3d01141f07..432d560b99 100644 --- a/sca-cpp/trunk/hosting/server/data/apps/testwidgets3/app.info +++ b/sca-cpp/trunk/hosting/server/data/apps/testwidgets3/app.info @@ -1 +1 @@ -((entry (title "Test HTML generator components") (id "testwidgets3") (author "admin@example.com") (updated "Jan 01, 2012") (content (info (description "Sample app"))))) +((entry (title "Test HTML generator components") (id "testwidgets3") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00") (content (info (description "Sample app"))))) diff --git a/sca-cpp/trunk/hosting/server/data/apps/twsms/app.info b/sca-cpp/trunk/hosting/server/data/apps/twsms/app.info index d870caf3e2..f1fe2b8c45 100644 --- a/sca-cpp/trunk/hosting/server/data/apps/twsms/app.info +++ b/sca-cpp/trunk/hosting/server/data/apps/twsms/app.info @@ -1 +1 @@ -((entry (title "SMS send service") (id "twsms") (author "admin@example.com") (updated "Jan 01, 2012") (content (info (description "Sample app"))))) +((entry (title "SMS send service") (id "twsms") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00") (content (info (description "Sample app"))))) diff --git a/sca-cpp/trunk/hosting/server/data/store/all/store.apps b/sca-cpp/trunk/hosting/server/data/store/all/store.apps index cb12aa05c7..14b9390c7f 100644 --- a/sca-cpp/trunk/hosting/server/data/store/all/store.apps +++ b/sca-cpp/trunk/hosting/server/data/store/all/store.apps @@ -1 +1 @@ -((feed (title "App Store") (id "all") (entry (title "Check my public social data") (id "me360") (author "admin@example.com") (updated "Jan 01, 2012")) (entry (title "Where are my friends") (id "nearme") (author "admin@example.com") (updated "Jan 01, 2012")) (entry (title "Where are my friends") (id "nearme2") (author "admin@example.com") (updated "Jan 01, 2012")) (entry (title "Our photos of an event") (id "ourphotos") (author "admin@example.com") (updated "Jan 01, 2012")) (entry (title "Slice") (id "slice") (author "admin@example.com") (updated "Jan 01, 2012")) (entry (title "My online store") (id "shoppingcart") (author "admin@example.com") (updated "Jan 01, 2012")) (entry (title "SMS send service") (id "twsms") (author "admin@example.com") (updated "Jan 01, 2012")) (entry (title "An empty test app") (id "test") (author "admin@example.com") (updated "Jan 01, 2012")) (entry (title "Test values and lists") (id "testvalues") (author "admin@example.com") (updated "Jan 01, 2012")) (entry (title "Test social components") (id "testsocial") (author "admin@example.com") (updated "Jan 01, 2012")) (entry (title "Test URL components") (id "testurl") (author "admin@example.com") (updated "Jan 01, 2012")) (entry (title "Test logic components") (id "testlogic") (author "admin@example.com") (updated "Jan 01, 2012")) (entry (title "Test text processing components") (id "testtext") (author "admin@example.com") (updated "Jan 01, 2012")) (entry (title "Test HTTP components") (id "testhttp") (author "admin@example.com") (updated "Jan 01, 2012")) (entry (title "Test SMS API") (id "testsms") (author "admin@example.com") (updated "Jan 01, 2012")) (entry (title "Test widgets") (id "testwidgets") (author "admin@example.com") (updated "Jan 01, 2012")) (entry (title "Test more widgets") (id "testwidgets2") (author "admin@example.com") (updated "Jan 01, 2012")) (entry (title "Test event components") (id "testevents") (author "admin@example.com") (updated "Jan 01, 2012")) (entry (title "Test search components") (id "testsearch") (author "admin@example.com") (updated "Jan 01, 2012")) (entry (title "Test database components") (id "testdb") (author "admin@example.com") (updated "Jan 01, 2012")) (entry (title "Test HTML generator components") (id "testwidgets3") (author "admin@example.com") (updated "Jan 01, 2012")) (entry (title "Test animation components") (id "testanimation") (author "admin@example.com") (updated "Jan 01, 2012")))) +((feed (title "App Store") (id "all") (entry (title "Check my public social data") (id "me360") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00")) (entry (title "Where are my friends") (id "nearme") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00")) (entry (title "Where are my friends") (id "nearme2") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00")) (entry (title "Our photos of an event") (id "ourphotos") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00")) (entry (title "Slice") (id "slice") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00")) (entry (title "My online store") (id "shoppingcart") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00")) (entry (title "SMS send service") (id "twsms") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00")) (entry (title "An empty test app") (id "test") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00")) (entry (title "Test values and lists") (id "testvalues") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00")) (entry (title "Test social components") (id "testsocial") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00")) (entry (title "Test URL components") (id "testurl") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00")) (entry (title "Test logic components") (id "testlogic") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00")) (entry (title "Test text processing components") (id "testtext") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00")) (entry (title "Test HTTP components") (id "testhttp") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00")) (entry (title "Test SMS API") (id "testsms") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00")) (entry (title "Test widgets") (id "testwidgets") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00")) (entry (title "Test more widgets") (id "testwidgets2") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00")) (entry (title "Test event components") (id "testevents") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00")) (entry (title "Test search components") (id "testsearch") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00")) (entry (title "Test database components") (id "testdb") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00")) (entry (title "Test HTML generator components") (id "testwidgets3") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00")) (entry (title "Test animation components") (id "testanimation") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00")))) diff --git a/sca-cpp/trunk/hosting/server/data/store/featured/store.apps b/sca-cpp/trunk/hosting/server/data/store/featured/store.apps index adfcf5e10d..e196ddc759 100644 --- a/sca-cpp/trunk/hosting/server/data/store/featured/store.apps +++ b/sca-cpp/trunk/hosting/server/data/store/featured/store.apps @@ -1 +1 @@ -((feed (title "App Store") (id "featured") (entry (title "Check my public social data") (id "me360") (author "admin@example.com") (updated "Jan 01, 2012")) (entry (title "Where are my friends") (id "nearme") (author "admin@example.com") (updated "Jan 01, 2012")) (entry (title "Where are my friends") (id "nearme2") (author "admin@example.com") (updated "Jan 01, 2012")) (entry (title "Our photos of an event") (id "ourphotos") (author "admin@example.com") (updated "Jan 01, 2012")) (entry (title "Slice") (id "slice") (author "admin@example.com") (updated "Jan 01, 2012")) (entry (title "My online store") (id "shoppingcart") (author "admin@example.com") (updated "Jan 01, 2012")) (entry (title "SMS send service") (id "twsms") (author "admin@example.com") (updated "Jan 01, 2012")))) +((feed (title "App Store") (id "featured") (entry (title "Check my public social data") (id "me360") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00")) (entry (title "Where are my friends") (id "nearme") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00")) (entry (title "Where are my friends") (id "nearme2") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00")) (entry (title "Our photos of an event") (id "ourphotos") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00")) (entry (title "Slice") (id "slice") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00")) (entry (title "My online store") (id "shoppingcart") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00")) (entry (title "SMS send service") (id "twsms") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00")))) diff --git a/sca-cpp/trunk/hosting/server/data/store/new/store.apps b/sca-cpp/trunk/hosting/server/data/store/new/store.apps index b444d7f73c..b874c6e667 100644 --- a/sca-cpp/trunk/hosting/server/data/store/new/store.apps +++ b/sca-cpp/trunk/hosting/server/data/store/new/store.apps @@ -1 +1 @@ -((feed (title "App Store") (id "new") (entry (title "Check my public social data") (id "me360") (author "admin@example.com") (updated "Jan 01, 2012")) (entry (title "Where are my friends") (id "nearme") (author "admin@example.com") (updated "Jan 01, 2012")) (entry (title "Where are my friends") (id "nearme2") (author "admin@example.com") (updated "Jan 01, 2012")) (entry (title "Our photos of an event") (id "ourphotos") (author "admin@example.com") (updated "Jan 01, 2012")) (entry (title "Slice") (id "slice") (author "admin@example.com") (updated "Jan 01, 2012")) (entry (title "My online store") (id "shoppingcart") (author "admin@example.com") (updated "Jan 01, 2012")) (entry (title "SMS send service") (id "twsms") (author "admin@example.com") (updated "Jan 01, 2012")))) +((feed (title "App Store") (id "new") (entry (title "Check my public social data") (id "me360") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00")) (entry (title "Where are my friends") (id "nearme") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00")) (entry (title "Where are my friends") (id "nearme2") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00")) (entry (title "Our photos of an event") (id "ourphotos") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00")) (entry (title "Slice") (id "slice") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00")) (entry (title "My online store") (id "shoppingcart") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00")) (entry (title "SMS send service") (id "twsms") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00")))) diff --git a/sca-cpp/trunk/hosting/server/data/store/top/store.apps b/sca-cpp/trunk/hosting/server/data/store/top/store.apps index 63a7b34d46..5202823b10 100644 --- a/sca-cpp/trunk/hosting/server/data/store/top/store.apps +++ b/sca-cpp/trunk/hosting/server/data/store/top/store.apps @@ -1 +1 @@ -((feed (title "App Store") (id "top") (entry (title "Check my public social data") (id "me360") (author "admin@example.com") (updated "Jan 01, 2012")) (entry (title "Where are my friends") (id "nearme") (author "admin@example.com") (updated "Jan 01, 2012")) (entry (title "Where are my friends") (id "nearme2") (author "admin@example.com") (updated "Jan 01, 2012")) (entry (title "Our photos of an event") (id "ourphotos") (author "admin@example.com") (updated "Jan 01, 2012")) (entry (title "Slice") (id "slice") (author "admin@example.com") (updated "Jan 01, 2012")) (entry (title "My online store") (id "shoppingcart") (author "admin@example.com") (updated "Jan 01, 2012")) (entry (title "SMS send service") (id "twsms") (author "admin@example.com") (updated "Jan 01, 2012")))) +((feed (title "App Store") (id "top") (entry (title "Check my public social data") (id "me360") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00")) (entry (title "Where are my friends") (id "nearme") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00")) (entry (title "Where are my friends") (id "nearme2") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00")) (entry (title "Our photos of an event") (id "ourphotos") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00")) (entry (title "Slice") (id "slice") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00")) (entry (title "My online store") (id "shoppingcart") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00")) (entry (title "SMS send service") (id "twsms") (author "admin@example.com") (updated "2012-01-01T00:00:00+00:00")))) diff --git a/sca-cpp/trunk/hosting/server/htdocs/account/index.html b/sca-cpp/trunk/hosting/server/htdocs/account/index.html index 9357a89dd6..c16dde4b53 100644 --- a/sca-cpp/trunk/hosting/server/htdocs/account/index.html +++ b/sca-cpp/trunk/hosting/server/htdocs/account/index.html @@ -28,7 +28,7 @@ Email: Picture: -