summaryrefslogtreecommitdiffstats
path: root/sca-cpp/trunk/modules/edit/pages.py
diff options
context:
space:
mode:
authorjsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68>2011-01-16 23:49:31 +0000
committerjsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68>2011-01-16 23:49:31 +0000
commitf90791f2f7b48d7e08ce08f7ead498e1191a96b8 (patch)
treea829513568b183d718280c1a81428adc5637e0ac /sca-cpp/trunk/modules/edit/pages.py
parent999c66e0e2398c38007b437f8c14154b725203a9 (diff)
Add sample widget components and a page to edit them, plus minor user interaction fixes.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1059710 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-cpp/trunk/modules/edit/pages.py')
-rw-r--r--sca-cpp/trunk/modules/edit/pages.py48
1 files changed, 48 insertions, 0 deletions
diff --git a/sca-cpp/trunk/modules/edit/pages.py b/sca-cpp/trunk/modules/edit/pages.py
new file mode 100644
index 0000000000..1e81a67332
--- /dev/null
+++ b/sca-cpp/trunk/modules/edit/pages.py
@@ -0,0 +1,48 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+# App pages collection implementation
+import uuid
+import sys
+from util import *
+
+# Convert an id to an app id
+def appid(id):
+ return ("'" + car(id), "'app.html")
+
+# Post a new app page to the apps db
+def post(collection, app, cache):
+ id = appid((str(uuid.uuid1()),))
+ cache.put((id,), app)
+ return id
+
+# Put an app page into the apps db
+def put(id, app, cache):
+ cache.put(appid(id), app)
+ return True
+
+# Get an app page from the apps db
+def get(id, cache):
+ if isNil(id):
+ return ("Pages", "pages")
+ return (car(id), car(id), cache.get(appid(id)))
+
+# Delete an app page from the apps db
+def delete(id, cache):
+ cache.delete(appid(id))
+ return True
+