From 37104d47a3ce5234ff708588b68e8d9cbd13131d Mon Sep 17 00:00:00 2001 From: jsdelfino Date: Mon, 4 Apr 2011 08:45:59 +0000 Subject: Add sample database and search components, sample apps and corresponding test cases, and minor refactoring of component categories. git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1088507 13f79535-47bb-0310-9956-ffa450edef68 --- sca-cpp/trunk/components/filedb/filedb.hpp | 12 +- .../trunk/modules/edit/apps/me360/app.composite | 36 +- sca-cpp/trunk/modules/edit/apps/me360/app.html | 4 +- .../trunk/modules/edit/apps/nearme/app.composite | 519 +++++++++++++++++---- sca-cpp/trunk/modules/edit/apps/nearme/app.html | 45 +- sca-cpp/trunk/modules/edit/apps/test/app.composite | 8 +- .../trunk/modules/edit/apps/testdb/app.composite | 99 ++++ .../modules/edit/apps/testevents/app.composite | 111 +++-- .../modules/edit/apps/testsearch/app.composite | 193 ++++++++ .../modules/edit/apps/testsocial/app.composite | 64 +-- .../trunk/modules/edit/apps/testtext/app.composite | 22 +- .../modules/edit/apps/testvalues/app.composite | 24 +- .../modules/edit/apps/testwidgets/app.composite | 102 ++-- .../trunk/modules/edit/apps/testwidgets/app.html | 3 + .../modules/edit/apps/testwidgets2/app.composite | 66 +-- .../trunk/modules/edit/dashboards/jane@localhost | 1 + .../modules/edit/dashboards/jane@sca-store.com | 1 + .../trunk/modules/edit/dashboards/joe@localhost | 2 +- .../modules/edit/dashboards/joe@sca-store.com | 2 +- sca-cpp/trunk/modules/edit/edit.composite | 20 + .../edit/palettes/database/palette.composite | 84 ++++ .../modules/edit/palettes/event/palette.composite | 8 +- .../modules/edit/palettes/http/palette.composite | 8 + .../modules/edit/palettes/list/palette.composite | 10 +- .../modules/edit/palettes/search/palette.composite | 29 +- .../modules/edit/palettes/value/palette.composite | 14 +- sca-cpp/trunk/modules/edit/store/tests | 2 +- 27 files changed, 1174 insertions(+), 315 deletions(-) create mode 100644 sca-cpp/trunk/modules/edit/apps/testdb/app.composite create mode 100644 sca-cpp/trunk/modules/edit/apps/testsearch/app.composite create mode 100644 sca-cpp/trunk/modules/edit/dashboards/jane@localhost create mode 100644 sca-cpp/trunk/modules/edit/dashboards/jane@sca-store.com create mode 100644 sca-cpp/trunk/modules/edit/palettes/database/palette.composite (limited to 'sca-cpp/trunk') diff --git a/sca-cpp/trunk/components/filedb/filedb.hpp b/sca-cpp/trunk/components/filedb/filedb.hpp index b5690d0f1b..d368522669 100644 --- a/sca-cpp/trunk/components/filedb/filedb.hpp +++ b/sca-cpp/trunk/components/filedb/filedb.hpp @@ -165,7 +165,9 @@ const failable post(const value& key, const value& val, FileDB& db) { if (isList(key)) mkdirs(key, db.name); - ofstream os(filename(key, db.name)); + const string fn = filename(key, db.name); + debug(fn, "filedb::post::filename"); + ofstream os(fn); if (os.fail()) return mkfailure("Couldn't post file database entry."); const failable r = write(val, os, db.format, db); @@ -184,7 +186,9 @@ const failable put(const value& key, const value& val, FileDB& db) { if (isList(key)) mkdirs(key, db.name); - ofstream os(filename(key, db.name)); + const string fn = filename(key, db.name); + debug(fn, "filedb::put::filename"); + ofstream os(fn); if (os.fail()) return mkfailure("Couldn't put file database entry."); const failable r = write(val, os, db.format, db); @@ -218,7 +222,9 @@ const failable del(const value& key, FileDB& db) { debug(key, "filedb::delete::key"); debug(db.name, "filedb::delete::dbname"); - const int rc = unlink(c_str(filename(key, db.name))); + const string fn = filename(key, db.name); + debug(fn, "filedb::del::filename"); + const int rc = unlink(c_str(fn)); if (rc == -1) return mkfailure("Couldn't delete file database entry."); diff --git a/sca-cpp/trunk/modules/edit/apps/me360/app.composite b/sca-cpp/trunk/modules/edit/apps/me360/app.composite index 21f61aa97b..6188773f22 100644 --- a/sca-cpp/trunk/modules/edit/apps/me360/app.composite +++ b/sca-cpp/trunk/modules/edit/apps/me360/app.composite @@ -28,7 +28,7 @@ - + @@ -46,7 +46,7 @@ - + @@ -84,35 +84,35 @@ buzzprofile - - - + + + - + - - + + - - - + + + - - - + + + - - - - + + + + diff --git a/sca-cpp/trunk/modules/edit/apps/me360/app.html b/sca-cpp/trunk/modules/edit/apps/me360/app.html index 148e0a43c9..ebc98e5072 100644 --- a/sca-cpp/trunk/modules/edit/apps/me360/app.html +++ b/sca-cpp/trunk/modules/edit/apps/me360/app.html @@ -52,7 +52,7 @@ Twitter - -

My profiles

+ +

Me360

diff --git a/sca-cpp/trunk/modules/edit/apps/nearme/app.composite b/sca-cpp/trunk/modules/edit/apps/nearme/app.composite index 777c11b885..74af00ee41 100644 --- a/sca-cpp/trunk/modules/edit/apps/nearme/app.composite +++ b/sca-cpp/trunk/modules/edit/apps/nearme/app.composite @@ -18,105 +18,468 @@ * under the License. --> - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + + + + + + + + - fbid + longitude - - - - fbid=1234567 + + + + latitude - - - - 1 + + + + friend2 - - + + - id + friend3 - - - - - + + + + + - - - - jane + + + + + + + + - - - + + + + + + + - - - - - - + + + + + - - - - joe + + + + me + + + + + + - - - - - + + + + - - - + + + - + + + + + + + - - + + - jane + green + + + + + + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + friend1 + + + + + + + + + + + + + + + + + - near + mapimg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + + + + - - - - + + + + + - - - - + + + + friend1 + + + + + friend2 + + + + + friend3 + + + + + + + + + + + + + + + + + + + + + + + + + + + myloc + + + + + friend1loc + + + + + friend2loc + + + + + friend3loc + + + + + 1 + + + + + 2 + + + + + 3 + + + + + X + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + /components/map?friend1={friend1}&friend2={friend2}&friend3={friend3} + + + + + + + + + + + 5000 diff --git a/sca-cpp/trunk/modules/edit/apps/nearme/app.html b/sca-cpp/trunk/modules/edit/apps/nearme/app.html index 5c7c7219bb..32dd393d69 100644 --- a/sca-cpp/trunk/modules/edit/apps/nearme/app.html +++ b/sca-cpp/trunk/modules/edit/apps/nearme/app.html @@ -17,4 +17,47 @@ * specific language governing permissions and limitations * under the License. --> -
+
+ + + + +

Nearme

+
+ + + + + last seen... + + + Friend 3: + + + + + + Friend 2: + + + last seen... + + + + + + Friend 1: + + + last seen... + + + Last seen: + + + updating... + + + me + +
diff --git a/sca-cpp/trunk/modules/edit/apps/test/app.composite b/sca-cpp/trunk/modules/edit/apps/test/app.composite index 29969de5c1..7b5df3c630 100644 --- a/sca-cpp/trunk/modules/edit/apps/test/app.composite +++ b/sca-cpp/trunk/modules/edit/apps/test/app.composite @@ -27,10 +27,10 @@ - - - - + + + + diff --git a/sca-cpp/trunk/modules/edit/apps/testdb/app.composite b/sca-cpp/trunk/modules/edit/apps/testdb/app.composite new file mode 100644 index 0000000000..48530ae93f --- /dev/null +++ b/sca-cpp/trunk/modules/edit/apps/testdb/app.composite @@ -0,0 +1,99 @@ + + + + + + + testkey + + + + + testkey + + + + + + + + + + + testvalue + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + testkey + + diff --git a/sca-cpp/trunk/modules/edit/apps/testevents/app.composite b/sca-cpp/trunk/modules/edit/apps/testevents/app.composite index bc7ac2a4be..bbf0a52851 100644 --- a/sca-cpp/trunk/modules/edit/apps/testevents/app.composite +++ b/sca-cpp/trunk/modules/edit/apps/testevents/app.composite @@ -24,17 +24,17 @@ - + - - - - - - - - + + + + + + + + @@ -54,14 +54,14 @@ status - - - - - - - - + + + + + + + + @@ -70,17 +70,12 @@ status - - - + + + - - - - testfield - @@ -91,30 +86,24 @@ data - + - - + + - - - + + + - - - - - - - - - + + + - + @@ -132,16 +121,11 @@ - - - - - - + - - - + + + @@ -155,9 +139,9 @@ - - - + + + @@ -171,11 +155,11 @@ 3000 - - - + + + - + @@ -184,7 +168,7 @@ - + @@ -196,4 +180,15 @@ status + + + + testfield + + + + + + + diff --git a/sca-cpp/trunk/modules/edit/apps/testsearch/app.composite b/sca-cpp/trunk/modules/edit/apps/testsearch/app.composite new file mode 100644 index 0000000000..3170a1a726 --- /dev/null +++ b/sca-cpp/trunk/modules/edit/apps/testsearch/app.composite @@ -0,0 +1,193 @@ + + + + + + + + + + + + + + + + apache+tuscany + + + + + + + + + + + + + + 94070 + + + + + + + + + + + + + + 94070 + + + + + + + + + + + http://maps.google.com/maps/api/staticmap?center=Brooklyn+Bridge,New+York,NY&zoom=14&size=512x512&maptype=roadmap%20&markers=color:blue|label:S|40.702147,-74.015794&markers=color:green|label:G|40.711614,-74.012318%20&markers=color:red|color:red|label:C|40.718217,-73.998284&sensor=false + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A + + + + + + + + + + + B + + + + + -122.260526 + + + + + + + + + + + yellow + + + + + + + + + + + green + + + + + San+Francisco,+CA + + + + + San+Carlos,+CA + + + + + + + + + + + + A + + + + + green + + + + + + + + + + + + + + + + + + + 37.507156 + + + + + + + + diff --git a/sca-cpp/trunk/modules/edit/apps/testsocial/app.composite b/sca-cpp/trunk/modules/edit/apps/testsocial/app.composite index e0d765b510..4da0708d11 100644 --- a/sca-cpp/trunk/modules/edit/apps/testsocial/app.composite +++ b/sca-cpp/trunk/modules/edit/apps/testsocial/app.composite @@ -26,16 +26,9 @@ - - - - - - - - - - + + + @@ -44,15 +37,9 @@ twprofile - - - - - - - - - + + + @@ -88,24 +75,11 @@ - - - - - - - - me360 - - - - fbprofile - @@ -134,4 +108,30 @@ jsdelfino + + + + + + + + + + + + + + + + + fbprofile + + + + + + + + + diff --git a/sca-cpp/trunk/modules/edit/apps/testtext/app.composite b/sca-cpp/trunk/modules/edit/apps/testtext/app.composite index 34db4b61bb..9a9b41a939 100644 --- a/sca-cpp/trunk/modules/edit/apps/testtext/app.composite +++ b/sca-cpp/trunk/modules/edit/apps/testtext/app.composite @@ -109,7 +109,7 @@ abcxdefxghi - + @@ -145,7 +145,7 @@ The {0} brown {1} - + @@ -167,22 +167,22 @@ The {a} brown {b} - + - - + + - - - + + + - - - + + + diff --git a/sca-cpp/trunk/modules/edit/apps/testvalues/app.composite b/sca-cpp/trunk/modules/edit/apps/testvalues/app.composite index c371fb68f1..953363a750 100644 --- a/sca-cpp/trunk/modules/edit/apps/testvalues/app.composite +++ b/sca-cpp/trunk/modules/edit/apps/testvalues/app.composite @@ -39,7 +39,7 @@ - + @@ -187,7 +187,7 @@ nb - + @@ -209,7 +209,7 @@ - + @@ -226,23 +226,23 @@ 34 - - - + + + - - - + + + - + - - + + diff --git a/sca-cpp/trunk/modules/edit/apps/testwidgets/app.composite b/sca-cpp/trunk/modules/edit/apps/testwidgets/app.composite index a7b83b7577..479cfa67e4 100644 --- a/sca-cpp/trunk/modules/edit/apps/testwidgets/app.composite +++ b/sca-cpp/trunk/modules/edit/apps/testwidgets/app.composite @@ -24,11 +24,11 @@ - + - - - + + + @@ -82,27 +82,27 @@ http://tuscany.apache.org/images/TuscanyLogo.jpg - - - + + + - - - + + + - - - + + + - - - + + + @@ -126,15 +126,15 @@ test - - - + + + - - - + + + @@ -148,29 +148,30 @@ test text - - - + + + - - - + + + - + - - - - - - - - + + + + + + + + + @@ -178,4 +179,31 @@ http://tuscany.apache.org + + + + testpath1 + + + + + + + + + + + testpath2 + + + + + test path + + + + + + + diff --git a/sca-cpp/trunk/modules/edit/apps/testwidgets/app.html b/sca-cpp/trunk/modules/edit/apps/testwidgets/app.html index 7db0f3e36f..ee20dcef38 100644 --- a/sca-cpp/trunk/modules/edit/apps/testwidgets/app.html +++ b/sca-cpp/trunk/modules/edit/apps/testwidgets/app.html @@ -55,4 +55,7 @@ + + text +
diff --git a/sca-cpp/trunk/modules/edit/apps/testwidgets2/app.composite b/sca-cpp/trunk/modules/edit/apps/testwidgets2/app.composite index 6ad9b104eb..133b214b92 100644 --- a/sca-cpp/trunk/modules/edit/apps/testwidgets2/app.composite +++ b/sca-cpp/trunk/modules/edit/apps/testwidgets2/app.composite @@ -26,7 +26,7 @@ - testtable1 + testlist1 @@ -36,27 +36,27 @@
- - - + + + - testtable2 + testlist2 - + - - + + - - - + + + @@ -70,9 +70,9 @@ 1 - - - + + + @@ -81,9 +81,9 @@ 2 - - - + + + @@ -92,19 +92,19 @@ b - + - - - - - + + + + + - - - + + + @@ -118,9 +118,9 @@ <b>test bold text</b> - - - + + + @@ -134,7 +134,7 @@ http://www.apache.org/ - + @@ -146,9 +146,9 @@ Apache - - - + + + diff --git a/sca-cpp/trunk/modules/edit/dashboards/jane@localhost b/sca-cpp/trunk/modules/edit/dashboards/jane@localhost new file mode 100644 index 0000000000..f78bc0b38e --- /dev/null +++ b/sca-cpp/trunk/modules/edit/dashboards/jane@localhost @@ -0,0 +1 @@ +((entry (title "An empty test app") (id "test")) (entry (title "Test values and lists") (id "testvalues")) (entry (title "Test social components") (id "testsocial")) (entry (title "Test URL components") (id "testurl")) (entry (title "Test logic components") (id "testlogic")) (entry (title "Test text processing components") (id "testtext")) (entry (title "Test HTTP components") (id "testhttp")) (entry (title "Test widgets") (id "testwidgets")) (entry (title "Test more widgets") (id "testwidgets2")) (entry (title "Test event components") (id "testevents")) (entry (title "Test search components") (id "testsearch")) (entry (title "Test database components") (id "testdb")) (entry (title "An app that shows my social profiles") (id "me360")) (entry (title "An app that shows friends near me") (id "nearme")) (entry (title "An app that returns somebody's Buzz profile") (id "buzzprofile"))) diff --git a/sca-cpp/trunk/modules/edit/dashboards/jane@sca-store.com b/sca-cpp/trunk/modules/edit/dashboards/jane@sca-store.com new file mode 100644 index 0000000000..f78bc0b38e --- /dev/null +++ b/sca-cpp/trunk/modules/edit/dashboards/jane@sca-store.com @@ -0,0 +1 @@ +((entry (title "An empty test app") (id "test")) (entry (title "Test values and lists") (id "testvalues")) (entry (title "Test social components") (id "testsocial")) (entry (title "Test URL components") (id "testurl")) (entry (title "Test logic components") (id "testlogic")) (entry (title "Test text processing components") (id "testtext")) (entry (title "Test HTTP components") (id "testhttp")) (entry (title "Test widgets") (id "testwidgets")) (entry (title "Test more widgets") (id "testwidgets2")) (entry (title "Test event components") (id "testevents")) (entry (title "Test search components") (id "testsearch")) (entry (title "Test database components") (id "testdb")) (entry (title "An app that shows my social profiles") (id "me360")) (entry (title "An app that shows friends near me") (id "nearme")) (entry (title "An app that returns somebody's Buzz profile") (id "buzzprofile"))) diff --git a/sca-cpp/trunk/modules/edit/dashboards/joe@localhost b/sca-cpp/trunk/modules/edit/dashboards/joe@localhost index 81ceb8f53d..f78bc0b38e 100644 --- a/sca-cpp/trunk/modules/edit/dashboards/joe@localhost +++ b/sca-cpp/trunk/modules/edit/dashboards/joe@localhost @@ -1 +1 @@ -((entry (title "An empty test app") (id "test")) (entry (title "Test values and lists") (id "testvalues")) (entry (title "Test social components") (id "testsocial")) (entry (title "Test URL components") (id "testurl")) (entry (title "Test logic components") (id "testlogic")) (entry (title "Test text processing components") (id "testtext")) (entry (title "Test HTTP components") (id "testhttp")) (entry (title "Test widgets") (id "testwidgets")) (entry (title "Test more widgets") (id "testwidgets2")) (entry (title "Test event components") (id "testevents")) (entry (title "An app that shows my social profiles") (id "me360")) (entry (title "An app that shows friends near me") (id "nearme")) (entry (title "An app that returns somebody's Buzz profile") (id "buzzprofile"))) +((entry (title "An empty test app") (id "test")) (entry (title "Test values and lists") (id "testvalues")) (entry (title "Test social components") (id "testsocial")) (entry (title "Test URL components") (id "testurl")) (entry (title "Test logic components") (id "testlogic")) (entry (title "Test text processing components") (id "testtext")) (entry (title "Test HTTP components") (id "testhttp")) (entry (title "Test widgets") (id "testwidgets")) (entry (title "Test more widgets") (id "testwidgets2")) (entry (title "Test event components") (id "testevents")) (entry (title "Test search components") (id "testsearch")) (entry (title "Test database components") (id "testdb")) (entry (title "An app that shows my social profiles") (id "me360")) (entry (title "An app that shows friends near me") (id "nearme")) (entry (title "An app that returns somebody's Buzz profile") (id "buzzprofile"))) diff --git a/sca-cpp/trunk/modules/edit/dashboards/joe@sca-store.com b/sca-cpp/trunk/modules/edit/dashboards/joe@sca-store.com index 81ceb8f53d..f78bc0b38e 100644 --- a/sca-cpp/trunk/modules/edit/dashboards/joe@sca-store.com +++ b/sca-cpp/trunk/modules/edit/dashboards/joe@sca-store.com @@ -1 +1 @@ -((entry (title "An empty test app") (id "test")) (entry (title "Test values and lists") (id "testvalues")) (entry (title "Test social components") (id "testsocial")) (entry (title "Test URL components") (id "testurl")) (entry (title "Test logic components") (id "testlogic")) (entry (title "Test text processing components") (id "testtext")) (entry (title "Test HTTP components") (id "testhttp")) (entry (title "Test widgets") (id "testwidgets")) (entry (title "Test more widgets") (id "testwidgets2")) (entry (title "Test event components") (id "testevents")) (entry (title "An app that shows my social profiles") (id "me360")) (entry (title "An app that shows friends near me") (id "nearme")) (entry (title "An app that returns somebody's Buzz profile") (id "buzzprofile"))) +((entry (title "An empty test app") (id "test")) (entry (title "Test values and lists") (id "testvalues")) (entry (title "Test social components") (id "testsocial")) (entry (title "Test URL components") (id "testurl")) (entry (title "Test logic components") (id "testlogic")) (entry (title "Test text processing components") (id "testtext")) (entry (title "Test HTTP components") (id "testhttp")) (entry (title "Test widgets") (id "testwidgets")) (entry (title "Test more widgets") (id "testwidgets2")) (entry (title "Test event components") (id "testevents")) (entry (title "Test search components") (id "testsearch")) (entry (title "Test database components") (id "testdb")) (entry (title "An app that shows my social profiles") (id "me360")) (entry (title "An app that shows friends near me") (id "nearme")) (entry (title "An app that returns somebody's Buzz profile") (id "buzzprofile"))) diff --git a/sca-cpp/trunk/modules/edit/edit.composite b/sca-cpp/trunk/modules/edit/edit.composite index 0243542035..a7230296c2 100644 --- a/sca-cpp/trunk/modules/edit/edit.composite +++ b/sca-cpp/trunk/modules/edit/edit.composite @@ -172,6 +172,26 @@ + + + + + + + + + + + + + + tmp/appdata/filedb + scheme + + + + + diff --git a/sca-cpp/trunk/modules/edit/palettes/database/palette.composite b/sca-cpp/trunk/modules/edit/palettes/database/palette.composite new file mode 100644 index 0000000000..2b37912ed4 --- /dev/null +++ b/sca-cpp/trunk/modules/edit/palettes/database/palette.composite @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sca-cpp/trunk/modules/edit/palettes/event/palette.composite b/sca-cpp/trunk/modules/edit/palettes/event/palette.composite index 0bb69eeccd..51675139aa 100644 --- a/sca-cpp/trunk/modules/edit/palettes/event/palette.composite +++ b/sca-cpp/trunk/modules/edit/palettes/event/palette.composite @@ -23,7 +23,7 @@ name="palette"> - + @@ -35,9 +35,9 @@ - - - + + + diff --git a/sca-cpp/trunk/modules/edit/palettes/http/palette.composite b/sca-cpp/trunk/modules/edit/palettes/http/palette.composite index fb46490dea..fc6ba48a55 100644 --- a/sca-cpp/trunk/modules/edit/palettes/http/palette.composite +++ b/sca-cpp/trunk/modules/edit/palettes/http/palette.composite @@ -25,6 +25,7 @@ + @@ -50,6 +51,13 @@ + + + + + + + diff --git a/sca-cpp/trunk/modules/edit/palettes/list/palette.composite b/sca-cpp/trunk/modules/edit/palettes/list/palette.composite index be3f15ea66..36cde72a17 100644 --- a/sca-cpp/trunk/modules/edit/palettes/list/palette.composite +++ b/sca-cpp/trunk/modules/edit/palettes/list/palette.composite @@ -22,6 +22,7 @@ targetNamespace="http://list" name="palette"> + @@ -31,7 +32,14 @@ - + + + + + + + + diff --git a/sca-cpp/trunk/modules/edit/palettes/search/palette.composite b/sca-cpp/trunk/modules/edit/palettes/search/palette.composite index eab03ac835..d6e4a0fa1e 100644 --- a/sca-cpp/trunk/modules/edit/palettes/search/palette.composite +++ b/sca-cpp/trunk/modules/edit/palettes/search/palette.composite @@ -25,14 +25,17 @@ - + - - + + + + + @@ -47,16 +50,22 @@ - - - - + + + + + + + - - + + - + + + + diff --git a/sca-cpp/trunk/modules/edit/palettes/value/palette.composite b/sca-cpp/trunk/modules/edit/palettes/value/palette.composite index abdb47e460..1cd9022493 100644 --- a/sca-cpp/trunk/modules/edit/palettes/value/palette.composite +++ b/sca-cpp/trunk/modules/edit/palettes/value/palette.composite @@ -26,10 +26,10 @@ - + @@ -55,13 +55,6 @@ name - - - - - - - @@ -77,4 +70,9 @@ + + + + + diff --git a/sca-cpp/trunk/modules/edit/store/tests b/sca-cpp/trunk/modules/edit/store/tests index ee6cbbe788..3872b753cd 100644 --- a/sca-cpp/trunk/modules/edit/store/tests +++ b/sca-cpp/trunk/modules/edit/store/tests @@ -1 +1 @@ -((entry (title "An empty test app") (id "test")) (entry (title "Test values and lists") (id "testvalues")) (entry (title "Test social components") (id "testsocial")) (entry (title "Test URL components") (id "testurl")) (entry (title "Test logic components") (id "testlogic")) (entry (title "Test text processing components") (id "testtext")) (entry (title "Test HTTP components") (id "testhttp")) (entry (title "Test widgets") (id "testwidgets")) (entry (title "Test more widgets") (id "testwidgets2")) (entry (title "Test event components") (id "testevents"))) +((entry (title "An empty test app") (id "test")) (entry (title "Test values and lists") (id "testvalues")) (entry (title "Test social components") (id "testsocial")) (entry (title "Test URL components") (id "testurl")) (entry (title "Test logic components") (id "testlogic")) (entry (title "Test text processing components") (id "testtext")) (entry (title "Test HTTP components") (id "testhttp")) (entry (title "Test widgets") (id "testwidgets")) (entry (title "Test more widgets") (id "testwidgets2")) (entry (title "Test event components") (id "testevents")) (entry (title "Test search components") (id "testsearch")) (entry (title "Test database components") (id "testdb"))) -- cgit v1.2.3