From f90791f2f7b48d7e08ce08f7ead498e1191a96b8 Mon Sep 17 00:00:00 2001 From: jsdelfino Date: Sun, 16 Jan 2011 23:49:31 +0000 Subject: 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 --- sca-cpp/trunk/modules/edit/pages.py | 48 +++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 sca-cpp/trunk/modules/edit/pages.py (limited to 'sca-cpp/trunk/modules/edit/pages.py') 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 + -- cgit v1.2.3