appswarm 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.autotest +124 -0
- data/History.txt +7 -0
- data/Manifest.txt +304 -0
- data/README.txt +373 -0
- data/Rakefile +153 -0
- data/TODO +7 -0
- data/apps/README.txt +17 -0
- data/apps/admin/admin.rb +79 -0
- data/apps/admin/controllers/admin.rb +81 -0
- data/apps/admin/controllers/settings.rb +63 -0
- data/apps/admin/controllers/users.rb +3 -0
- data/apps/admin/features/access.feature +21 -0
- data/apps/admin/features/mountLocal.feature +12 -0
- data/apps/admin/features/settings.feature +68 -0
- data/apps/admin/features/startApps.feature +27 -0
- data/apps/admin/layouts/main.rhtml +10 -0
- data/apps/admin/lib/settings.rb +52 -0
- data/apps/admin/static/admin.css +23 -0
- data/apps/admin/views/_log.rhtml +21 -0
- data/apps/admin/views/index.rhtml +43 -0
- data/apps/admin/views/info.rhtml +7 -0
- data/apps/admin/views/settings.rhtml +9 -0
- data/apps/admin/views/settings/_http_app.rhtml +15 -0
- data/apps/admin/views/settings/_web_server.rhtml +32 -0
- data/apps/admin/views/settings/index.rhtml +3 -0
- data/apps/admin/views/users/index.rhtml +6 -0
- data/apps/application_provider/application_provider.rb +11 -0
- data/apps/blog/blog.rb +27 -0
- data/apps/blog/controllers/blog.rb +29 -0
- data/apps/blog/views/index.rhtml +27 -0
- data/apps/browser_starter/browser_starter.rb +32 -0
- data/apps/crypto/crypto.rb +47 -0
- data/apps/crypto/crypto_rsa.rb +102 -0
- data/apps/crypto/spec/crypto_spec.rb +10 -0
- data/apps/directory_service/directory_service.rb +107 -0
- data/apps/directory_service/net_application.rb +92 -0
- data/apps/directory_service/spec/directory_service_spec.rb +36 -0
- data/apps/directory_service/spec/net_application_spec.rb +3 -0
- data/apps/global_application_interface/global_application.rb +52 -0
- data/apps/global_application_interface/global_application_interface.rb +84 -0
- data/apps/global_application_interface/spec/app_api_spec.rb +5 -0
- data/apps/global_tuple_space/global_tuple_space.rb +27 -0
- data/apps/global_web_proxy/features/session_handling.feature +7 -0
- data/apps/global_web_proxy/global_web_proxy.rb +221 -0
- data/apps/global_web_proxy/proxy/HTTPProxyServer-Dateien/rdoc-style.css +208 -0
- data/apps/global_web_proxy/proxy/HTTPProxyServer.html +566 -0
- data/apps/global_web_proxy/proxy/dnstest.rb +30 -0
- data/apps/global_web_proxy/proxy/proxy.rb +86 -0
- data/apps/global_web_proxy/proxy/wiki.html +267 -0
- data/apps/global_web_proxy/proxy/wiki.rb +115 -0
- data/apps/global_web_proxy/spec/res1 +112 -0
- data/apps/global_web_proxy/spec/res2 +125 -0
- data/apps/global_web_proxy/spec/web_proxy_spec.rb +88 -0
- data/apps/global_web_server/global_web_server.rb +120 -0
- data/apps/global_web_server/global_web_servlet.rb +6 -0
- data/apps/hello_world/controllers/hello_world.rb +11 -0
- data/apps/hello_world/features/show_on_local_web_server.feature +44 -0
- data/apps/hello_world/features/starting_apps.feature +6 -0
- data/apps/hello_world/features/through_global.feature +12 -0
- data/apps/hello_world/hello_world.rb +3 -0
- data/apps/hello_world/views/get.rhtml +10 -0
- data/apps/hello_world/views/index.rhtml +9 -0
- data/apps/hello_world/views/post.rhtml +10 -0
- data/apps/home/controllers/home.rb +11 -0
- data/apps/home/home.rb +12 -0
- data/apps/home/layouts/main.rhtml +16 -0
- data/apps/home/static/Zeichnung.svg +240 -0
- data/apps/home/static/home.css +134 -0
- data/apps/home/static/menu.css +99 -0
- data/apps/home/views/_appInfo.rhtml +22 -0
- data/apps/home/views/_dummy_fill.rhtml +3 -0
- data/apps/home/views/_info.rhtml +6 -0
- data/apps/home/views/_menu.rhtml +17 -0
- data/apps/home/views/index.rhtml +4 -0
- data/apps/home/views/overview.rhtml +2 -0
- data/apps/local_chunk_store/chunk_store.rb +15 -0
- data/apps/local_chunk_store/local_chunk_store.rb +123 -0
- data/apps/local_chunk_store/spec/local_chunk_store_spec.rb +30 -0
- data/apps/local_file_store/app_configuration.rb +78 -0
- data/apps/local_file_store/app_file_store.rb +32 -0
- data/apps/local_file_store/cached_file_store.rb +94 -0
- data/apps/local_file_store/features/testbed_handling_of_directories.feature +20 -0
- data/apps/local_file_store/local_file_store.rb +47 -0
- data/apps/local_file_store/spec/app_configuration_spec.rb +30 -0
- data/apps/local_file_store/spec/local_file_store_spec.rb +54 -0
- data/apps/local_object_storage/lib/cell.rb +29 -0
- data/apps/local_object_storage/lib/cellmgr.rb +57 -0
- data/apps/local_object_storage/lib/index.rb +43 -0
- data/apps/local_object_storage/lib/marshal.rb +96 -0
- data/apps/local_object_storage/lib/pagefile.rb +6 -0
- data/apps/local_object_storage/lib/persistent_object.rb +126 -0
- data/apps/local_object_storage/local_object_storage.rb +148 -0
- data/apps/local_object_storage/spec/local_object_storage_spec.rb +123 -0
- data/apps/local_secure_file_store/local_secure_file_store.rb +64 -0
- data/apps/local_secure_file_store/spec/local_secure_file_store_spec.rb +23 -0
- data/apps/local_tuple_space/local_tuple_space.rb +92 -0
- data/apps/local_tuple_space/spec/tuple_space_spec.rb +25 -0
- data/apps/local_web_server/features/parsing_args.feature +18 -0
- data/apps/local_web_server/local_web_server.rb +166 -0
- data/apps/logger/logger.rb +27 -0
- data/apps/master/master.rb +46 -0
- data/apps/master/spec/master_spec.rb +31 -0
- data/apps/my_spec_spec.rb +15 -0
- data/apps/name_service/name_service.rb +75 -0
- data/apps/name_service/spec/name_service_spec.rb +51 -0
- data/apps/network_discovery/network_discovery.rb +45 -0
- data/apps/network_discovery_localstore/network_discovery_localstore.rb +20 -0
- data/apps/network_discovery_udp/network_discovery_udp.rb +51 -0
- data/apps/network_lookup/network_lookup.rb +61 -0
- data/apps/network_node/abstract_node.rb +104 -0
- data/apps/network_node/drb_node.rb +90 -0
- data/apps/network_node/network_app.rb +9 -0
- data/apps/network_node/network_node.rb +471 -0
- data/apps/network_node/remote_service.rb +45 -0
- data/apps/network_node/secure_node.rb +125 -0
- data/apps/network_node/spec/drb_spec.rb +41 -0
- data/apps/network_node/spec/network_node_spec_not.rb +264 -0
- data/apps/new_network_node/new_network_node.rb +427 -0
- data/apps/new_network_node/spec/new_network_node_spec.rb +186 -0
- data/apps/node_broadcast/node_broadcast.rb +167 -0
- data/apps/node_broadcast/spec/node_broadcast_spec.rb +59 -0
- data/apps/permaspace/permaspace.rb +47 -0
- data/apps/plaindb/lib/btree.rb +38 -0
- data/apps/plaindb/plaindb.rb +199 -0
- data/apps/plaindb/spec/table_write_spec.rb +36 -0
- data/apps/routed_network/routed_network.rb +23 -0
- data/apps/routed_network/spec/routed_network_spec.rb +17 -0
- data/apps/session_manager/session_manager.rb +18 -0
- data/apps/spec_output.html +222 -0
- data/apps/todo/controllers/todo.rb +87 -0
- data/apps/todo/model/comment.rb +10 -0
- data/apps/todo/model/project.rb +20 -0
- data/apps/todo/model/todo.rb +16 -0
- data/apps/todo/model/user.rb +5 -0
- data/apps/todo/todo.rb +21 -0
- data/apps/todo/views/_commentList.rhtml +7 -0
- data/apps/todo/views/_createProject.rhtml +5 -0
- data/apps/todo/views/_partList.rhtml +12 -0
- data/apps/todo/views/_projectList.rhtml +16 -0
- data/apps/todo/views/edit.rhtml +11 -0
- data/apps/todo/views/editPart.rhtml +10 -0
- data/apps/todo/views/index.rhtml +2 -0
- data/apps/todo/views/question.rhtml +4 -0
- data/apps/transparent_network/transparent_network.rb +7 -0
- data/apps/udp_network/big_transfer.rb +97 -0
- data/apps/udp_network/features/information.feature +7 -0
- data/apps/udp_network/message_queue.rb +84 -0
- data/apps/udp_network/network_interface_api.rb +39 -0
- data/apps/udp_network/qos_queue.rb +186 -0
- data/apps/udp_network/simple_api.rb +180 -0
- data/apps/udp_network/spec/big_transfer_spec.rb +0 -0
- data/apps/udp_network/spec/qos_queue_spec.rb +99 -0
- data/apps/udp_network/spec/simple_api_spec.rb +35 -0
- data/apps/udp_network/spec/udp_network_spec.rb +115 -0
- data/apps/udp_network/spec/udp_transceiver_spec.rb +90 -0
- data/apps/udp_network/udp_network.rb +196 -0
- data/apps/udp_network/udp_transceiver.rb +329 -0
- data/apps/wiki/controllers/wiki.rb +56 -0
- data/apps/wiki/features/editing.feature +21 -0
- data/apps/wiki/layouts/main.rhtml +18 -0
- data/apps/wiki/lib/media_wiki_html.rb +35 -0
- data/apps/wiki/lib/wikicreole.rb +2147 -0
- data/apps/wiki/lib/wikicreole.tt +135 -0
- data/apps/wiki/lib/wikitest.rb +158 -0
- data/apps/wiki/lib/wikitest.tt +17 -0
- data/apps/wiki/model/menu.rb +15 -0
- data/apps/wiki/model/page.rb +31 -0
- data/apps/wiki/spec/wiki_creole_spec.rb +20 -0
- data/apps/wiki/spec/wiki_spec.rb +19 -0
- data/apps/wiki/static/Zeichnung.svg +240 -0
- data/apps/wiki/static/home.css +134 -0
- data/apps/wiki/static/mainMenu.css +32 -0
- data/apps/wiki/static/menu.css +99 -0
- data/apps/wiki/views/_mainMenu.rhtml +3 -0
- data/apps/wiki/views/_menu.rhtml +13 -0
- data/apps/wiki/views/edit.rhtml +13 -0
- data/apps/wiki/views/index.rhtml +2 -0
- data/apps/wiki/views/save.rhtml +1 -0
- data/apps/wiki/wiki.rb +17 -0
- data/bin/appswarm +47 -0
- data/cucumber.yml +2 -0
- data/data/PermaspaceApp/AFS_WikiApp_wiki_config +6 -0
- data/data/draft.txt +63 -0
- data/docs/appswarm_motivation.graffle +0 -0
- data/docs/appswarm_pics.graffle/QuickLook/Preview.pdf +0 -0
- data/docs/appswarm_pics.graffle/QuickLook/Thumbnail.tiff +0 -0
- data/docs/appswarm_pics.graffle/data.plist +63494 -0
- data/docs/appswarm_pics.graffle/image1.tiff +0 -0
- data/docs/appswarm_pics.graffle/image2.tif +0 -0
- data/docs/appswarm_pics.graffle/image3.tif +0 -0
- data/docs/appswarm_pics.graffle/image4.tif +0 -0
- data/docs/appswarm_pics.graffle/image5.tiff +0 -0
- data/docs/routing.graffle +0 -0
- data/features/step_definitions/appstart_steps.rb +28 -0
- data/features/step_definitions/cluster_steps.rb +18 -0
- data/features/step_definitions/testbed_steps.rb +64 -0
- data/features/step_definitions/webapp_steps.rb +257 -0
- data/features/support/env.rb +7 -0
- data/lib/appswarm.rb +127 -0
- data/lib/appswarm/README.txt +67 -0
- data/lib/appswarm/app_config.rb +19 -0
- data/lib/appswarm/application.rb +267 -0
- data/lib/appswarm/breaking_mutex.rb +41 -0
- data/lib/appswarm/cluster_funcs.rb +157 -0
- data/lib/appswarm/cross_spectool.rb +153 -0
- data/lib/appswarm/crypt.rb +10 -0
- data/lib/appswarm/crypt/crypto.rb +90 -0
- data/lib/appswarm/crypt/rsa_key +15 -0
- data/lib/appswarm/crypt/rsa_key.pub +5 -0
- data/lib/appswarm/crypt/test.rb +27 -0
- data/lib/appswarm/dir_tool.rb +41 -0
- data/lib/appswarm/event_api.rb +7 -0
- data/lib/appswarm/features_helper.rb +44 -0
- data/lib/appswarm/global_service.rb +38 -0
- data/lib/appswarm/http.rb +1 -0
- data/lib/appswarm/http/http_app.rb +257 -0
- data/lib/appswarm/http/http_controller.rb +267 -0
- data/lib/appswarm/http/http_provider.rb +80 -0
- data/lib/appswarm/http/static/favicon.ico +0 -0
- data/lib/appswarm/http/static/javascript/._prototype.js +0 -0
- data/lib/appswarm/http/static/javascript/prototype.js +2515 -0
- data/lib/appswarm/http/webrick_logger.rb +12 -0
- data/lib/appswarm/net_service.rb +69 -0
- data/lib/appswarm/package.rb +88 -0
- data/lib/appswarm/parallel_each.rb +46 -0
- data/lib/appswarm/protocols/protocol_dice.rb +25 -0
- data/lib/appswarm/proxy_testing.rb +48 -0
- data/lib/appswarm/public_api.rb +35 -0
- data/lib/appswarm/routing/matrix_math.rb +57 -0
- data/lib/appswarm/routing/pca.rb +211 -0
- data/lib/appswarm/routing/routetest.rb +85 -0
- data/lib/appswarm/routing/routing.rb +326 -0
- data/lib/appswarm/routing/spec/nods_spec.rb +23 -0
- data/lib/appswarm/routing/spec/pca_spec.rb +27 -0
- data/lib/appswarm/routing/spec/routing_spec.rb +91 -0
- data/lib/appswarm/secure_con.rb +437 -0
- data/lib/appswarm/secure_connection.rb +79 -0
- data/lib/appswarm/secure_marshal.rb +137 -0
- data/lib/appswarm/service.rb +76 -0
- data/lib/appswarm/simple_marshal.rb +96 -0
- data/lib/appswarm/simple_marshal_parser.rb +1243 -0
- data/lib/appswarm/simple_marshal_parser.tt +158 -0
- data/lib/appswarm/spec/application_spec.rb +50 -0
- data/lib/appswarm/spec/cluster_spec.rb +2 -0
- data/lib/appswarm/spec/hexdist_spec.rb +13 -0
- data/lib/appswarm/spec/http_controller_spec.rb +18 -0
- data/lib/appswarm/spec/main_spec.rb +6 -0
- data/lib/appswarm/spec/parallel_each_spec.rb +30 -0
- data/lib/appswarm/spec/secure_connection_spec.rb +108 -0
- data/lib/appswarm/spec/secure_marshal_spec.rb +93 -0
- data/lib/appswarm/spec/simple_marshal_spec.rb +87 -0
- data/lib/appswarm/spec/tools_spec.rb +13 -0
- data/lib/appswarm/spec/whiteboard_spec.rb +20 -0
- data/lib/appswarm/spec_helper.rb +18 -0
- data/lib/appswarm/test_bed.rb +207 -0
- data/lib/appswarm/tools.rb +284 -0
- data/lib/appswarm/tools/http_tunnel_client.rb +139 -0
- data/lib/appswarm/tools/http_tunnel_common.rb +8 -0
- data/lib/appswarm/tools/http_tunnel_server.rb +78 -0
- data/lib/appswarm/tools/parser/example_data.simple +102 -0
- data/lib/appswarm/tools/parser/match_test.rb +14 -0
- data/lib/appswarm/tools/parser/parser_lib.rb +165 -0
- data/lib/appswarm/tools/parser/parser_test.rb +104 -0
- data/lib/appswarm/tools/parser/spec/parser_spec.rb +44 -0
- data/lib/appswarm/tools/pipes.rb +95 -0
- data/lib/appswarm/tools/spec/tracing_spec.rb +16 -0
- data/lib/appswarm/tools/spec/waiting_queue_spec.rb +15 -0
- data/lib/appswarm/tools/thread_tool.rb +61 -0
- data/lib/appswarm/tools/tracing.rb +84 -0
- data/lib/appswarm/tools/treetop_test.rb +20 -0
- data/lib/appswarm/tools/treetop_test_grammar.rb +114 -0
- data/lib/appswarm/tools/treetop_test_grammar.tt +7 -0
- data/lib/appswarm/tools/waiting_prio_queue.rb +47 -0
- data/lib/appswarm/tools/waiting_queue.rb +34 -0
- data/lib/appswarm/whiteboard.rb +73 -0
- data/nettest.rb +50 -0
- data/packages/README.txt +1 -0
- data/packages/msandbox/data/packages/store/my.txt +1 -0
- data/packages/msandbox/interfaces.rb +172 -0
- data/packages/msandbox/old/defa.rb +3 -0
- data/packages/msandbox/old/test.rb +14 -0
- data/packages/msandbox/old/test2.rb +56 -0
- data/packages/msandbox/package.rb +67 -0
- data/packages/msandbox/packages/store/config.yml +1 -0
- data/packages/msandbox/packages/store/main.rb +27 -0
- data/packages/msandbox/packages/store/myinclude.rb +7 -0
- data/packages/msandbox/packages/store_test/config.yml +1 -0
- data/packages/msandbox/packages/store_test/main.rb +9 -0
- data/packages/msandbox/server.rb +146 -0
- data/packages/msandbox/test.rb +13 -0
- data/packages/msandbox/test2.rb +29 -0
- data/templates/web/appswarm/controllers/appswarm.rb +41 -0
- data/templates/web/appswarm/layouts/main.rhtml +20 -0
- data/templates/web/appswarm/models/asmenu.rb +14 -0
- data/templates/web/appswarm/models/asuser.rb +30 -0
- data/templates/web/appswarm/static/custom.css +15 -0
- data/templates/web/appswarm/static/home.css +134 -0
- data/templates/web/appswarm/static/mainMenu.css +32 -0
- data/templates/web/appswarm/static/menu.css +99 -0
- data/templates/web/appswarm/views/_mainMenu.rhtml +5 -0
- data/templates/web/appswarm/views/_menu.rhtml +13 -0
- data/templates/web/appswarm/views/_userInfo.rhtml +7 -0
- data/templates/web/appswarm/views/login.rhtml +9 -0
- data/tools/checkPort.rb +11 -0
- metadata +379 -0
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
Feature: Offering a web-application on a LocalWebServer
|
|
2
|
+
Web-Applications can be mounted on a specified path on a
|
|
3
|
+
LocalWebServer.
|
|
4
|
+
|
|
5
|
+
Scenario: Run hello-world on a localwebserver on "/"
|
|
6
|
+
Given a testbed with a "LocalWebServer" application
|
|
7
|
+
And a "HelloWorld" application in it
|
|
8
|
+
And I create a "hello" instance on the "HelloWorld" http-application
|
|
9
|
+
When the "hello" instance of "HelloWorld" is offered on path "/" on the "LocalWebServer" application
|
|
10
|
+
And a client accesses the "LocalWebServer" on "/"
|
|
11
|
+
Then the resulting html page contains "Hello World"
|
|
12
|
+
When a client accesses the "LocalWebServer" on "/schlumpf"
|
|
13
|
+
Then it is given an error
|
|
14
|
+
|
|
15
|
+
Scenario: Run hello-world on a localwebserver on "/schlumpf"
|
|
16
|
+
Given a testbed with a "LocalWebServer" application
|
|
17
|
+
And a "HelloWorld" application in it
|
|
18
|
+
And I create a "hello" instance on the "HelloWorld" http-application
|
|
19
|
+
When the "hello" instance of "HelloWorld" is offered on path "/schlumpf" on the "LocalWebServer" application
|
|
20
|
+
And a client accesses the "LocalWebServer" on "/schlumpf"
|
|
21
|
+
Then the resulting html page contains "Hello World"
|
|
22
|
+
When a client accesses the "LocalWebServer" on "/"
|
|
23
|
+
Then it is given an error
|
|
24
|
+
|
|
25
|
+
Scenario: Distinguishing between several instances
|
|
26
|
+
Given a testbed with a "LocalWebServer" application
|
|
27
|
+
And a "HelloWorld" application in it
|
|
28
|
+
And I create a "Tree" instance on the "HelloWorld" http-application
|
|
29
|
+
And I create a "Bush" instance on the "HelloWorld" http-application
|
|
30
|
+
When the "Tree" instance of "HelloWorld" is offered on path "/tree" on the "LocalWebServer" application
|
|
31
|
+
And the "Bush" instance of "HelloWorld" is offered on path "/bush" on the "LocalWebServer" application
|
|
32
|
+
And a client accesses the "LocalWebServer" on "/tree"
|
|
33
|
+
Then the resulting html page contains "Tree"
|
|
34
|
+
When a client accesses the "LocalWebServer" on "/bush"
|
|
35
|
+
Then the resulting html page contains "Bush"
|
|
36
|
+
|
|
37
|
+
Scenario: Mounting on local path leads to global
|
|
38
|
+
Given a testbed with a "LocalWebServer" application
|
|
39
|
+
And a "HelloWorld" application in it
|
|
40
|
+
And I create a "hello" instance on the "HelloWorld" http-application
|
|
41
|
+
When the "hello" instance of "HelloWorld" is offered on path "muh" on the "LocalWebServer" application
|
|
42
|
+
And a client accesses the "LocalWebServer" on "/muh"
|
|
43
|
+
Then the resulting html page contains "Hello World"
|
|
44
|
+
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
Feature: Global access of web applications
|
|
2
|
+
|
|
3
|
+
Scenario: A HelloWorld app is provided globally and accessed through a proxy.
|
|
4
|
+
Given a testbed with a "GlobalWebServer" application
|
|
5
|
+
And a "NameService" application in it
|
|
6
|
+
And a "HelloWorld" application in it
|
|
7
|
+
And a "GlobalWebProxy" application in it
|
|
8
|
+
And I create a "hello" instance on the "HelloWorld" http-application
|
|
9
|
+
When the "hello" instance of "HelloWorld" is offered on the "GlobalWebServer" application
|
|
10
|
+
And the "hello" instance of "HelloWorld" is globally mounted on "test.appswarm/my/path"
|
|
11
|
+
And a client accesses "http://test.appswarm/my/path" through "GlobalWebProxy"
|
|
12
|
+
Then the resulting html page contains "Hello World"
|
data/apps/home/home.rb
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
require 'http.rb'
|
|
2
|
+
|
|
3
|
+
class HomeApp<HTTPApp
|
|
4
|
+
def initialize(*ops)
|
|
5
|
+
super
|
|
6
|
+
# getApp(:webServer).add(self,getControllers[0],"/")
|
|
7
|
+
begin
|
|
8
|
+
getApp(:localWebServer).mount("/",createInstance("default")) #self,getControllers[0],"/")
|
|
9
|
+
rescue
|
|
10
|
+
end
|
|
11
|
+
end
|
|
12
|
+
end
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<html>
|
|
2
|
+
<head>
|
|
3
|
+
<%=css("home")%>
|
|
4
|
+
<%=css("menu")%>
|
|
5
|
+
</head>
|
|
6
|
+
<body>
|
|
7
|
+
<div id="AppSwarmBanner">
|
|
8
|
+
<div id="Box">Version 0.1</div>
|
|
9
|
+
<div id="Text">AppSwarm</div>
|
|
10
|
+
</div>
|
|
11
|
+
<%= render_partial(:menu)%>
|
|
12
|
+
<div id="Content">
|
|
13
|
+
<%=content%>
|
|
14
|
+
</div>
|
|
15
|
+
</body>
|
|
16
|
+
</html>
|
|
@@ -0,0 +1,240 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
<svg
|
|
4
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
5
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
6
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
7
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
8
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
9
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
10
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
width="80"
|
|
13
|
+
height="60"
|
|
14
|
+
id="svg2"
|
|
15
|
+
sodipodi:version="0.32"
|
|
16
|
+
inkscape:version="0.46"
|
|
17
|
+
version="1.0"
|
|
18
|
+
sodipodi:docname="Zeichnung.svg"
|
|
19
|
+
inkscape:output_extension="org.inkscape.output.svg.inkscape">
|
|
20
|
+
<defs
|
|
21
|
+
id="defs4">
|
|
22
|
+
<linearGradient
|
|
23
|
+
id="linearGradient3407">
|
|
24
|
+
<stop
|
|
25
|
+
id="stop3409"
|
|
26
|
+
offset="0"
|
|
27
|
+
style="stop-color:#ffaa00;stop-opacity:1;" />
|
|
28
|
+
<stop
|
|
29
|
+
style="stop-color:#000000;stop-opacity:1;"
|
|
30
|
+
offset="1"
|
|
31
|
+
id="stop3411" />
|
|
32
|
+
</linearGradient>
|
|
33
|
+
<linearGradient
|
|
34
|
+
id="linearGradient3399">
|
|
35
|
+
<stop
|
|
36
|
+
style="stop-color:#ffaa00;stop-opacity:1;"
|
|
37
|
+
offset="0"
|
|
38
|
+
id="stop3403" />
|
|
39
|
+
<stop
|
|
40
|
+
id="stop3405"
|
|
41
|
+
offset="1"
|
|
42
|
+
style="stop-color:#000000;stop-opacity:1;" />
|
|
43
|
+
</linearGradient>
|
|
44
|
+
<linearGradient
|
|
45
|
+
id="linearGradient3215">
|
|
46
|
+
<stop
|
|
47
|
+
id="stop3217"
|
|
48
|
+
offset="0"
|
|
49
|
+
style="stop-color:#000000;stop-opacity:1;" />
|
|
50
|
+
<stop
|
|
51
|
+
style="stop-color:#000000;stop-opacity:0.93170732;"
|
|
52
|
+
offset="0.29224515"
|
|
53
|
+
id="stop3219" />
|
|
54
|
+
<stop
|
|
55
|
+
id="stop3221"
|
|
56
|
+
offset="1"
|
|
57
|
+
style="stop-color:#000000;stop-opacity:0;" />
|
|
58
|
+
</linearGradient>
|
|
59
|
+
<linearGradient
|
|
60
|
+
id="linearGradient3199">
|
|
61
|
+
<stop
|
|
62
|
+
id="stop3201"
|
|
63
|
+
offset="0"
|
|
64
|
+
style="stop-color:#000000;stop-opacity:1;" />
|
|
65
|
+
<stop
|
|
66
|
+
style="stop-color:#000000;stop-opacity:0.93170732;"
|
|
67
|
+
offset="0.5"
|
|
68
|
+
id="stop3203" />
|
|
69
|
+
<stop
|
|
70
|
+
id="stop3205"
|
|
71
|
+
offset="1"
|
|
72
|
+
style="stop-color:#000000;stop-opacity:0;" />
|
|
73
|
+
</linearGradient>
|
|
74
|
+
<linearGradient
|
|
75
|
+
id="linearGradient3189">
|
|
76
|
+
<stop
|
|
77
|
+
style="stop-color:#000000;stop-opacity:1;"
|
|
78
|
+
offset="0"
|
|
79
|
+
id="stop3191" />
|
|
80
|
+
<stop
|
|
81
|
+
id="stop3197"
|
|
82
|
+
offset="0.5"
|
|
83
|
+
style="stop-color:#000000;stop-opacity:0.93170732;" />
|
|
84
|
+
<stop
|
|
85
|
+
style="stop-color:#000000;stop-opacity:0;"
|
|
86
|
+
offset="1"
|
|
87
|
+
id="stop3193" />
|
|
88
|
+
</linearGradient>
|
|
89
|
+
<linearGradient
|
|
90
|
+
id="linearGradient2385">
|
|
91
|
+
<stop
|
|
92
|
+
style="stop-color:#af5f06;stop-opacity:1;"
|
|
93
|
+
offset="0"
|
|
94
|
+
id="stop2387" />
|
|
95
|
+
<stop
|
|
96
|
+
id="stop3165"
|
|
97
|
+
offset="0.5"
|
|
98
|
+
style="stop-color:#ff9014;stop-opacity:1;" />
|
|
99
|
+
<stop
|
|
100
|
+
style="stop-color:#000000;stop-opacity:1;"
|
|
101
|
+
offset="1"
|
|
102
|
+
id="stop2389" />
|
|
103
|
+
</linearGradient>
|
|
104
|
+
<inkscape:perspective
|
|
105
|
+
sodipodi:type="inkscape:persp3d"
|
|
106
|
+
inkscape:vp_x="0 : 526.18109 : 1"
|
|
107
|
+
inkscape:vp_y="0 : 1000 : 0"
|
|
108
|
+
inkscape:vp_z="744.09448 : 526.18109 : 1"
|
|
109
|
+
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
|
|
110
|
+
id="perspective10" />
|
|
111
|
+
<radialGradient
|
|
112
|
+
inkscape:collect="always"
|
|
113
|
+
xlink:href="#linearGradient2385"
|
|
114
|
+
id="radialGradient3163"
|
|
115
|
+
cx="32.431679"
|
|
116
|
+
cy="40.261955"
|
|
117
|
+
fx="32.431679"
|
|
118
|
+
fy="40.261955"
|
|
119
|
+
r="40.106018"
|
|
120
|
+
gradientTransform="matrix(1.6899029,5.8843562e-2,-4.0068546e-2,1.1162967,-19.7324,-9.1972141)"
|
|
121
|
+
gradientUnits="userSpaceOnUse" />
|
|
122
|
+
<radialGradient
|
|
123
|
+
inkscape:collect="always"
|
|
124
|
+
xlink:href="#linearGradient3189"
|
|
125
|
+
id="radialGradient3195"
|
|
126
|
+
cx="71.605888"
|
|
127
|
+
cy="30.023851"
|
|
128
|
+
fx="71.605888"
|
|
129
|
+
fy="30.023851"
|
|
130
|
+
r="38.658894"
|
|
131
|
+
gradientTransform="matrix(0.3048129,-1.1524002e-8,7.8079889e-8,1.4278074,47.428832,-12.844424)"
|
|
132
|
+
gradientUnits="userSpaceOnUse" />
|
|
133
|
+
<radialGradient
|
|
134
|
+
inkscape:collect="always"
|
|
135
|
+
xlink:href="#linearGradient3189"
|
|
136
|
+
id="radialGradient3209"
|
|
137
|
+
gradientUnits="userSpaceOnUse"
|
|
138
|
+
gradientTransform="matrix(0.3048129,-1.1524002e-8,7.8079889e-8,1.4278074,47.635562,-13.051154)"
|
|
139
|
+
cx="-123.72321"
|
|
140
|
+
cy="30.023848"
|
|
141
|
+
fx="-123.72321"
|
|
142
|
+
fy="30.023848"
|
|
143
|
+
r="38.658894" />
|
|
144
|
+
<radialGradient
|
|
145
|
+
inkscape:collect="always"
|
|
146
|
+
xlink:href="#linearGradient3215"
|
|
147
|
+
id="radialGradient3213"
|
|
148
|
+
gradientUnits="userSpaceOnUse"
|
|
149
|
+
gradientTransform="matrix(1.6524061,1.0690725e-2,-9.6871785e-4,0.1497296,216.39931,28.226397)"
|
|
150
|
+
cx="-106.77367"
|
|
151
|
+
cy="-144.67525"
|
|
152
|
+
fx="-106.77367"
|
|
153
|
+
fy="-144.67525"
|
|
154
|
+
r="38.658894" />
|
|
155
|
+
<radialGradient
|
|
156
|
+
inkscape:collect="always"
|
|
157
|
+
xlink:href="#linearGradient3189"
|
|
158
|
+
id="radialGradient3353"
|
|
159
|
+
gradientUnits="userSpaceOnUse"
|
|
160
|
+
gradientTransform="matrix(1,0,0,0.7209302,1.240389,8.917217)"
|
|
161
|
+
cx="39.692554"
|
|
162
|
+
cy="28.990192"
|
|
163
|
+
fx="39.692554"
|
|
164
|
+
fy="28.990192"
|
|
165
|
+
r="35.557915" />
|
|
166
|
+
<filter
|
|
167
|
+
inkscape:collect="always"
|
|
168
|
+
id="filter3391">
|
|
169
|
+
<feGaussianBlur
|
|
170
|
+
inkscape:collect="always"
|
|
171
|
+
stdDeviation="1.9571126"
|
|
172
|
+
id="feGaussianBlur3393" />
|
|
173
|
+
</filter>
|
|
174
|
+
<linearGradient
|
|
175
|
+
inkscape:collect="always"
|
|
176
|
+
xlink:href="#linearGradient3407"
|
|
177
|
+
id="linearGradient3397"
|
|
178
|
+
x1="35.497009"
|
|
179
|
+
y1="54.369724"
|
|
180
|
+
x2="35.195824"
|
|
181
|
+
y2="-54.37133"
|
|
182
|
+
gradientUnits="userSpaceOnUse"
|
|
183
|
+
gradientTransform="translate(-0.413464,0.4134636)" />
|
|
184
|
+
</defs>
|
|
185
|
+
<sodipodi:namedview
|
|
186
|
+
id="base"
|
|
187
|
+
pagecolor="#ffffff"
|
|
188
|
+
bordercolor="#666666"
|
|
189
|
+
borderopacity="1.0"
|
|
190
|
+
inkscape:pageopacity="0.0"
|
|
191
|
+
inkscape:pageshadow="2"
|
|
192
|
+
inkscape:zoom="2.4185897"
|
|
193
|
+
inkscape:cx="10.988603"
|
|
194
|
+
inkscape:cy="56.739995"
|
|
195
|
+
inkscape:document-units="px"
|
|
196
|
+
inkscape:current-layer="layer1"
|
|
197
|
+
showgrid="false"
|
|
198
|
+
inkscape:window-width="1118"
|
|
199
|
+
inkscape:window-height="701"
|
|
200
|
+
inkscape:window-x="269"
|
|
201
|
+
inkscape:window-y="48" />
|
|
202
|
+
<metadata
|
|
203
|
+
id="metadata7">
|
|
204
|
+
<rdf:RDF>
|
|
205
|
+
<cc:Work
|
|
206
|
+
rdf:about="">
|
|
207
|
+
<dc:format>image/svg+xml</dc:format>
|
|
208
|
+
<dc:type
|
|
209
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
210
|
+
</cc:Work>
|
|
211
|
+
</rdf:RDF>
|
|
212
|
+
</metadata>
|
|
213
|
+
<g
|
|
214
|
+
inkscape:label="Ebene 1"
|
|
215
|
+
inkscape:groupmode="layer"
|
|
216
|
+
id="layer1">
|
|
217
|
+
<rect
|
|
218
|
+
style="fill:#ff9900;fill-opacity:1;stroke:none"
|
|
219
|
+
id="rect3395"
|
|
220
|
+
width="80.625496"
|
|
221
|
+
height="60.779221"
|
|
222
|
+
x="9.8628072e-07"
|
|
223
|
+
y="0.047707025" />
|
|
224
|
+
<rect
|
|
225
|
+
style="fill:#000000;fill-opacity:1;stroke:url(#radialGradient3353);filter:url(#filter3391)"
|
|
226
|
+
id="rect3349"
|
|
227
|
+
width="71.115829"
|
|
228
|
+
height="51.269547"
|
|
229
|
+
x="5.37503"
|
|
230
|
+
y="4.1823478"
|
|
231
|
+
transform="matrix(1.0850458,0,0,1.1011312,-3.244048,-2.4437569)" />
|
|
232
|
+
<rect
|
|
233
|
+
style="fill:url(#linearGradient3397);fill-opacity:1;stroke:none;stroke-width:1.09305893999999992;stroke-opacity:1"
|
|
234
|
+
id="rect2383"
|
|
235
|
+
width="77.163933"
|
|
236
|
+
height="56.454502"
|
|
237
|
+
x="1.7260165"
|
|
238
|
+
y="2.5750213" />
|
|
239
|
+
</g>
|
|
240
|
+
</svg>
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Document : home
|
|
3
|
+
Created on : 07.03.2009, 16:38:47
|
|
4
|
+
Author : davidkamphausen
|
|
5
|
+
Description:
|
|
6
|
+
Purpose of the stylesheet follows.
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
/*
|
|
10
|
+
TODO customize this sample style
|
|
11
|
+
Syntax recommendation http://www.w3.org/TR/REC-CSS2/
|
|
12
|
+
*/
|
|
13
|
+
|
|
14
|
+
root {
|
|
15
|
+
display: block;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
body {
|
|
19
|
+
font-family: Helvetica;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
hr {
|
|
23
|
+
border-color:#FF9900;
|
|
24
|
+
border-style:groove;
|
|
25
|
+
border-width:2px;
|
|
26
|
+
padding:5px;
|
|
27
|
+
border-top-width:0px;
|
|
28
|
+
border-right-width:0px;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
p {
|
|
32
|
+
font-size:13px;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
div#AppSwarmBanner
|
|
36
|
+
{
|
|
37
|
+
height:50px;
|
|
38
|
+
position:fixed;
|
|
39
|
+
top:0px;
|
|
40
|
+
left:0px;
|
|
41
|
+
background-color:#FF9900;
|
|
42
|
+
width:100%;
|
|
43
|
+
text-align:right;
|
|
44
|
+
padding-right:15px;
|
|
45
|
+
border-color:#CC7700;
|
|
46
|
+
border-bottom-width:1px;
|
|
47
|
+
border-bottom-style:solid;
|
|
48
|
+
}
|
|
49
|
+
div#AppSwarmBanner div#Box
|
|
50
|
+
{
|
|
51
|
+
background-color:#FFBB00;
|
|
52
|
+
position:fixed;
|
|
53
|
+
right:0px;
|
|
54
|
+
width:250px;
|
|
55
|
+
height:15px;
|
|
56
|
+
top:0px;
|
|
57
|
+
border-color:#000000;
|
|
58
|
+
border-width:0px;
|
|
59
|
+
border-bottom-width:1px;
|
|
60
|
+
border-left-width:1px;
|
|
61
|
+
border-style:solid;
|
|
62
|
+
font-size:12px;
|
|
63
|
+
padding-top:1px;
|
|
64
|
+
padding-right:8px;
|
|
65
|
+
}
|
|
66
|
+
div#Text
|
|
67
|
+
{
|
|
68
|
+
margin-right:20px;
|
|
69
|
+
margin-top:8px;
|
|
70
|
+
font-size:30px;
|
|
71
|
+
font-family:Helvetica;
|
|
72
|
+
float:right;
|
|
73
|
+
color:#AA6600;
|
|
74
|
+
position:fixed;
|
|
75
|
+
top:6px;
|
|
76
|
+
right:-10px;
|
|
77
|
+
}
|
|
78
|
+
div#Content
|
|
79
|
+
{
|
|
80
|
+
margin-top:65px;
|
|
81
|
+
padding-top:0px;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
div.appButtons
|
|
87
|
+
{
|
|
88
|
+
width:600px;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
div.appButton
|
|
92
|
+
{
|
|
93
|
+
width:180px;
|
|
94
|
+
height:5em;
|
|
95
|
+
float:left;
|
|
96
|
+
border: 1px solid #0000FF;
|
|
97
|
+
background-color:#AAAAFF;
|
|
98
|
+
text-align:center;
|
|
99
|
+
margin:5px;
|
|
100
|
+
vertical-align:middle;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
div.appButton div.title
|
|
104
|
+
{
|
|
105
|
+
font-size:12px;
|
|
106
|
+
background-color:#FFAA00;
|
|
107
|
+
margin-bottom:5px;
|
|
108
|
+
}
|
|
109
|
+
div.appButton div.name
|
|
110
|
+
{
|
|
111
|
+
font-style:italic;
|
|
112
|
+
}
|
|
113
|
+
div.appButton div.link
|
|
114
|
+
{
|
|
115
|
+
text-align:right;
|
|
116
|
+
font-size:12px;
|
|
117
|
+
border:2px groove;
|
|
118
|
+
margin:1px;
|
|
119
|
+
margin-top:20px;
|
|
120
|
+
padding:2px;
|
|
121
|
+
width:6em;
|
|
122
|
+
float:right;
|
|
123
|
+
}
|
|
124
|
+
div.appButton a
|
|
125
|
+
{
|
|
126
|
+
font-style:normal;
|
|
127
|
+
text-decoration:none;
|
|
128
|
+
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
div.endFloat
|
|
132
|
+
{
|
|
133
|
+
clear:both;
|
|
134
|
+
}
|