advertnet 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (159) hide show
  1. data/LICENSE +674 -0
  2. data/README +257 -0
  3. data/Rakefile +10 -0
  4. data/app/controllers/application.rb +40 -0
  5. data/app/controllers/container_controller.rb +83 -0
  6. data/app/controllers/content_controller.rb +61 -0
  7. data/app/controllers/furnitures_controller.rb +87 -0
  8. data/app/controllers/networks_controller.rb +269 -0
  9. data/app/controllers/objects_in_world_controller.rb +27 -0
  10. data/app/controllers/panels_controller.rb +186 -0
  11. data/app/helpers/application_helper.rb +31 -0
  12. data/app/helpers/container_helper.rb +2 -0
  13. data/app/helpers/content_helper.rb +2 -0
  14. data/app/helpers/furnitures_helper.rb +2 -0
  15. data/app/helpers/network_helper.rb +2 -0
  16. data/app/helpers/networks_helper.rb +2 -0
  17. data/app/helpers/objects_in_world_helper.rb +2 -0
  18. data/app/helpers/panels_helper.rb +2 -0
  19. data/app/models/container.rb +51 -0
  20. data/app/models/furniture.rb +60 -0
  21. data/app/models/mailer.rb +22 -0
  22. data/app/models/network.rb +38 -0
  23. data/app/models/object_in_world.rb +60 -0
  24. data/app/models/object_off_world.rb +77 -0
  25. data/app/models/panel.rb +136 -0
  26. data/app/models/panel_revision.rb +108 -0
  27. data/app/views/container/list.rhtml +27 -0
  28. data/app/views/container/show.rhtml +8 -0
  29. data/app/views/content/_form.rhtml +12 -0
  30. data/app/views/content/edit.rhtml +8 -0
  31. data/app/views/content/list.rhtml +26 -0
  32. data/app/views/content/new.rhtml +8 -0
  33. data/app/views/furnitures/list.rhtml +51 -0
  34. data/app/views/furnitures/show.rhtml +7 -0
  35. data/app/views/layouts/default.rhtml +30 -0
  36. data/app/views/mailer/avtouch.rhtml +1 -0
  37. data/app/views/networks/_form.rhtml +11 -0
  38. data/app/views/networks/_parameters_form.rhtml +8 -0
  39. data/app/views/networks/edit.rhtml +9 -0
  40. data/app/views/networks/list.rhtml +25 -0
  41. data/app/views/networks/new.rhtml +8 -0
  42. data/app/views/networks/show.rhtml +72 -0
  43. data/app/views/networks/show_parameters_form.rjs +5 -0
  44. data/app/views/objects_in_world/list.rhtml +30 -0
  45. data/app/views/objects_in_world/show.rhtml +8 -0
  46. data/app/views/panels/list.rhtml +48 -0
  47. data/app/views/panels/show.rhtml +8 -0
  48. data/bin/advertnet-install +144 -0
  49. data/config/boot.rb +45 -0
  50. data/config/database.yml.default +43 -0
  51. data/config/environment.rb +67 -0
  52. data/config/environments/development.rb +21 -0
  53. data/config/environments/production.rb +21 -0
  54. data/config/environments/test.rb +19 -0
  55. data/config/routes.rb +23 -0
  56. data/db/migrate/001_create_networks.rb +14 -0
  57. data/db/migrate/002_create_furnitures.rb +17 -0
  58. data/db/migrate/003_create_containers.rb +16 -0
  59. data/db/migrate/004_create_objects_in_world.rb +16 -0
  60. data/db/migrate/005_create_objects_off_world.rb +16 -0
  61. data/db/migrate/006_create_panels.rb +17 -0
  62. data/db/migrate/007_join_objects_in_world_panels.rb +17 -0
  63. data/db/migrate/008_join_objects_off_world_panels.rb +17 -0
  64. data/db/migrate/009_add_sessions.rb +19 -0
  65. data/db/migrate/010_add_or_rename_fields.rb +25 -0
  66. data/db/migrate/011_move_texture_to_object_in_world.rb +25 -0
  67. data/db/migrate/012_add_permanent_furniture_id.rb +18 -0
  68. data/db/migrate/013_create_panel_revisions.rb +42 -0
  69. data/db/schema.rb +102 -0
  70. data/doc/README_FOR_APP +108 -0
  71. data/lib/advertnet.rb +13 -0
  72. data/lib/second_life_validators.rb +89 -0
  73. data/lib/tasks/documentation.rake +16 -0
  74. data/lib/tasks/extract_fixtures.rake +23 -0
  75. data/lib/tasks/load_exported_fixtures.rake +14 -0
  76. data/public/404.html +30 -0
  77. data/public/500.html +30 -0
  78. data/public/dispatch.cgi +10 -0
  79. data/public/dispatch.fcgi +24 -0
  80. data/public/dispatch.rb +10 -0
  81. data/public/favicon.ico +0 -0
  82. data/public/images/rails.png +0 -0
  83. data/public/javascripts/application.js +2 -0
  84. data/public/javascripts/controls.js +833 -0
  85. data/public/javascripts/dragdrop.js +942 -0
  86. data/public/javascripts/effects.js +1088 -0
  87. data/public/javascripts/prototype.js +2515 -0
  88. data/public/robots.txt +1 -0
  89. data/public/stylesheets/application.css +25 -0
  90. data/public/stylesheets/scaffold.css +74 -0
  91. data/script/about +3 -0
  92. data/script/breakpointer +3 -0
  93. data/script/console +3 -0
  94. data/script/destroy +3 -0
  95. data/script/generate +3 -0
  96. data/script/performance/benchmarker +3 -0
  97. data/script/performance/profiler +3 -0
  98. data/script/plugin +3 -0
  99. data/script/process/inspector +3 -0
  100. data/script/process/reaper +3 -0
  101. data/script/process/spawner +3 -0
  102. data/script/runner +3 -0
  103. data/script/server +3 -0
  104. data/test/fixtures/containers.yml +44 -0
  105. data/test/fixtures/furnitures.yml +47 -0
  106. data/test/fixtures/mailer/avtouch +1 -0
  107. data/test/fixtures/networks.yml +31 -0
  108. data/test/fixtures/objects_in_world.yml +71 -0
  109. data/test/fixtures/objects_in_world_panels.yml +43 -0
  110. data/test/fixtures/objects_off_world.yml +55 -0
  111. data/test/fixtures/objects_off_world_panels.yml +20 -0
  112. data/test/fixtures/panel_revisions.yml +28 -0
  113. data/test/fixtures/panels.yml +79 -0
  114. data/test/functional/container_controller_test.rb +167 -0
  115. data/test/functional/content_controller_test.rb +91 -0
  116. data/test/functional/furnitures_controller_test.rb +134 -0
  117. data/test/functional/networks_controller_test.rb +248 -0
  118. data/test/functional/objects_in_world_controller_test.rb +42 -0
  119. data/test/functional/panels_controller_test.rb +173 -0
  120. data/test/test_helper.rb +53 -0
  121. data/test/unit/container_test.rb +53 -0
  122. data/test/unit/furniture_test.rb +68 -0
  123. data/test/unit/mailer_test.rb +40 -0
  124. data/test/unit/network_test.rb +42 -0
  125. data/test/unit/object_in_world_test.rb +33 -0
  126. data/test/unit/object_off_world_test.rb +26 -0
  127. data/test/unit/panel_revision_test.rb +148 -0
  128. data/test/unit/panel_test.rb +63 -0
  129. data/vendor/plugins/annotate_models/ChangeLog +46 -0
  130. data/vendor/plugins/annotate_models/README +31 -0
  131. data/vendor/plugins/annotate_models/lib/annotate_models.rb +132 -0
  132. data/vendor/plugins/annotate_models/tasks/annotate_models_tasks.rake +7 -0
  133. data/vendor/plugins/foreign_key_migrations/CHANGELOG +99 -0
  134. data/vendor/plugins/foreign_key_migrations/MIT-LICENSE +20 -0
  135. data/vendor/plugins/foreign_key_migrations/README +87 -0
  136. data/vendor/plugins/foreign_key_migrations/about.yml +5 -0
  137. data/vendor/plugins/foreign_key_migrations/init.rb +3 -0
  138. data/vendor/plugins/foreign_key_migrations/install.rb +1 -0
  139. data/vendor/plugins/foreign_key_migrations/lib/red_hill_consulting/foreign_key_migrations/active_record/base.rb +22 -0
  140. data/vendor/plugins/foreign_key_migrations/lib/red_hill_consulting/foreign_key_migrations/active_record/connection_adapters/abstract_adapter.rb +22 -0
  141. data/vendor/plugins/foreign_key_migrations/lib/red_hill_consulting/foreign_key_migrations/active_record/connection_adapters/table_definition.rb +28 -0
  142. data/vendor/plugins/redhillonrails_core/CHANGELOG +154 -0
  143. data/vendor/plugins/redhillonrails_core/MIT-LICENSE +20 -0
  144. data/vendor/plugins/redhillonrails_core/README +139 -0
  145. data/vendor/plugins/redhillonrails_core/init.rb +19 -0
  146. data/vendor/plugins/redhillonrails_core/lib/red_hill_consulting/core/active_record/base.rb +54 -0
  147. data/vendor/plugins/redhillonrails_core/lib/red_hill_consulting/core/active_record/connection_adapters/abstract_adapter.rb +31 -0
  148. data/vendor/plugins/redhillonrails_core/lib/red_hill_consulting/core/active_record/connection_adapters/column.rb +21 -0
  149. data/vendor/plugins/redhillonrails_core/lib/red_hill_consulting/core/active_record/connection_adapters/foreign_key_definition.rb +26 -0
  150. data/vendor/plugins/redhillonrails_core/lib/red_hill_consulting/core/active_record/connection_adapters/index_definition.rb +11 -0
  151. data/vendor/plugins/redhillonrails_core/lib/red_hill_consulting/core/active_record/connection_adapters/mysql_adapter.rb +82 -0
  152. data/vendor/plugins/redhillonrails_core/lib/red_hill_consulting/core/active_record/connection_adapters/mysql_column.rb +8 -0
  153. data/vendor/plugins/redhillonrails_core/lib/red_hill_consulting/core/active_record/connection_adapters/postgresql_adapter.rb +107 -0
  154. data/vendor/plugins/redhillonrails_core/lib/red_hill_consulting/core/active_record/connection_adapters/schema_statements.rb +23 -0
  155. data/vendor/plugins/redhillonrails_core/lib/red_hill_consulting/core/active_record/connection_adapters/sqlite3_adapter.rb +9 -0
  156. data/vendor/plugins/redhillonrails_core/lib/red_hill_consulting/core/active_record/connection_adapters/table_definition.rb +27 -0
  157. data/vendor/plugins/redhillonrails_core/lib/red_hill_consulting/core/active_record/schema.rb +27 -0
  158. data/vendor/plugins/redhillonrails_core/lib/red_hill_consulting/core/active_record/schema_dumper.rb +47 -0
  159. metadata +290 -0
data/public/robots.txt ADDED
@@ -0,0 +1 @@
1
+ # See http://www.robotstxt.org/wc/norobots.html for documentation on how to use the robots.txt file
@@ -0,0 +1,25 @@
1
+ /* Feuille de style Webia */
2
+
3
+ #network-inactive {
4
+ width: 300px;
5
+ border: 2px solid red;
6
+ padding: 4px;
7
+ margin-bottom: 20px;
8
+ background-color: #f0f0f0;
9
+ }
10
+
11
+ #network-empty {
12
+ width: 300px;
13
+ border: 2px solid grey;
14
+ padding: 4px;
15
+ margin-bottom: 20px;
16
+ background-color: #f0f0f0;
17
+ }
18
+
19
+ #board-list {
20
+ }
21
+
22
+ #board-list table {
23
+ background-color: #F5F5F5;
24
+ border: 2px solid black;
25
+ }
@@ -0,0 +1,74 @@
1
+ body { background-color: #fff; color: #333; }
2
+
3
+ body, p, ol, ul, td {
4
+ font-family: verdana, arial, helvetica, sans-serif;
5
+ font-size: 13px;
6
+ line-height: 18px;
7
+ }
8
+
9
+ pre {
10
+ background-color: #eee;
11
+ padding: 10px;
12
+ font-size: 11px;
13
+ }
14
+
15
+ a { color: #000; }
16
+ a:visited { color: #666; }
17
+ a:hover { color: #fff; background-color:#000; }
18
+
19
+ .fieldWithErrors {
20
+ padding: 2px;
21
+ background-color: red;
22
+ display: table;
23
+ }
24
+
25
+ #errorExplanation {
26
+ width: 400px;
27
+ border: 2px solid red;
28
+ padding: 7px;
29
+ padding-bottom: 12px;
30
+ margin-bottom: 20px;
31
+ background-color: #f0f0f0;
32
+ }
33
+
34
+ #errorExplanation h2 {
35
+ text-align: left;
36
+ font-weight: bold;
37
+ padding: 5px 5px 5px 15px;
38
+ font-size: 12px;
39
+ margin: -7px;
40
+ background-color: #c00;
41
+ color: #fff;
42
+ }
43
+
44
+ #errorExplanation p {
45
+ color: #333;
46
+ margin-bottom: 0;
47
+ padding: 5px;
48
+ }
49
+
50
+ #errorExplanation ul li {
51
+ font-size: 12px;
52
+ list-style: square;
53
+ }
54
+
55
+ div.uploadStatus {
56
+ margin: 5px;
57
+ }
58
+
59
+ div.progressBar {
60
+ margin: 5px;
61
+ }
62
+
63
+ div.progressBar div.border {
64
+ background-color: #fff;
65
+ border: 1px solid grey;
66
+ width: 100%;
67
+ }
68
+
69
+ div.progressBar div.background {
70
+ background-color: #333;
71
+ height: 18px;
72
+ width: 0%;
73
+ }
74
+
data/script/about ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/about'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/breakpointer'
data/script/console ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/console'
data/script/destroy ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/destroy'
data/script/generate ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/generate'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../../config/boot'
3
+ require 'commands/performance/benchmarker'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../../config/boot'
3
+ require 'commands/performance/profiler'
data/script/plugin ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/plugin'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../../config/boot'
3
+ require 'commands/process/inspector'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../../config/boot'
3
+ require 'commands/process/reaper'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../../config/boot'
3
+ require 'commands/process/spawner'
data/script/runner ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/runner'
data/script/server ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/server'
@@ -0,0 +1,44 @@
1
+ # == Schema Information
2
+ # Schema version: 13
3
+ #
4
+ # Table name: containers
5
+ #
6
+ # id :integer(11) not null, primary key
7
+ # container_key :string(64) not null
8
+ # sim :string(64) not null
9
+ # name :string(64) not null
10
+ # position :string(40) not null
11
+ # delay :integer(11) default(30), not null
12
+ # created_at :datetime
13
+ # updated_at :datetime
14
+ #
15
+
16
+ # Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
17
+ container_1:
18
+ name: Container 1
19
+ updated_at: 2007-08-15 17:02:22
20
+ sim: La Plaine
21
+ delay: "30"
22
+ container_key: 6944b90e-8835-068b-1cf4-ba1c4061935a
23
+ id: "1"
24
+ position: "10,40,50"
25
+ created_at: 2007-08-15 16:33:00
26
+ container_2:
27
+ name: Container 2
28
+ updated_at: 2007-08-15 17:03:14
29
+ sim: La Plaine
30
+ delay: "30"
31
+ container_key: 719f273c-88c1-3dbb-96ff-165141017474
32
+ id: "2"
33
+ position: "30,56,70"
34
+ created_at: 2007-08-15 17:02:00
35
+ container_empty:
36
+ name: Container empty
37
+ updated_at: 2007-08-14 14:03:14
38
+ sim: La Plaine
39
+ delay: "30"
40
+ container_key: 61fbc6dc-c079-62b1-c87f-66f66110082d
41
+ id: "3"
42
+ position: "40,33,170"
43
+ created_at: 2007-08-13 10:02:00
44
+
@@ -0,0 +1,47 @@
1
+ # == Schema Information
2
+ # Schema version: 13
3
+ #
4
+ # Table name: furnitures
5
+ #
6
+ # id :integer(11) not null, primary key
7
+ # name :string(64) not null
8
+ # furniture_key :string(36) not null
9
+ # sim :string(64) not null
10
+ # position :string(40) not null
11
+ # delay :integer(11) default(30), not null
12
+ # created_at :datetime
13
+ # updated_at :datetime
14
+ # permanent_id :integer(11)
15
+ #
16
+
17
+ # Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
18
+ furniture_1:
19
+ name: Furniture 1
20
+ updated_at: 2007-08-15 16:21:49
21
+ sim: Ici
22
+ delay: "30"
23
+ furniture_key: 6a07dfe6-db90-d2ad-0005-c8d657aefce8
24
+ id: "1"
25
+ permanent_id: 1
26
+ position: "1,2,3"
27
+ created_at: 2007-07-06 17:55:00
28
+ furniture_casino:
29
+ name: CC - 4x3 Casino
30
+ updated_at: 2007-08-15 15:30:20
31
+ sim: Myeon
32
+ delay: "30"
33
+ furniture_key: ec384982-68a0-8ec9-8eb6-e7d462cb9d4e
34
+ id: "7"
35
+ permanent_id: 2
36
+ position: "33,2,136"
37
+ created_at: 2007-07-07 01:05:00
38
+ furniture_palace:
39
+ name: CC - 4x3 Palace
40
+ updated_at: 2007-07-07 01:21:41
41
+ sim: Kyle
42
+ delay: "30"
43
+ furniture_key: e390ab08-43bc-194f-ff79-3106e9310917
44
+ id: "3"
45
+ permanent_id: 3
46
+ position: "67,102,57"
47
+ created_at: 2007-07-07 01:21:41
@@ -0,0 +1 @@
1
+ '147d465d-b625-7f9a-ce06-18fcbd1d9d44',face,cc pan
@@ -0,0 +1,31 @@
1
+ # == Schema Information
2
+ # Schema version: 13
3
+ #
4
+ # Table name: networks
5
+ #
6
+ # id :integer(11) not null, primary key
7
+ # name :string(64) not null
8
+ # active :boolean(1) default(TRUE), not null
9
+ # created_at :datetime
10
+ # updated_at :datetime
11
+ #
12
+
13
+ # Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
14
+ network_1:
15
+ name: Network 1
16
+ updated_at: 2007-08-15 15:06:02
17
+ id: "1"
18
+ created_at: 2007-03-02 16:18:00
19
+ active: "1"
20
+ network_2:
21
+ name: Network 2
22
+ updated_at: 2007-08-15 15:06:13
23
+ id: "2"
24
+ created_at: 2007-07-06 16:33:00
25
+ active: "1"
26
+ disabled_network:
27
+ name: Disabled network
28
+ updated_at: 2007-08-15 15:06:37
29
+ id: "3"
30
+ created_at: 2007-08-15 15:06:00
31
+ active: "0"
@@ -0,0 +1,71 @@
1
+ # == Schema Information
2
+ # Schema version: 13
3
+ #
4
+ # Table name: objects_in_world
5
+ #
6
+ # id :integer(11) not null, primary key
7
+ # name :string(64) not null
8
+ # object_key :string(36) not null
9
+ # otype :string(16) not null
10
+ # container_id :integer(11) not null
11
+ # created_at :datetime
12
+ # updated_at :datetime
13
+ #
14
+
15
+ # Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
16
+ logo_pu:
17
+ name: Logo PU
18
+ updated_at: 2007-08-15 18:20:50
19
+ otype: texture
20
+ object_key: 55916f63-84f7-a41f-c5ed-5acd8b1492a4
21
+ container_id: "1"
22
+ id: "2"
23
+ created_at: 2007-08-15 18:20:50
24
+ getting_money:
25
+ name: Getting Money in Second Life
26
+ updated_at: 2007-08-15 18:22:26
27
+ otype: notecard
28
+ object_key: 28bd6787-143c-7d2f-42f5-8b9dccca2140
29
+ container_id: "1"
30
+ id: "3"
31
+ created_at: 2007-08-15 18:22:26
32
+ cc_logo:
33
+ name: cc-logo
34
+ updated_at: 2007-08-15 19:32:23
35
+ otype: texture
36
+ object_key: bc170679-bac8-33bf-c2d7-1b51ad9bb46c
37
+ container_id: "2"
38
+ id: "4"
39
+ created_at: 2007-08-15 19:32:23
40
+ cc_pan:
41
+ name: cc pan
42
+ updated_at: 2007-08-15 19:32:55
43
+ otype: landmark
44
+ object_key: 146bbf59-f9ef-d6f4-2a18-2a7e94bb2b79
45
+ container_id: "2"
46
+ id: "5"
47
+ created_at: 2007-08-15 19:32:55
48
+ default_texture:
49
+ name: default
50
+ updated_at: 2007-08-15 17:07:40
51
+ otype: texture
52
+ object_key: caaf0b85-b869-d344-8573-d260a50f635d
53
+ container_id: "1"
54
+ id: "1"
55
+ created_at: 2007-08-15 17:07:40
56
+ readme:
57
+ name: README
58
+ updated_at: 2007-09-11 18:22:26
59
+ otype: notecard
60
+ object_key: c41422dc-90b2-edaf-d076-f60dfe7a7277
61
+ container_id: "2"
62
+ id: "6"
63
+ created_at: 2007-09-11 18:22:26
64
+ paris:
65
+ name: Paris
66
+ updated_at: 2007-09-11 18:22:26
67
+ otype: landmark
68
+ object_key: 81997df5-5053-677b-7629-9d7fa13029e7
69
+ container_id: "1"
70
+ id: "7"
71
+ created_at: 2007-09-11 18:22:26
@@ -0,0 +1,43 @@
1
+ # Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
2
+ objects_in_world_panels_004:
3
+ panel_id: "1"
4
+ object_in_world_id: "3"
5
+ objects_in_world_panels_005:
6
+ panel_id: "3"
7
+ object_in_world_id: "3"
8
+ objects_in_world_panels_006:
9
+ panel_id: "5"
10
+ object_in_world_id: "3"
11
+ objects_in_world_panels_007:
12
+ panel_id: "1"
13
+ object_in_world_id: "1"
14
+ objects_in_world_panels_008:
15
+ panel_id: "2"
16
+ object_in_world_id: "4"
17
+ objects_in_world_panels_010:
18
+ panel_id: "4"
19
+ object_in_world_id: "1"
20
+ objects_in_world_panels_009:
21
+ panel_id: "3"
22
+ object_in_world_id: "1"
23
+ objects_in_world_panels_011:
24
+ panel_id: "5"
25
+ object_in_world_id: "1"
26
+ objects_in_world_panels_012:
27
+ panel_id: "6"
28
+ object_in_world_id: "4"
29
+ objects_in_world_panels_001:
30
+ panel_id: "1"
31
+ object_in_world_id: "5"
32
+ objects_in_world_panels_013:
33
+ panel_id: "7"
34
+ object_in_world_id: "4"
35
+ objects_in_world_panels_002:
36
+ panel_id: "3"
37
+ object_in_world_id: "5"
38
+ objects_in_world_panels_014:
39
+ panel_id: "8"
40
+ object_in_world_id: "1"
41
+ objects_in_world_panels_003:
42
+ panel_id: "5"
43
+ object_in_world_id: "5"
@@ -0,0 +1,55 @@
1
+ # == Schema Information
2
+ # Schema version: 13
3
+ #
4
+ # Table name: objects_off_world
5
+ #
6
+ # id :integer(11) not null, primary key
7
+ # name :string(64) not null
8
+ # object_key :string(36) not null
9
+ # otype :string(16) not null
10
+ # content :text
11
+ # created_at :datetime
12
+ # updated_at :datetime
13
+ #
14
+
15
+ # Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
16
+ lacoste:
17
+ name: Lacoste
18
+ updated_at: 2007-08-15 18:11:10
19
+ otype: url
20
+ object_key: 10a2179a-084c-0f5e-b956-d3273402eff7
21
+ id: "1"
22
+ content: http://www.lacoste.com/
23
+ created_at: 2007-08-15 17:50:00
24
+ cchest:
25
+ name: cchest
26
+ updated_at: 2007-08-15 18:12:01
27
+ otype: url
28
+ object_key: 4c61ae96-1d7a-c023-9668-7cb0a7223cbc
29
+ id: "2"
30
+ content: http://www.community-chest.com/
31
+ created_at: 2007-08-15 18:11:00
32
+ crao:
33
+ name: crao
34
+ updated_at: 2007-08-15 18:12:21
35
+ otype: url
36
+ object_key: 33bbb64d-1ef2-c45b-f689-d250307209ab
37
+ id: "3"
38
+ content: http://www.crao.net/
39
+ created_at: 2007-08-15 18:12:00
40
+ ce:
41
+ name: CE
42
+ updated_at: 2007-08-15 18:12:45
43
+ otype: url
44
+ object_key: 99e2071e-4e26-effe-42ac-aec7e3dac54f
45
+ id: "4"
46
+ content: http://slurl.com/secondlife/Black/193/91/113
47
+ created_at: 2007-08-15 18:12:00
48
+ glop_media:
49
+ name: Glop media
50
+ updated_at: 2007-09-05 18:12:45
51
+ otype: mediaurl
52
+ object_key: 99e2071e-4e26-effe-42ac-aec7e3dac54f
53
+ id: "5"
54
+ content: http://www.glop.com
55
+ created_at: 2007-09-05 18:12:00