compages 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (257) hide show
  1. data/.project +18 -0
  2. data/README +180 -0
  3. data/Rakefile +10 -0
  4. data/app/controllers/application.rb +4 -0
  5. data/app/controllers/contents_controller.rb +116 -0
  6. data/app/controllers/pages_controller.rb +59 -0
  7. data/app/controllers/render_controller.rb +24 -0
  8. data/app/helpers/application_helper.rb +6 -0
  9. data/app/helpers/contents_helper.rb +5 -0
  10. data/app/helpers/pages_helper.rb +5 -0
  11. data/app/helpers/render_helper.rb +2 -0
  12. data/app/models/content.rb +26 -0
  13. data/app/models/meta_data.rb +3 -0
  14. data/app/models/page.rb +106 -0
  15. data/app/models/page_element.rb +9 -0
  16. data/app/views/contents/_content_preview.rhtml +1 -0
  17. data/app/views/contents/_contents_list.rhtml +3 -0
  18. data/app/views/contents/_show_library.rhtml +60 -0
  19. data/app/views/contents/_write_now.rhtml +42 -0
  20. data/app/views/layouts/pages.rhtml +24 -0
  21. data/app/views/layouts/render.rhtml +11 -0
  22. data/app/views/pages/_change_theme.rhtml +0 -0
  23. data/app/views/pages/_edit_menu.rhtml +62 -0
  24. data/app/views/pages/_page_listed.rhtml +13 -0
  25. data/app/views/pages/_select_theme.rhtml +4 -0
  26. data/app/views/pages/edit.rhtml +35 -0
  27. data/app/views/pages/index.rhtml +45 -0
  28. data/app/views/pages/list.rhtml +41 -0
  29. data/app/views/pages/list_a.rhtml +40 -0
  30. data/app/views/pages/welcome.rhtml +27 -0
  31. data/app/views/render/_blank.rhtml +3 -0
  32. data/app/views/render/show.rhtml +1 -0
  33. data/bin/compages +14 -0
  34. data/config/boot.rb +44 -0
  35. data/config/database.yml.home +35 -0
  36. data/config/environment.rb +53 -0
  37. data/config/environments/development.rb +21 -0
  38. data/config/environments/production.rb +18 -0
  39. data/config/environments/test.rb +19 -0
  40. data/config/routes.rb +32 -0
  41. data/db/Copia di schema.rb +48 -0
  42. data/db/migrate/001_create_pages.rb +12 -0
  43. data/db/migrate/002_create_contents.rb +12 -0
  44. data/db/migrate/003_create_meta_datas.rb +14 -0
  45. data/db/migrate/004_create_page_elements.rb +17 -0
  46. data/db/migrate/005_add_urlnames.rb +15 -0
  47. data/db/migrate/006_add_sessions.rb +15 -0
  48. data/db/schema.mysql.sql +65 -0
  49. data/db/schema.postgresql.sql +65 -0
  50. data/db/schema.rb +49 -0
  51. data/db/schema.sqlite.sql +65 -0
  52. data/db/schema.sqlserver.sql +71 -0
  53. data/db/schema_version +1 -0
  54. data/doc/ER-model/v1.dia +0 -0
  55. data/doc/ER-model/v2.dia +0 -0
  56. data/doc/ER-model/v3.dia +0 -0
  57. data/doc/README_FOR_APP +2 -0
  58. data/doc/esempi/doc-vir/ecds.htm +2362 -0
  59. data/doc/esempi/doc-vir/ecds_files/search.gif +0 -0
  60. data/doc/esempi/doc-vir/ecds_files/upld.gif +0 -0
  61. data/doc/esempi/doc-vir/ecds_files/upld.jpg +0 -0
  62. data/installer/apache13.conf.example.template +33 -0
  63. data/installer/apache20.conf.example.template +40 -0
  64. data/installer/lighttpd.conf.example.template +6 -0
  65. data/installer/rails_installer_defaults.yml +5 -0
  66. data/lib/redcloth.rb +1130 -0
  67. data/lib/render_engine.rb +94 -0
  68. data/lib/tasks/release.rake +46 -0
  69. data/public/.htaccess +41 -0
  70. data/public/404.html +8 -0
  71. data/public/500.html +8 -0
  72. data/public/_index.html +277 -0
  73. data/public/favicon.ico +0 -0
  74. data/public/images/body_bg.gif +0 -0
  75. data/public/images/body_bg_short.gif +0 -0
  76. data/public/images/ie_shadow.png +0 -0
  77. data/public/images/journal_reflex.gif +0 -0
  78. data/public/images/journal_shadow.gif +0 -0
  79. data/public/images/logo_journal_small.bmp +0 -0
  80. data/public/images/logo_journal_small.png +0 -0
  81. data/public/images/page_edit_shadow.png +0 -0
  82. data/public/images/restore_bar.png +0 -0
  83. data/public/images/spinner.gif +0 -0
  84. data/public/javascripts/application.js +23 -0
  85. data/public/javascripts/controls.js +815 -0
  86. data/public/javascripts/dragdrop.js +913 -0
  87. data/public/javascripts/effects.js +958 -0
  88. data/public/javascripts/lowpro.js +307 -0
  89. data/public/javascripts/prototype.js +2006 -0
  90. data/public/robots.txt +1 -0
  91. data/public/stylesheets/compages.css +196 -0
  92. data/public/stylesheets/editing.css +180 -0
  93. data/public/stylesheets/editing_ie_filth.css +36 -0
  94. data/public/themes/Doc_basic/_script.js +342 -0
  95. data/public/themes/Doc_basic/images/Thumbs.db +0 -0
  96. data/public/themes/Doc_basic/images/search.gif +0 -0
  97. data/public/themes/Doc_basic/images/upld.gif +0 -0
  98. data/public/themes/Doc_basic/images/upld.jpg +0 -0
  99. data/public/themes/Doc_basic/index.html +114 -0
  100. data/public/themes/Doc_basic/style.css +1743 -0
  101. data/public/themes/color7boxes/default2.css +42 -0
  102. data/public/themes/color7boxes/index.html +40 -0
  103. data/public/themes/prova/index.html +12 -0
  104. data/public/zDoc/images/search.gif +0 -0
  105. data/public/zDoc/images/upld.gif +0 -0
  106. data/public/zDoc/images/upld.jpg +0 -0
  107. data/public/zDoc/index.html +176 -0
  108. data/public/zDoc/script.js +342 -0
  109. data/public/zDoc/style.css +1741 -0
  110. data/script/about +3 -0
  111. data/script/breakpointer +3 -0
  112. data/script/console +3 -0
  113. data/script/destroy +3 -0
  114. data/script/generate +3 -0
  115. data/script/performance/benchmarker +3 -0
  116. data/script/performance/profiler +3 -0
  117. data/script/plugin +3 -0
  118. data/script/process/reaper +3 -0
  119. data/script/process/spawner +3 -0
  120. data/script/runner +3 -0
  121. data/script/server +3 -0
  122. data/test/fixtures/contents.yml +5 -0
  123. data/test/fixtures/meta_datas.yml +5 -0
  124. data/test/fixtures/page_elements.yml +5 -0
  125. data/test/fixtures/pages.yml +5 -0
  126. data/test/functional/contents_controller_test.rb +18 -0
  127. data/test/functional/pages_controller_test.rb +18 -0
  128. data/test/functional/render_controller_test.rb +18 -0
  129. data/test/test_helper.rb +28 -0
  130. data/test/unit/content_test.rb +10 -0
  131. data/test/unit/meta_data_test.rb +10 -0
  132. data/test/unit/page_element_test.rb +10 -0
  133. data/test/unit/page_test.rb +10 -0
  134. data/tmp/sessions/ruby_sess.0ced4c30e36477ab +0 -0
  135. data/tmp/sessions/ruby_sess.20fbe26671422e70 +0 -0
  136. data/tmp/sessions/ruby_sess.2c72521f3a7e2ba9 +0 -0
  137. data/tmp/sessions/ruby_sess.4107a69d982a2eb7 +0 -0
  138. data/tmp/sessions/ruby_sess.573ded9c7fdd9035 +0 -0
  139. data/tmp/sessions/ruby_sess.5a9767815bb96258 +0 -0
  140. data/tmp/sessions/ruby_sess.85d723b794005388 +0 -0
  141. data/tmp/sessions/ruby_sess.875b3b3e3529afdb +0 -0
  142. data/tmp/sessions/ruby_sess.936766f3a397c88b +0 -0
  143. data/tmp/sessions/ruby_sess.984e2e4c9a2e7891 +0 -0
  144. data/tmp/sessions/ruby_sess.a1faebd7448bc45d +0 -0
  145. data/tmp/sessions/ruby_sess.a415768c7635bc15 +0 -0
  146. data/tmp/sessions/ruby_sess.b2dadcbe6c1b0add +0 -0
  147. data/tmp/sessions/ruby_sess.ca9100beb103a428 +0 -0
  148. data/tmp/sessions/ruby_sess.d649c800a046efde +0 -0
  149. data/tmp/sessions/ruby_sess.db73bbfafd5a537c +0 -0
  150. data/tmp/sessions/ruby_sess.e32487b847524df1 +0 -0
  151. data/tmp/sessions/ruby_sess.f4e45d67828cc437 +0 -0
  152. data/tmp/sessions/ruby_sess.f5a3f064f2f7a26f +0 -0
  153. data/tmp/sessions/ruby_sess.ff0c47b35f238cda +0 -0
  154. data/vendor/plugins/acts_as_urlnameable.tar.gz +0 -0
  155. data/vendor/plugins/acts_as_urlnameable/LICENSE +19 -0
  156. data/vendor/plugins/acts_as_urlnameable/README +193 -0
  157. data/vendor/plugins/acts_as_urlnameable/Rakefile +25 -0
  158. data/vendor/plugins/acts_as_urlnameable/TODO +5 -0
  159. data/vendor/plugins/acts_as_urlnameable/db/00x_add_urlnames_table.rb +15 -0
  160. data/vendor/plugins/acts_as_urlnameable/db/urlnames_table.sql +7 -0
  161. data/vendor/plugins/acts_as_urlnameable/doc/classes/ActiveRecord/Acts/Urlnameable/ClassMethods.html +167 -0
  162. data/vendor/plugins/acts_as_urlnameable/doc/classes/ActiveRecord/Acts/Urlnameable/InstanceMethods.html +213 -0
  163. data/vendor/plugins/acts_as_urlnameable/doc/classes/ActiveRecord/Acts/Urlnameable/SingletonMethods.html +189 -0
  164. data/vendor/plugins/acts_as_urlnameable/doc/created.rid +1 -0
  165. data/vendor/plugins/acts_as_urlnameable/doc/files/LICENSE.html +129 -0
  166. data/vendor/plugins/acts_as_urlnameable/doc/files/README.html +333 -0
  167. data/vendor/plugins/acts_as_urlnameable/doc/files/TODO.html +121 -0
  168. data/vendor/plugins/acts_as_urlnameable/doc/files/lib/acts_as_urlnameable_rb.html +101 -0
  169. data/vendor/plugins/acts_as_urlnameable/doc/fr_class_index.html +29 -0
  170. data/vendor/plugins/acts_as_urlnameable/doc/fr_file_index.html +30 -0
  171. data/vendor/plugins/acts_as_urlnameable/doc/fr_method_index.html +34 -0
  172. data/vendor/plugins/acts_as_urlnameable/doc/index.html +24 -0
  173. data/vendor/plugins/acts_as_urlnameable/doc/rdoc-style.css +208 -0
  174. data/vendor/plugins/acts_as_urlnameable/init.rb +3 -0
  175. data/vendor/plugins/acts_as_urlnameable/lib/acts_as_urlnameable.rb +159 -0
  176. data/vendor/plugins/acts_as_urlnameable/lib/urlname.rb +3 -0
  177. data/vendor/plugins/acts_as_urlnameable/test/acts_as_urlnameable_test.rb +233 -0
  178. data/vendor/plugins/acts_as_urlnameable/test/connection.rb +8 -0
  179. data/vendor/plugins/acts_as_urlnameable/test/fixtures/article.rb +13 -0
  180. data/vendor/plugins/acts_as_urlnameable/test/fixtures/articles.yml +62 -0
  181. data/vendor/plugins/acts_as_urlnameable/test/fixtures/page.rb +14 -0
  182. data/vendor/plugins/acts_as_urlnameable/test/fixtures/pages.yml +35 -0
  183. data/vendor/plugins/acts_as_urlnameable/test/fixtures/people.yml +9 -0
  184. data/vendor/plugins/acts_as_urlnameable/test/fixtures/person.rb +26 -0
  185. data/vendor/plugins/acts_as_urlnameable/test/fixtures/schema.rb +24 -0
  186. data/vendor/plugins/acts_as_urlnameable/test/fixtures/section.rb +5 -0
  187. data/vendor/plugins/acts_as_urlnameable/test/fixtures/sections.yml +9 -0
  188. data/vendor/plugins/acts_as_urlnameable/test/fixtures/urlnames.yml +153 -0
  189. data/vendor/plugins/acts_as_urlnameable/test/test_helper.rb +42 -0
  190. data/vendor/plugins/gems/README +30 -0
  191. data/vendor/plugins/gems/init.rb +9 -0
  192. data/vendor/plugins/gems/tasks/gems_tasks.rake +32 -0
  193. data/vendor/plugins/unobtrusive_javascript/CHANGELOG +72 -0
  194. data/vendor/plugins/unobtrusive_javascript/README +73 -0
  195. data/vendor/plugins/unobtrusive_javascript/Rakefile +33 -0
  196. data/vendor/plugins/unobtrusive_javascript/about.yml +6 -0
  197. data/vendor/plugins/unobtrusive_javascript/assets/javascripts/lowpro.js +307 -0
  198. data/vendor/plugins/unobtrusive_javascript/init.rb +21 -0
  199. data/vendor/plugins/unobtrusive_javascript/install.rb +1 -0
  200. data/vendor/plugins/unobtrusive_javascript/lib/actionview_helpers_patches.rb +17 -0
  201. data/vendor/plugins/unobtrusive_javascript/lib/asset_tag_helper_patches.rb +33 -0
  202. data/vendor/plugins/unobtrusive_javascript/lib/behaviour_caching.rb +70 -0
  203. data/vendor/plugins/unobtrusive_javascript/lib/controllers/unobtrusive_javascript_controller.rb +52 -0
  204. data/vendor/plugins/unobtrusive_javascript/lib/prototype_helper_patches.rb +72 -0
  205. data/vendor/plugins/unobtrusive_javascript/lib/scriptaculous_helper_patches.rb +62 -0
  206. data/vendor/plugins/unobtrusive_javascript/lib/tag_helper_patches.rb +37 -0
  207. data/vendor/plugins/unobtrusive_javascript/lib/ujs.rb +32 -0
  208. data/vendor/plugins/unobtrusive_javascript/lib/ujs/behaviour_helper.rb +62 -0
  209. data/vendor/plugins/unobtrusive_javascript/lib/ujs/behaviour_script.rb +54 -0
  210. data/vendor/plugins/unobtrusive_javascript/lib/ujs/behaviour_script_converter.rb +23 -0
  211. data/vendor/plugins/unobtrusive_javascript/lib/ujs/controller_methods.rb +55 -0
  212. data/vendor/plugins/unobtrusive_javascript/lib/ujs/helpers.rb +152 -0
  213. data/vendor/plugins/unobtrusive_javascript/lib/ujs/javascript_proxies.rb +57 -0
  214. data/vendor/plugins/unobtrusive_javascript/tasks/unobtrusive_javascript_tasks.rake +15 -0
  215. data/vendor/plugins/unobtrusive_javascript/test/asset_tag_helper_patches_test.rb +32 -0
  216. data/vendor/plugins/unobtrusive_javascript/test/behaviour_helper_test.rb +180 -0
  217. data/vendor/plugins/unobtrusive_javascript/test/behaviour_script_converter_test.rb +72 -0
  218. data/vendor/plugins/unobtrusive_javascript/test/behaviour_script_test.rb +98 -0
  219. data/vendor/plugins/unobtrusive_javascript/test/config/environment.rb +8 -0
  220. data/vendor/plugins/unobtrusive_javascript/test/config/routes.rb +4 -0
  221. data/vendor/plugins/unobtrusive_javascript/test/config/schema.rb +3 -0
  222. data/vendor/plugins/unobtrusive_javascript/test/controller_methods_test.rb +48 -0
  223. data/vendor/plugins/unobtrusive_javascript/test/helpers_test.rb +186 -0
  224. data/vendor/plugins/unobtrusive_javascript/test/javascript_proxies_test.rb +3 -0
  225. data/vendor/plugins/unobtrusive_javascript/test/lib/ptk/boot.rb +26 -0
  226. data/vendor/plugins/unobtrusive_javascript/test/lib/ptk/gem/action_controller.rb +11 -0
  227. data/vendor/plugins/unobtrusive_javascript/test/lib/ptk/gem/action_mailer.rb +4 -0
  228. data/vendor/plugins/unobtrusive_javascript/test/lib/ptk/gem/active_record.rb +27 -0
  229. data/vendor/plugins/unobtrusive_javascript/test/lib/ptk/gem/rails.rb +31 -0
  230. data/vendor/plugins/unobtrusive_javascript/test/lib/ptk/ptk.rb +148 -0
  231. data/vendor/plugins/unobtrusive_javascript/test/lib/ptk/suite/difference.rb +23 -0
  232. data/vendor/plugins/unobtrusive_javascript/test/lib/stubs/controller_stub.rb +10 -0
  233. data/vendor/plugins/unobtrusive_javascript/test/ptk_helper.rb +29 -0
  234. data/vendor/plugins/unobtrusive_javascript/test/tag_helper_patches_test.rb +59 -0
  235. data/vendor/plugins/unobtrusive_javascript/test/test_helper.rb +25 -0
  236. data/vendor/plugins/unobtrusive_javascript/test/unobtrusive_javascript_controller_test.rb +95 -0
  237. data/vendor/plugins/unobtrusive_javascript/uninstall.rb +1 -0
  238. data/vendor/redcloth/bin/redcloth +3 -0
  239. data/vendor/redcloth/doc/CHANGELOG +160 -0
  240. data/vendor/redcloth/doc/COPYING +25 -0
  241. data/vendor/redcloth/doc/README +106 -0
  242. data/vendor/redcloth/doc/REFERENCE +216 -0
  243. data/vendor/redcloth/doc/make.rb +359 -0
  244. data/vendor/redcloth/lib/redcloth.rb +1130 -0
  245. data/vendor/redcloth/run-tests.rb +28 -0
  246. data/vendor/redcloth/setup.rb +1376 -0
  247. data/vendor/redcloth/tests/code.yml +105 -0
  248. data/vendor/redcloth/tests/hard_breaks.yml +26 -0
  249. data/vendor/redcloth/tests/images.yml +171 -0
  250. data/vendor/redcloth/tests/instiki.yml +39 -0
  251. data/vendor/redcloth/tests/links.yml +155 -0
  252. data/vendor/redcloth/tests/lists.yml +77 -0
  253. data/vendor/redcloth/tests/markdown.yml +218 -0
  254. data/vendor/redcloth/tests/poignant.yml +64 -0
  255. data/vendor/redcloth/tests/table.yml +198 -0
  256. data/vendor/redcloth/tests/textism.yml +406 -0
  257. metadata +432 -0
@@ -0,0 +1,15 @@
1
+ class AddSessions < ActiveRecord::Migration
2
+ def self.up
3
+ create_table :sessions do |t|
4
+ t.column :session_id, :string
5
+ t.column :data, :text
6
+ t.column :updated_at, :datetime
7
+ end
8
+
9
+ add_index :sessions, :session_id
10
+ end
11
+
12
+ def self.down
13
+ drop_table :sessions
14
+ end
15
+ end
@@ -0,0 +1,65 @@
1
+ -- This file is autogenerated by the Rail schema generator, using
2
+ -- the schema defined in db/migration/*.rb
3
+ --
4
+ -- Do not edit this file. Instead, add a new migration using
5
+ -- ./script/generate migration <name>, and then run
6
+ -- ./script/generate schema
7
+
8
+ -- tables
9
+
10
+ CREATE TABLE contents (
11
+ `id` int(11) DEFAULT NULL auto_increment PRIMARY KEY,
12
+ `body` text,
13
+ `content_type` varchar(255)
14
+ ) ENGINE=InnoDB;
15
+
16
+ CREATE TABLE meta_datas (
17
+ `id` int(11) DEFAULT NULL auto_increment PRIMARY KEY,
18
+ `content_id` int(11) NOT NULL,
19
+ `key` varchar(255) NOT NULL,
20
+ `value` varchar(255)
21
+ ) ENGINE=InnoDB;
22
+
23
+ CREATE TABLE page_elements (
24
+ `id` int(11) DEFAULT NULL auto_increment PRIMARY KEY,
25
+ `page_id` int(11) NOT NULL,
26
+ `content_id` int(11) NOT NULL,
27
+ `area_name` varchar(255),
28
+ `position` int(11)
29
+ ) ENGINE=InnoDB;
30
+
31
+ CREATE TABLE pages (
32
+ `id` int(11) DEFAULT NULL auto_increment PRIMARY KEY,
33
+ `title` varchar(255) DEFAULT '' NOT NULL,
34
+ `theme_name` varchar(255)
35
+ ) ENGINE=InnoDB;
36
+
37
+ CREATE TABLE sessions (
38
+ `id` int(11) DEFAULT NULL auto_increment PRIMARY KEY,
39
+ `session_id` varchar(255),
40
+ `data` text,
41
+ `updated_at` datetime
42
+ ) ENGINE=InnoDB;
43
+
44
+ CREATE TABLE urlnames (
45
+ `id` int(11) DEFAULT NULL auto_increment PRIMARY KEY,
46
+ `nameable_type` varchar(255),
47
+ `nameable_id` int(11),
48
+ `name` varchar(255)
49
+ ) ENGINE=InnoDB;
50
+
51
+
52
+ -- indexes
53
+
54
+ CREATE INDEX `meta_datas_content_id_index` ON meta_datas (`content_id`);
55
+ CREATE INDEX `page_elements_area_name_index` ON page_elements (`area_name`);
56
+ CREATE INDEX `page_elements_position_index` ON page_elements (`position`);
57
+ CREATE INDEX `sessions_session_id_index` ON sessions (`session_id`);
58
+
59
+ -- schema version meta-info
60
+
61
+ CREATE TABLE schema_info (
62
+ `version` int(11)
63
+ ) ENGINE=InnoDB;
64
+
65
+ insert into schema_info (version) values (6);
@@ -0,0 +1,65 @@
1
+ -- This file is autogenerated by the Rail schema generator, using
2
+ -- the schema defined in db/migration/*.rb
3
+ --
4
+ -- Do not edit this file. Instead, add a new migration using
5
+ -- ./script/generate migration <name>, and then run
6
+ -- ./script/generate schema
7
+
8
+ -- tables
9
+
10
+ CREATE TABLE contents (
11
+ "id" serial primary key,
12
+ "body" text,
13
+ "content_type" character varying(255)
14
+ );
15
+
16
+ CREATE TABLE meta_datas (
17
+ "id" serial primary key,
18
+ "content_id" integer NOT NULL,
19
+ "key" character varying(255) NOT NULL,
20
+ "value" character varying(255)
21
+ );
22
+
23
+ CREATE TABLE page_elements (
24
+ "id" serial primary key,
25
+ "page_id" integer NOT NULL,
26
+ "content_id" integer NOT NULL,
27
+ "area_name" character varying(255),
28
+ "position" integer
29
+ );
30
+
31
+ CREATE TABLE pages (
32
+ "id" serial primary key,
33
+ "title" character varying(255) DEFAULT '' NOT NULL,
34
+ "theme_name" character varying(255)
35
+ );
36
+
37
+ CREATE TABLE sessions (
38
+ "id" serial primary key,
39
+ "session_id" character varying(255),
40
+ "data" text,
41
+ "updated_at" timestamp
42
+ );
43
+
44
+ CREATE TABLE urlnames (
45
+ "id" serial primary key,
46
+ "nameable_type" character varying(255),
47
+ "nameable_id" integer,
48
+ "name" character varying(255)
49
+ );
50
+
51
+
52
+ -- indexes
53
+
54
+ CREATE INDEX "meta_datas_content_id_index" ON meta_datas ("content_id");
55
+ CREATE INDEX "page_elements_area_name_index" ON page_elements ("area_name");
56
+ CREATE INDEX "page_elements_position_index" ON page_elements ("position");
57
+ CREATE INDEX "sessions_session_id_index" ON sessions ("session_id");
58
+
59
+ -- schema version meta-info
60
+
61
+ CREATE TABLE schema_info (
62
+ "version" integer
63
+ );
64
+
65
+ insert into schema_info (version) values (6);
@@ -0,0 +1,49 @@
1
+ # This file is autogenerated. Instead of editing this file, please use the
2
+ # migrations feature of ActiveRecord to incrementally modify your database, and
3
+ # then regenerate this schema definition.
4
+
5
+ ActiveRecord::Schema.define(:version => 6) do
6
+
7
+ create_table "contents", :force => true do |t|
8
+ t.column "body", :text
9
+ t.column "content_type", :string
10
+ end
11
+
12
+ create_table "meta_datas", :force => true do |t|
13
+ t.column "content_id", :integer, :default => 0, :null => false
14
+ t.column "key", :string, :default => "", :null => false
15
+ t.column "value", :string
16
+ end
17
+
18
+ add_index "meta_datas", ["content_id"], :name => "meta_datas_content_id_index"
19
+
20
+ create_table "page_elements", :force => true do |t|
21
+ t.column "page_id", :integer, :default => 0, :null => false
22
+ t.column "content_id", :integer, :default => 0, :null => false
23
+ t.column "area_name", :string
24
+ t.column "position", :integer
25
+ end
26
+
27
+ add_index "page_elements", ["area_name"], :name => "page_elements_area_name_index"
28
+ add_index "page_elements", ["position"], :name => "page_elements_position_index"
29
+
30
+ create_table "pages", :force => true do |t|
31
+ t.column "title", :string, :default => "", :null => false
32
+ t.column "theme_name", :string
33
+ end
34
+
35
+ create_table "sessions", :force => true do |t|
36
+ t.column "session_id", :string
37
+ t.column "data", :text
38
+ t.column "updated_at", :datetime
39
+ end
40
+
41
+ add_index "sessions", ["session_id"], :name => "sessions_session_id_index"
42
+
43
+ create_table "urlnames", :force => true do |t|
44
+ t.column "nameable_type", :string
45
+ t.column "nameable_id", :integer
46
+ t.column "name", :string
47
+ end
48
+
49
+ end
@@ -0,0 +1,65 @@
1
+ -- This file is autogenerated by the Rail schema generator, using
2
+ -- the schema defined in db/migration/*.rb
3
+ --
4
+ -- Do not edit this file. Instead, add a new migration using
5
+ -- ./script/generate migration <name>, and then run
6
+ -- ./script/generate schema
7
+
8
+ -- tables
9
+
10
+ CREATE TABLE contents (
11
+ "id" INTEGER PRIMARY KEY NOT NULL,
12
+ "body" text,
13
+ "content_type" varchar(255)
14
+ );
15
+
16
+ CREATE TABLE meta_datas (
17
+ "id" INTEGER PRIMARY KEY NOT NULL,
18
+ "content_id" integer NOT NULL,
19
+ "key" varchar(255) NOT NULL,
20
+ "value" varchar(255)
21
+ );
22
+
23
+ CREATE TABLE page_elements (
24
+ "id" INTEGER PRIMARY KEY NOT NULL,
25
+ "page_id" integer NOT NULL,
26
+ "content_id" integer NOT NULL,
27
+ "area_name" varchar(255),
28
+ "position" integer
29
+ );
30
+
31
+ CREATE TABLE pages (
32
+ "id" INTEGER PRIMARY KEY NOT NULL,
33
+ "title" varchar(255) DEFAULT '' NOT NULL,
34
+ "theme_name" varchar(255)
35
+ );
36
+
37
+ CREATE TABLE sessions (
38
+ "id" INTEGER PRIMARY KEY NOT NULL,
39
+ "session_id" varchar(255),
40
+ "data" text,
41
+ "updated_at" datetime
42
+ );
43
+
44
+ CREATE TABLE urlnames (
45
+ "id" INTEGER PRIMARY KEY NOT NULL,
46
+ "nameable_type" varchar(255),
47
+ "nameable_id" integer,
48
+ "name" varchar(255)
49
+ );
50
+
51
+
52
+ -- indexes
53
+
54
+ CREATE INDEX "meta_datas_content_id_index" ON meta_datas ("content_id");
55
+ CREATE INDEX "page_elements_area_name_index" ON page_elements ("area_name");
56
+ CREATE INDEX "page_elements_position_index" ON page_elements ("position");
57
+ CREATE INDEX "sessions_session_id_index" ON sessions ("session_id");
58
+
59
+ -- schema version meta-info
60
+
61
+ CREATE TABLE schema_info (
62
+ "version" integer
63
+ );
64
+
65
+ insert into schema_info (version) values (6);
@@ -0,0 +1,71 @@
1
+ -- This file is autogenerated by the Rail schema generator, using
2
+ -- the schema defined in db/migration/*.rb
3
+ --
4
+ -- Do not edit this file. Instead, add a new migration using
5
+ -- ./script/generate migration <name>, and then run
6
+ -- ./script/generate schema
7
+
8
+ -- tables
9
+
10
+ CREATE TABLE contents (
11
+ [id] int NOT NULL IDENTITY(1,
12
+ 1) PRIMARY KEY,
13
+ [body] text,
14
+ [content_type] varchar(255)
15
+ );
16
+
17
+ CREATE TABLE meta_datas (
18
+ [id] int NOT NULL IDENTITY(1,
19
+ 1) PRIMARY KEY,
20
+ [content_id] int NOT NULL,
21
+ [key] varchar(255) NOT NULL,
22
+ [value] varchar(255)
23
+ );
24
+
25
+ CREATE TABLE page_elements (
26
+ [id] int NOT NULL IDENTITY(1,
27
+ 1) PRIMARY KEY,
28
+ [page_id] int NOT NULL,
29
+ [content_id] int NOT NULL,
30
+ [area_name] varchar(255),
31
+ [position] int
32
+ );
33
+
34
+ CREATE TABLE pages (
35
+ [id] int NOT NULL IDENTITY(1,
36
+ 1) PRIMARY KEY,
37
+ [title] varchar(255) DEFAULT '' NOT NULL,
38
+ [theme_name] varchar(255)
39
+ );
40
+
41
+ CREATE TABLE sessions (
42
+ [id] int NOT NULL IDENTITY(1,
43
+ 1) PRIMARY KEY,
44
+ [session_id] varchar(255),
45
+ [data] text,
46
+ [updated_at] datetime
47
+ );
48
+
49
+ CREATE TABLE urlnames (
50
+ [id] int NOT NULL IDENTITY(1,
51
+ 1) PRIMARY KEY,
52
+ [nameable_type] varchar(255),
53
+ [nameable_id] int,
54
+ [name] varchar(255)
55
+ );
56
+
57
+
58
+ -- indexes
59
+
60
+ CREATE INDEX [meta_datas_content_id_index] ON meta_datas ([content_id]);
61
+ CREATE INDEX [page_elements_area_name_index] ON page_elements ([area_name]);
62
+ CREATE INDEX [page_elements_position_index] ON page_elements ([position]);
63
+ CREATE INDEX [sessions_session_id_index] ON sessions ([session_id]);
64
+
65
+ -- schema version meta-info
66
+
67
+ CREATE TABLE schema_info (
68
+ [version] int
69
+ );
70
+
71
+ insert into schema_info (version) values (6);
@@ -0,0 +1 @@
1
+ 6
Binary file
Binary file
Binary file
@@ -0,0 +1,2 @@
1
+ Use this README file to introduce your application and point to useful places in the API for learning more.
2
+ Run "rake appdoc" to generate API documentation for your models and controllers.
@@ -0,0 +1,2362 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
+ <html lang="it"><head>
3
+
4
+ <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Doctor Virtualis</title>
5
+
6
+ <style type="text/css">
7
+ /* including:ecds_style */
8
+ /*settaggi comuni*/
9
+ body {
10
+ color:#000000;
11
+ background-color:#ddcf99;
12
+ font-size:12px;
13
+ font-weight:normal;
14
+ font-style:normal;
15
+ font-family:Verdana, Arial,Geneva,Trebuchet,sans-serif;
16
+ line-height:1.6em;
17
+ margin-top:0px;
18
+ margin-left:0px;
19
+ margin-bottom:0px;
20
+ margin-right:0px;
21
+ width:auto;
22
+ }
23
+
24
+ /* Settaggi singoli */
25
+ /* testata griglia */
26
+ /* div principale */
27
+ div.testata {
28
+ /* variabili */
29
+ background-color:#c9b983;
30
+ margin-top:0px;
31
+ margin-right:0px;
32
+ margin-bottom:0px;
33
+ margin-left:0px;
34
+ padding-top:0px;
35
+ padding-right:0px;
36
+ padding-bottom:0px;
37
+ padding-left:0px;
38
+ voice-family: "\"} \""; /*patch per ie4*/
39
+ "\"{ \""voice-family: inherit;
40
+ /* width:auto; */
41
+ /* fine valori fissi */
42
+ }
43
+
44
+
45
+ /* fine div principale */
46
+
47
+ /* div righe */
48
+ /* da riportare cos� come � nell'ecds_stile */
49
+ div.testata div.middle {
50
+ color:#006633;
51
+ background-color:#ddcf99;
52
+ border-width:1px 1px 0px 0px;
53
+ border-style:solid;
54
+ border-color:#fff9e5;
55
+ margin-top:0px;
56
+ margin-right:0px;
57
+ margin-bottom:0px;
58
+ margin-left:0px;
59
+ padding-top:0px;
60
+ padding-right:0px;
61
+ padding-bottom:0px;
62
+ padding-left:0px;
63
+ voice-family: "\"} \""; /* patch per ie4 */
64
+ "\"{ \""voice-family: inherit;
65
+ /*width:auto;*/
66
+ }
67
+
68
+ div.testata div.upper {
69
+ background-color:transparent;
70
+ margin-top:0px;
71
+ margin-right:0px;
72
+ margin-bottom:0px;
73
+ margin-left:0px;
74
+ padding-top:0px;
75
+ padding-right:0px;
76
+ padding-bottom:0px;
77
+ padding-left:0px;
78
+ voice-family: "\"} \""; /* patch per ie4 */
79
+ "\"{ \""voice-family: inherit;
80
+ /*width:auto;*/
81
+ }
82
+
83
+ div.testata div.lower {
84
+ background-color:transparent;
85
+ margin-top:0px;
86
+ margin-right:0px;
87
+ margin-bottom:0px;
88
+ margin-left:0px;
89
+ padding-top:0px;
90
+ padding-right:0px;
91
+ padding-bottom:0px;
92
+ padding-left:0px;
93
+ voice-family: "\"} \""; /* patch per ie4 */
94
+ "\"{ \""voice-family: inherit;
95
+ /*width:auto;*/
96
+ }
97
+
98
+ /* fine valori fissi */
99
+
100
+ /* quadranti div upper */
101
+
102
+ div.testata div.upper div.left {
103
+ margin-top:0px;
104
+ margin-right:0px;
105
+ margin-bottom:0px;
106
+ margin-left:0px;
107
+ padding-top:0px;
108
+ padding-right:0px;
109
+ padding-bottom:0px;
110
+ padding-left:0px;
111
+ width:150px;
112
+ float:left;
113
+ /* questo va mantenuto di fisso */
114
+ }
115
+
116
+ div.testata div.upper div.center {
117
+ border-width:0px;
118
+ margin-top:15px;
119
+ margin-right:0px;
120
+ margin-bottom:0px;
121
+ margin-left:20px;
122
+ padding-top:0px;
123
+ padding-right:0px;
124
+ padding-bottom:0px;
125
+ padding-left:0px;
126
+ width:55%;
127
+ float:left;
128
+ /* questo va mantenuto di fisso */
129
+
130
+ }
131
+
132
+ div.testata div.upper div.right {
133
+ margin-top:10px;
134
+ margin-right:10px;
135
+ margin-bottom:0px;
136
+ margin-left:0px;
137
+ padding-top:0px;
138
+ padding-right:0px;
139
+ padding-bottom:0px;
140
+ padding-left:0px;
141
+ width:150px;
142
+ float:right;
143
+ /* questo va mantenuto di fisso */
144
+
145
+ }
146
+
147
+ /* fine quadranti div.upper*/
148
+ /* fine riga superiore */
149
+
150
+ /* inizio riga mediana */
151
+ /*quadranti div.middle */
152
+
153
+ div.testata div.middle div.left {
154
+ color:#006633;
155
+ background-color:transparent;
156
+ border-width:0px;
157
+ border-style:solid;
158
+ border-color:#fff9e5;
159
+ margin-top:3px;
160
+ margin-right:0px;
161
+ margin-bottom:0px;
162
+ margin-left:0px;
163
+ padding-top:0px;
164
+ padding-right:0px;
165
+ padding-bottom:0px;
166
+ padding-left:0px;
167
+ width:60%;
168
+ float:left; /* questo va mantenuto di fisso */
169
+ }
170
+
171
+ div.testata div.middle div.center {
172
+ color:#006633;
173
+ border-width:1px 1px 0px 0px;
174
+ border-style:solid;
175
+ border-color:#fff9e5;
176
+ margin-top:0px;
177
+ margin-right:0px;
178
+ margin-bottom:0px;
179
+ margin-left:0px;
180
+ padding-top:0px;
181
+ padding-right:0px;
182
+ padding-bottom:0px;
183
+ padding-left:0px;
184
+ width:150px;
185
+ float:left; /* questo va mantenuto di fisso */
186
+ }
187
+
188
+ div.testata div.middle div.right {
189
+ color:#006633;
190
+ border-width:0px;
191
+ border-style:solid;
192
+ border-color:#fff9e5;
193
+ margin-top:0px;
194
+ margin-right:0px;
195
+ margin-bottom:0px;
196
+ margin-left:0px;
197
+ padding-top:0px;
198
+ padding-right:0px;
199
+ padding-bottom:0px;
200
+ padding-left:0px;
201
+ width:150px;
202
+ float:right; /* questo va mantenuto di fisso */
203
+ }
204
+
205
+ /*fine quadranti div.middle*/
206
+ /* fine riga centrale*/
207
+
208
+ /*riga inferiore div.lower */
209
+ /* quadranti div.lower*/
210
+ div.testata div.lower div.left {
211
+ margin-top:0px;
212
+ margin-right:0px;
213
+ margin-bottom:0px;
214
+ margin-left:0px;
215
+ padding-top:0px;
216
+ padding-right:0px;
217
+ padding-bottom:0px;
218
+ padding-left:0px;
219
+ float:left; /* questo va mantenuto di fisso */
220
+ }
221
+
222
+ div.testata div.lower div.center {
223
+ margin-top:0px;
224
+ margin-right:0px;
225
+ margin-bottom:0px;
226
+ margin-left:0px;
227
+ padding-top:0px;
228
+ padding-right:0px;
229
+ padding-bottom:0px;
230
+ padding-left:0px;
231
+ float:left; /* questo va mantenuto di fisso */
232
+ }
233
+
234
+ div.testata div.lower div.right {
235
+ margin-top:0px;
236
+ margin-right:0px;
237
+ margin-bottom:0px;
238
+ margin-left:0px;
239
+ padding-top:0px;
240
+ padding-right:0px;
241
+ padding-bottom:0px;
242
+ padding-left:0px;
243
+ float:right; /* questo va mantenuto di fisso */
244
+ }
245
+
246
+ /*fine quadranti div.lower */
247
+ /*fine div.lower*/
248
+
249
+ /* footer inizio quadranti */
250
+ /* testata griglia */
251
+ /* div principale */
252
+ div.footer {
253
+ /* variabili */
254
+ background-color:#ddcf99;
255
+ margin-top:0px;
256
+ margin-right:0px;
257
+ margin-bottom:0px;
258
+ margin-left:0px;
259
+ padding-top:0px;
260
+ padding-right:0px;
261
+ padding-bottom:0px;
262
+ padding-left:0px;
263
+ voice-family: "\"} \""; /*patch per ie4*/
264
+ "\"{ \""voice-family: inherit;
265
+ /*width:auto;*/
266
+ /* fine valori fissi */
267
+ }
268
+
269
+ /* fine div principale */
270
+
271
+ /* div righe */
272
+ /* da riportare cos� come � nell'ecds_stile */
273
+ div.footer div.middle {
274
+ background-color:transparent;
275
+ margin-top:0px;
276
+ margin-right:0px;
277
+ margin-bottom:0px;
278
+ margin-left:0px;
279
+ padding-top:0px;
280
+ padding-right:0px;
281
+ padding-bottom:0px;
282
+ padding-left:0px;
283
+ voice-family: "\"} \""; /* patch per ie4 */
284
+ "\"{ \""voice-family: inherit;
285
+ width:auto;
286
+ }
287
+
288
+ div.footer div.upper {
289
+ background-color:transparent;
290
+ margin-top:0px;
291
+ margin-right:0px;
292
+ margin-bottom:0px;
293
+ margin-left:0px;
294
+ padding-top:0px;
295
+ padding-right:0px;
296
+ padding-bottom:0px;
297
+ padding-left:0px;
298
+ voice-family: "\"} \""; /* patch per ie4 */
299
+ "\"{ \""voice-family: inherit;
300
+ /*width:auto;*/
301
+ }
302
+
303
+ div.footer div.lower {
304
+ background-color:transparent;
305
+ margin-top:0px;
306
+ margin-right:0px;
307
+ margin-bottom:0px;
308
+ margin-left:0px;
309
+ padding-top:0px;
310
+ padding-right:0px;
311
+ padding-bottom:0px;
312
+ padding-left:0px;
313
+ voice-family: "\"} \""; /* patch per ie4 */
314
+ "\"{ \""voice-family: inherit;
315
+ /*width:auto;*/
316
+ }
317
+
318
+ /* fine valori fissi */
319
+
320
+ /* quadranti div upper */
321
+
322
+ div.footer div.upper div.left {
323
+ margin-top:0px;
324
+ margin-right:0px;
325
+ margin-bottom:0px;
326
+ margin-left:0px;
327
+ padding-top:0px;
328
+ padding-right:0px;
329
+ padding-bottom:0px;
330
+ padding-left:0px;
331
+ width:55%;
332
+ float:left;
333
+ /* questo va mantenuto di fisso */
334
+ }
335
+
336
+ div.footer div.upper div.center {
337
+ margin-top:0px;
338
+ margin-right:0px;
339
+ margin-bottom:0px;
340
+ margin-left:0px;
341
+ padding-top:0px;
342
+ padding-right:0px;
343
+ padding-bottom:0px;
344
+ padding-left:0px;
345
+ float:left;
346
+ /* questo va mantenuto di fisso */
347
+ }
348
+
349
+ div.footer div.upper div.right {
350
+ margin-top:0px;
351
+ margin-right:0px;
352
+ margin-bottom:0px;
353
+ margin-left:0px;
354
+ padding-top:0px;
355
+ padding-right:0px;
356
+ padding-bottom:0px;
357
+ padding-left:0px;
358
+ width:25%;
359
+ float:right;
360
+ /* questo va mantenuto di fisso */
361
+ }
362
+
363
+ /* fine quadranti div.upper*/
364
+ /* fine riga superiore */
365
+
366
+ /* inizio riga mediana */
367
+ /*quadranti div.middle */
368
+
369
+ div.footer div.middle div.left {
370
+ margin-top:0px;
371
+ margin-right:0px;
372
+ margin-bottom:0px;
373
+ margin-left:0px;
374
+ padding-top:0px;
375
+ padding-right:0px;
376
+ padding-bottom:0px;
377
+ padding-left:0px;
378
+ float:left; /* questo va mantenuto di fisso */
379
+ }
380
+
381
+ div.footer div.middle div.center {
382
+ margin-top:0px;
383
+ margin-right:0px;
384
+ margin-bottom:0px;
385
+ margin-left:0px;
386
+ padding-top:0px;
387
+ padding-right:0px;
388
+ padding-bottom:0px;
389
+ padding-left:0px;
390
+ float:left; /* questo va mantenuto di fisso */
391
+ }
392
+
393
+ div.footer div.middle div.right {
394
+ margin-top:0px;
395
+ margin-right:0px;
396
+ margin-bottom:0px;
397
+ margin-left:0px;
398
+ padding-top:0px;
399
+ padding-right:0px;
400
+ padding-bottom:0px;
401
+ padding-left:0px;
402
+ float:right; /* questo va mantenuto di fisso */
403
+ }
404
+
405
+ /*fine quadranti div.middle*/
406
+ /* fine riga centrale*/
407
+
408
+ /*riga inferiore div.lower */
409
+ /* quadranti div.lower*/
410
+ div.footer div.lower div.left {
411
+ margin-top:0px;
412
+ margin-right:0px;
413
+ margin-bottom:0px;
414
+ margin-left:0px;
415
+ padding-top:0px;
416
+ padding-right:0px;
417
+ padding-bottom:0px;
418
+ padding-left:0px;
419
+ float:left; /* questo va mantenuto di fisso */
420
+ }
421
+
422
+ div.footer div.lower div.center {
423
+ margin-top:0px;
424
+ margin-right:0px;
425
+ margin-bottom:0px;
426
+ margin-left:0px;
427
+ padding-top:0px;
428
+ padding-right:0px;
429
+ padding-bottom:0px;
430
+ padding-left:0px;
431
+ float:left; /* questo va mantenuto di fisso */
432
+ }
433
+
434
+ div.footer div.lower div.right {
435
+ margin-top:0px;
436
+ margin-right:0px;
437
+ margin-bottom:0px;
438
+ margin-left:0px;
439
+ padding-top:0px;
440
+ padding-right:0px;
441
+ padding-bottom:0px;
442
+ padding-left:0px;
443
+ float:right; /* questo va mantenuto di fisso */
444
+ }
445
+
446
+ /*fine quadranti div.lower */
447
+ /*fine div.lower*/
448
+ /* fine footer */
449
+
450
+ /*spacer */
451
+ /* eliminato il 1px di altezza */
452
+ div.spacer {
453
+ margin:0px;
454
+ padding:0px;
455
+ clear:both;
456
+ float:none;
457
+ font-size:0px;
458
+ border-width:0px;
459
+ background-color:transparent;
460
+ height:1px;
461
+ voice-family: "\"} \""; /*patch per ie4*/
462
+ "\"{ \""voice-family: inherit;
463
+ width:100%;
464
+ }
465
+
466
+ /* componenti */
467
+ /* settaggi generali div componenti */
468
+
469
+ div.title,
470
+ div.subtitle,
471
+ div.text,
472
+ div.banner,
473
+ div.logo,
474
+ div.testata div.context,
475
+ div.footer div.context,
476
+ div.menu,
477
+ div.footmenu {
478
+ background-color:transparent;
479
+ color:#000;
480
+ margin:0px;
481
+ padding:0px;
482
+ border-width:0px;
483
+ }
484
+
485
+
486
+ /* titolo */
487
+ /*rivedere*/
488
+
489
+ div.title h1 {
490
+ color:#990000;
491
+ background-color:transparent;
492
+ font-size:34px;
493
+ font-weight:normal;
494
+ font-style:normal;
495
+ font-family:"Times New Roman", "New York", serif;
496
+ line-height:1em;
497
+ padding-top:1px;
498
+ padding-left:0px;
499
+ padding-bottom:0px;
500
+ padding-right:0px;
501
+ margin-top:0px;
502
+ margin-left:0px;
503
+ margin-bottom:0px;
504
+ margin-right:0px;
505
+ width:100%;
506
+ }
507
+
508
+ /* sottotitolo */
509
+
510
+ div.subtitle h2 {
511
+ color:#006633;
512
+ background-color:transparent;
513
+ font-size:18px;
514
+ font-weight:bold;
515
+ font-style:normal;
516
+ font-family:"Times New Roman", "New York", serif;
517
+ line-height:1em;
518
+ padding-top:0px;
519
+ padding-left:0px;
520
+ padding-bottom:0px;
521
+ padding-right:0px;
522
+ margin-top:0px;
523
+ margin-left:0px;
524
+ margin-bottom:0px;
525
+ margin-right:0px;
526
+ width:100%;
527
+ }
528
+
529
+ /* div text */
530
+ div.text p {
531
+ color:#000000;
532
+ background-color:#ddcf99;
533
+ font-size:12px;
534
+ font-weight:normal;
535
+ font-style:normal;
536
+ font-family:Verdana, Arial,Geneva,Trebuchet,sans-serif;
537
+ line-height:1.6em;
538
+ padding-top:1px;
539
+ padding-left:0px;
540
+ padding-bottom:0px;
541
+ padding-right:0px;
542
+ margin-top:0px;
543
+ margin-left:0px;
544
+ margin-bottom:0px;
545
+ margin-right:0px;
546
+ width:100%;
547
+ }
548
+
549
+ /* authorship */
550
+ div.authorship {
551
+ margin-top:5px;
552
+ margin-right:5px;
553
+ margin-bottom:0px;
554
+ margin-left:5px;
555
+ padding-top:0px;
556
+ padding-right:0px;
557
+ padding-bottom:0px;
558
+ padding-left:0px;
559
+ background-color:transparent;
560
+ border-width:0px;
561
+ width:auto;
562
+ text-align:right;
563
+ color:#000000;
564
+ padding:0px;
565
+ }
566
+
567
+ div.authorship a {
568
+ color:#006633;
569
+ text-decoration:none;
570
+ font-size:1em;
571
+ font-style:normal;
572
+ font-weight:bold;
573
+ font-family:Verdana, Arial,Geneva,Trebuchet,sans-serif;
574
+ line-height:1em;
575
+ vertical-align:middle;
576
+ margin:0px;
577
+ background-color:transparent;
578
+ }
579
+
580
+ div.authorship a:hover {
581
+ color:#990000;
582
+ text-decoration:none;
583
+ }
584
+
585
+ /* div close */
586
+ div.close {
587
+ margin-top:0px;
588
+ margin-right:0px;
589
+ margin-bottom:0px;
590
+ margin-left:0px;
591
+ padding-top:1px;
592
+ padding-right:0px;
593
+ padding-bottom:0px;
594
+ padding-left:0px;
595
+ background-color:#ddcf99;
596
+ width:100%;
597
+ color:#000000;
598
+ padding:0px;
599
+ }
600
+
601
+ div.close a {
602
+ color:#000000;
603
+ font-size:12px;
604
+ font-style:normal;
605
+ font-weight:normal;
606
+ font-family:Verdana, Arial,Geneva,Trebuchet,sans-serif;
607
+ line-height:1.6em;
608
+ margin:0px;
609
+ background-color:transparent;
610
+ }
611
+
612
+ div.close a:hover {
613
+ }
614
+
615
+ /* contesto testata */
616
+ div.testata div.context {
617
+ }
618
+
619
+ /* contesto footer */
620
+ div.footer div.context {
621
+ }
622
+
623
+
624
+ /*logo*/
625
+ div.logo {
626
+ background-color:transparent;
627
+ margin-top:0px;
628
+ margin-right:0px;
629
+ margin-bottom:0px;
630
+ margin-left:auto;
631
+ text-align:right;
632
+ width:100%;
633
+ color:#000;
634
+ padding:0px;
635
+
636
+ }
637
+
638
+ div.logo img.testata {
639
+ padding-top:0px;
640
+ padding-right:0px;
641
+ padding-bottom:0px;
642
+ padding-left:0px;
643
+ border-width:0px;
644
+ }
645
+
646
+ /*banner */
647
+ div.banner {
648
+ background-color:#ddcf99;
649
+ margin-top:0px;
650
+ margin-right:0px;
651
+ margin-bottom:0px;
652
+ margin-left:0px;
653
+ width:100%;
654
+ color:#000;
655
+ padding:0px;
656
+ }
657
+
658
+ div.banner img.testata {
659
+ padding-top:1px;
660
+ padding-right:0px;
661
+ padding-bottom:0px;
662
+ padding-left:0px;
663
+ border-width:0px;
664
+ }
665
+
666
+ iframe {
667
+ border-width:0px;
668
+ margin:0px;
669
+ padding:0px;
670
+ width:100%;
671
+ }
672
+
673
+ /* autentifica */
674
+
675
+ div.auth, div.logged {
676
+ background-color:transparent;
677
+ margin-top:0px;
678
+ margin-right:0px;
679
+ margin-bottom:0px;
680
+ margin-left:auto;
681
+ padding-top:0px;
682
+ padding-right:0px;
683
+ padding-bottom:0px;
684
+ padding-left:0px;
685
+ border-width:0px ;
686
+ text-align:right;
687
+ width:100%;
688
+ color:#000000;
689
+ }
690
+
691
+ div.auth a,
692
+ div.logged a {
693
+ color:#333;
694
+ text-decoration:none;
695
+ font-size:10px;
696
+ font-style:normal;
697
+ font-weight:normal;
698
+ font-family:Verdana, Arial,Geneva,Trebuchet,sans-serif;
699
+ line-height:10px;
700
+ vertical-align:middle;
701
+ margin:0px;
702
+ padding:0px 3px;
703
+ background-color:transparent;
704
+ }
705
+
706
+ div.auth a:hover,
707
+ div.logged a:hover {
708
+ color:#000;
709
+ text-decoration:none;
710
+ }
711
+
712
+ div.auth a:visited,
713
+ div.logged a:visited {
714
+ }
715
+
716
+ /* form per ricerca*/
717
+ div.search {
718
+ background-color:transparent;
719
+ color:#000000;
720
+ margin-top:0px;
721
+ margin-right:0px;
722
+ margin-bottom:0px;
723
+ margin-left:0px;
724
+ padding-top:1px;
725
+ padding-right:0px;
726
+ padding-bottom:0px;
727
+ padding-left:0px;
728
+ line-height:1.6em;
729
+ font-size:12px;
730
+ font-weight:normal;
731
+ font-family:Verdana, Arial,Geneva,Trebuchet,sans-serif;
732
+ font-style:normal;
733
+ text-align:center;
734
+ width:100%;
735
+ }
736
+
737
+ /* form ricerca */
738
+ div.search form {
739
+ margin:0px;
740
+ padding:0px;
741
+ border-width:0px;
742
+ }
743
+
744
+ div.search form label {
745
+ color:#000000;
746
+ font-size:12px;
747
+ font-weight:normal;
748
+ font-family:Verdana, Arial,Geneva,Trebuchet,sans-serif;
749
+ font-style:normal;
750
+ vertical-align:bottom;
751
+ margin-top:0px;
752
+ margin-right:0px;
753
+ margin-bottom:0px;
754
+ margin-left:0px;
755
+ padding-top:1px;
756
+ padding-right:0px;
757
+ padding-bottom:0px;
758
+ padding-left:0px;
759
+ vertical-align:bottom;
760
+ background-color:transparent;
761
+ line-height:1em;
762
+ }
763
+
764
+ div.search form input {
765
+ background-color:#fff9e5;
766
+ color:#000000;
767
+ font-size:12px;
768
+ font-family:Verdana, Arial,Geneva,Trebuchet,sans-serif;
769
+ margin-top:0px;
770
+ margin-right:0px;
771
+ margin-bottom:0px;
772
+ margin-left:0px;
773
+ width:60px;
774
+ vertical-align:middle;
775
+ }
776
+
777
+ div.search form input.butt {
778
+ background-color:transparent;
779
+ color:#000000;
780
+ font-size:12px;
781
+ font-family:Verdana, Arial,Geneva,Trebuchet,sans-serif;
782
+ margin-top:0px;
783
+ margin-right:0px;
784
+ margin-bottom:0px;
785
+ margin-left:0px;
786
+ width:100%;
787
+ vertical-align:bottom;
788
+ padding:0px;
789
+ }
790
+
791
+ /* fine ricerca */
792
+ /* menu */
793
+ div.menu {
794
+ margin:0px;
795
+ padding:0px;
796
+ }
797
+
798
+ div.testata div.menu table {
799
+ background-color:transparent;
800
+ margin-top:0px;
801
+ margin-right:0px;
802
+ margin-bottom:0px;
803
+ margin-left:0px;
804
+ padding:0px;
805
+ color:#000000;
806
+ }
807
+
808
+ div.testata div.menu table td {
809
+ padding-top:1px;
810
+ padding-right:0px;
811
+ padding-bottom:0px;
812
+ padding-left:0px;
813
+ }
814
+
815
+ div.testata table.mainmenu a {
816
+ color:#006633;
817
+ font-size:12px;
818
+ font-family:Verdana,Arial,Geneva,Trebuchet,sans-serif;
819
+ font-weight:bold;
820
+ font-style:normal;
821
+ font-height:1.6em;
822
+ text-decoration:none;
823
+ }
824
+
825
+ div.testata table.mainmenu a.amainmenu {
826
+ color:#990000;
827
+ }
828
+
829
+ div.testata table.mainmenu a:hover {
830
+ color:#990000;
831
+ }
832
+
833
+ div.footer div.menu table {
834
+ background-color:transparent;
835
+ margin-top:0px;
836
+ margin-right:0px;
837
+ margin-bottom:0px;
838
+ margin-left:0px;
839
+ padding:0px;
840
+ color:#000000;
841
+ }
842
+
843
+ div.footer div.menu table td {
844
+ padding-top:1px;
845
+ padding-right:0px;
846
+ padding-bottom:0px;
847
+ padding-left:0px;
848
+ }
849
+
850
+ div.footer table.mainmenu a {
851
+ color:#006633;
852
+ font-size:10px;
853
+ font-family:Verdana,Arial,Geneva,Trebuchet,sans-serif;
854
+ font-weight:normal;
855
+ font-style:normal;
856
+ font-height:1.6em;
857
+ text-decoration:none;
858
+ }
859
+
860
+ div.footer table.mainmenu a.amainmenu {
861
+ color:#990000;
862
+ }
863
+
864
+ div.footer table.mainmenu a:hover {
865
+ color:#990000;
866
+ }
867
+
868
+ /* forse ci vorrebbe anche un table.mainmenu a:hover? */
869
+
870
+
871
+ /*sinistra*/
872
+ td.sinistra {
873
+ color:#000000;
874
+ background-color:#c9b983;
875
+ padding-top:10px;
876
+ padding-bottom:8px;
877
+ padding-left:5px;
878
+ padding-right:10px;
879
+ text-align:left;
880
+ width:150px;
881
+ }
882
+
883
+ div.sinistra {
884
+ color:#000000;
885
+ background-color:#c9b983;
886
+ padding-top:0px;
887
+ padding-bottom:0px;
888
+ padding-left:0px;
889
+ padding-right:0px;
890
+ margin-top:0px;
891
+ margin-bottom:0px;
892
+ margin-left:0px;
893
+ margin-right:0px;
894
+ border-width:0px;
895
+ text-align:left;
896
+ width:150px;
897
+ }
898
+
899
+ /*centro*/
900
+ td.centro {
901
+ color:black;
902
+ background-color:#fff9e5;
903
+ font-size:12px;
904
+ padding-top:20px;
905
+ padding-bottom:20px;
906
+ padding-left:0px;
907
+ padding-right:0px;
908
+ margin-top:0px;
909
+ margin-bottom:0px;
910
+ margin-left:auto;
911
+ margin-right:auto;
912
+ text-align:center;
913
+ width:auto;
914
+ }
915
+
916
+
917
+ div.centro {
918
+ color:black;
919
+ background-color:#fff9e5;
920
+ font-size:12px;
921
+ padding-top:0px;
922
+ padding-bottom:0px;
923
+ padding-left:0px;
924
+ padding-right:0px;
925
+ margin-top:0px;
926
+ margin-bottom:0px;
927
+ margin-left:auto;
928
+ margin-right:auto;
929
+ border-width:0px;
930
+ text-align:center;
931
+ width:90%;
932
+ }
933
+
934
+
935
+ /*destra*/
936
+ td.destra {
937
+ color:#000000;
938
+ background-color:#ddcf99;
939
+ padding-top:20px;
940
+ padding-bottom:20px;
941
+ padding-left:10px;
942
+ padding-right:5px;
943
+ border-color:#fff9e5;
944
+ border-style:solid;
945
+ border-width:1px 0px 0px;
946
+ text-align:left;
947
+ width:150px;
948
+ }
949
+
950
+
951
+ div.destra {
952
+ color:#000000;
953
+ background-color:#ddcf99;
954
+ font-size:10px;
955
+ padding-top:0px;
956
+ padding-bottom:0px;
957
+ padding-left:0px;
958
+ padding-right:0px;
959
+ margin-top:0px;
960
+ margin-bottom:0px;
961
+ margin-left:0px;
962
+ margin-right:0px;
963
+ border-color:red;
964
+ border-style:none;
965
+ border-width:0px;
966
+ text-align:left;
967
+ width:auto;
968
+ }
969
+
970
+
971
+ /*attualmente pesca i dati da general>>stylesheet l'accesso a page viene gia' usato per html e body ci
972
+ vorrebbe una entry a lui dedicata perche general>>styleshet e' per i default generali.*/
973
+
974
+
975
+ table.page {
976
+ width:100%;
977
+ margin-top:0px;
978
+ margin-left:0px;
979
+ margin-bottom:0px;
980
+ margin-right:0px;
981
+ color:#000000;
982
+ background-color:#ddcf99;
983
+ padding-top:1px;
984
+ padding-left:0px;
985
+ padding-bottom:0px;
986
+ padding-right:0px;
987
+ }
988
+
989
+ /* including:local_stile *//* patch search */
990
+ div.testata div.search input.butt{
991
+ width:56px;
992
+ height:25px;
993
+ vertical-align:middle;
994
+
995
+ }
996
+
997
+ /* inizio local_stile */
998
+ div.testata div.spacer,
999
+ div.footer div.spacer{
1000
+ height:0px;
1001
+ display:none;
1002
+ }
1003
+
1004
+ div.testata div div.spacer,
1005
+ div.footer div div.spacer{
1006
+ height:1px;
1007
+ display:block;
1008
+ }
1009
+
1010
+ /* colonna sinistra */
1011
+ /* div contesto */
1012
+ div.sinistra div {
1013
+ margin:0px;
1014
+ padding:0px;
1015
+ }
1016
+
1017
+ /* div elemento */
1018
+ div.sinistra div div {
1019
+ margin:0px 0px 5px;
1020
+ padding:0px;
1021
+ }
1022
+
1023
+ /*spacer e sep */
1024
+ div.sinistra div.spacer {
1025
+ background-color:transparent;
1026
+ border-width:0px;
1027
+ clear:both;
1028
+ float:none;
1029
+ margin:0px;
1030
+ padding:0px;
1031
+ font-size:0px;
1032
+ height:1px;
1033
+ }
1034
+
1035
+ div.sinistra div.sep {
1036
+ background-color:transparent;
1037
+ border-width:0px;
1038
+ clear:both;
1039
+ float:none;
1040
+ margin:0px 0px 3px;
1041
+ padding:0px;
1042
+ font-size:0px;
1043
+ height:1px;
1044
+ }
1045
+
1046
+ /* generale */
1047
+ div.sinistra img {
1048
+ margin: 10px 10px 10px 0px;
1049
+ }
1050
+
1051
+ div.sinistra p {
1052
+ padding:0px;
1053
+ margin:0px;
1054
+ font-size:1em;
1055
+ font-family: Verdana,Arial,Geneva,Trebuchet,sans-serif;
1056
+ line-height:1.4em;
1057
+ }
1058
+
1059
+ div.sinistra div h1,
1060
+ div.sinistra div h1 a {
1061
+ margin:0px;
1062
+ padding:0px;
1063
+ font-size:1em;
1064
+ line-height:1.3em;
1065
+ color:#900;
1066
+ }
1067
+
1068
+ div.sinistra div h1 a {
1069
+ padding:0px;
1070
+ font-size:1em;
1071
+ text-decoration:none;
1072
+ border-width:0px;
1073
+ color:#006633;
1074
+ }
1075
+
1076
+ div.sinistra div h1 a:hover {
1077
+ color:#900;
1078
+ }
1079
+
1080
+ div.sinistra div h2 {
1081
+ font-size:1em;
1082
+ margin:0px;
1083
+ padding:0px;
1084
+ color:#554;
1085
+ }
1086
+
1087
+ /* chiusura */
1088
+ div.sinistra p.close {
1089
+ margin:0px;
1090
+ padding:0px;
1091
+ line-height:1em;
1092
+ text-align:right;
1093
+ }
1094
+
1095
+ div.sinistra p.close a {
1096
+ line-height:1em;
1097
+ font-size:0.90em;
1098
+ color:#063;
1099
+ text-decoration:none;
1100
+ font-weight:bold;
1101
+ }
1102
+ /* fine colonna sinistra */
1103
+
1104
+
1105
+ /* colonna centrale */
1106
+ /* div contesto */
1107
+ div.centro div {
1108
+ margin:0px 0px 0px;
1109
+ padding:0px;
1110
+ text-align:left;
1111
+ }
1112
+
1113
+ /* div elemento */
1114
+ div.centro div div {
1115
+ margin:0px 0px 15px;
1116
+ padding:0px;
1117
+ border-width: 0px 0px 1px;
1118
+ border-style:solid;
1119
+ border-color:#008440;
1120
+ }
1121
+
1122
+ /*spacer e sep */
1123
+ div.centro div.spacer {
1124
+ background-color:transparent;
1125
+ border-width:0px;
1126
+ clear:both;
1127
+ float:none;
1128
+ margin:0px;
1129
+ padding:0px;
1130
+ font-size:0px;
1131
+ height:1px;
1132
+ }
1133
+
1134
+ div.centro div.sep {
1135
+ background-color:transparent;
1136
+ border-width:0px;
1137
+ clear:both;
1138
+ float:none;
1139
+ margin:0px 0px 5px;
1140
+ padding:0px;
1141
+ font-size:0px;
1142
+ height:1px;
1143
+ }
1144
+
1145
+ /* generale */
1146
+ div.centro img {
1147
+ margin: 10px 10px 10px 0px;
1148
+ }
1149
+
1150
+ div.centro p {
1151
+ padding:0px 0px 5px;
1152
+ margin:0px;
1153
+ font-size:1em;
1154
+ font-family: Verdana,Arial,Geneva,Trebuchet,sans-serif;
1155
+ line-height:1.7em;
1156
+ }
1157
+
1158
+ div.centro a {
1159
+ color:#063;
1160
+ }
1161
+
1162
+ div.centro a:hover {
1163
+ color:#900;
1164
+ }
1165
+
1166
+ div.centro div h1,
1167
+ div.centro div h1 a {
1168
+ margin:0px;
1169
+ padding:0px;
1170
+ color:#006633;
1171
+ font-size:1em;
1172
+ line-height:1.3em;
1173
+ }
1174
+
1175
+ div.centro div h1 a {
1176
+ padding:0px;
1177
+ font-size:1em;
1178
+ text-decoration:none;
1179
+ border-width:0px;
1180
+ }
1181
+
1182
+ div.centro div h1 a:hover {
1183
+ color:#990000;
1184
+ }
1185
+
1186
+ div.centro div h2 {
1187
+ font-size:1em;
1188
+ margin:0px;
1189
+ padding:0px;
1190
+ color:#75726b;
1191
+ }
1192
+
1193
+ div.centro div h3 {
1194
+ font-size:0.90em;
1195
+ line-height:1.2em;
1196
+ margin:0px;
1197
+ padding:0px;
1198
+ font-weight:normal;
1199
+ }
1200
+
1201
+ div.centro div h4,
1202
+ div.centro div h5,
1203
+ div.centro div h6 {
1204
+ color:#900;
1205
+ line-height:1.6em;
1206
+ margin:0px;
1207
+ padding:0px;
1208
+ }
1209
+
1210
+ div.centro div h4 {
1211
+ font-size:1em;
1212
+ }
1213
+
1214
+ div.centro div h5 {
1215
+ font-size:0.90em;
1216
+ }
1217
+ div.centro div h6 {
1218
+ font-size:0.90em;
1219
+ font-weight:normal;
1220
+ }
1221
+
1222
+ div.centro table.xtb {
1223
+ font-size:0.90em;
1224
+ padding:0px;
1225
+ margin:0px;
1226
+ width:auto;
1227
+ border-width:1px 0px 0px 1px;
1228
+ border-style:solid;
1229
+ border-color:#c9b983;
1230
+ }
1231
+
1232
+ div.centro table.xtb td {
1233
+ padding:3px;
1234
+ margin:0px;
1235
+ vertical-align:top;
1236
+ border-width:0px 1px 1px 0px;
1237
+ border-style:solid;
1238
+ border-color:#c9b983;
1239
+ }
1240
+
1241
+ div.centro div div.channel,
1242
+ div.centro div div.topic {
1243
+ border-width:0px;
1244
+ }
1245
+
1246
+ div.centro div div.channel h1{
1247
+ font-size:1.5em;
1248
+ margin:0px;
1249
+ color: #990000;
1250
+ text-align:center;
1251
+ }
1252
+
1253
+ div.centro div div.topic h1 {
1254
+ font-size:1.3em;
1255
+ color: #990000;
1256
+ }
1257
+
1258
+ div.centro div div.channel h1 a,
1259
+ div.centro div div.topic h1 a {
1260
+ font-size:1em;
1261
+ border-width:0px;
1262
+ padding:0px;
1263
+ }
1264
+
1265
+ div.centro div div.channel h2,
1266
+ div.centro div div.topic h2 {
1267
+ font-size:1.4em;
1268
+ color:#75726b;
1269
+ }
1270
+
1271
+ /* stili per chiusura elemento */
1272
+ div.centro p.close {
1273
+ margin:0px;
1274
+ padding:0px;
1275
+ text-align:right;
1276
+ }
1277
+
1278
+ div.centro p.close span {
1279
+ font-size:10px;
1280
+ line-height:1em;
1281
+ margin:0px;
1282
+ padding:0px;
1283
+ vertical-align:bottom;
1284
+ color:#006633;
1285
+ }
1286
+
1287
+ div.centro p.close span.auth {
1288
+ margin:0px auto 0px 0px;
1289
+ }
1290
+
1291
+ div.centro p.close span.auths {
1292
+ margin:0px 0px 0px 50px;
1293
+ }
1294
+
1295
+ div.centro p.close span.top {
1296
+ margin:0px 0px 0px 50px;
1297
+ }
1298
+
1299
+ div.centro p.close span.link{
1300
+ margin:0px 0px 0px 20px;
1301
+ }
1302
+
1303
+ div.centro p.close span a {
1304
+ text-decoration:none;
1305
+ font-size:10px;
1306
+ padding:0px;
1307
+ color:#006633;
1308
+ }
1309
+
1310
+ div.centro p.close span a:hover {
1311
+ font-size:10px;
1312
+ padding:0px;
1313
+ color:#900;
1314
+ }
1315
+
1316
+ div.centro p.close span img {
1317
+ padding:0px;
1318
+ margin:0px;
1319
+ vertical-align:bottom;
1320
+ }
1321
+
1322
+ /* fine chiusura */
1323
+
1324
+ /* texttile */
1325
+ div.centro div.textile {
1326
+ font-size:12px;
1327
+ border-width:0px;
1328
+ padding:0px;
1329
+ margin:0px;
1330
+ }
1331
+
1332
+ /* colonna destra */
1333
+ /* div contesto */
1334
+ div.destra div {
1335
+ margin:0px 0px 10px;
1336
+ padding:0px;
1337
+ }
1338
+
1339
+ /* div elemento */
1340
+ div.destra div div {
1341
+ margin:0px 0px 5px;
1342
+ padding:0px;
1343
+ }
1344
+
1345
+ /*spacer e sep */
1346
+ div.destra div.spacer {
1347
+ background-color:transparent;
1348
+ border-width:0px;
1349
+ clear:both;
1350
+ float:none;
1351
+ margin:0px;
1352
+ padding:0px;
1353
+ font-size:0px;
1354
+ height:1px;
1355
+ }
1356
+
1357
+ div.destra div.sep {
1358
+ background-color:transparent;
1359
+ border-width:0px;
1360
+ clear:both;
1361
+ float:none;
1362
+ margin:0px 0px 3px;
1363
+ padding:0px;
1364
+ font-size:0px;
1365
+ height:1px;
1366
+ }
1367
+
1368
+ /* generale */
1369
+ div.destra img {
1370
+ margin: 10px 10px 10px 0px;
1371
+ }
1372
+
1373
+ div.destra p {
1374
+ padding:0px 0px 5px;
1375
+ margin:0px;
1376
+ font-size:1em;
1377
+ font-family: Verdana,Arial,Geneva,Trebuchet,sans-serif;
1378
+ line-height:1.4em;
1379
+ }
1380
+
1381
+ div.destra div.topic p.description0 {
1382
+ font-weight:bold;
1383
+ }
1384
+
1385
+ div.destra div h1,
1386
+ div.destra div h1 a {
1387
+ margin:0px;
1388
+ padding:0px;
1389
+ color:#990000;
1390
+ font-size:1em;
1391
+ line-height:1.3em;
1392
+ }
1393
+
1394
+ div.destra div h1 a {
1395
+ padding:0px;
1396
+ font-size:1em;
1397
+ text-decoration:none;
1398
+ border-width:0px;
1399
+ color:#006633;
1400
+ }
1401
+
1402
+ div.destra div h1 a:hover {
1403
+ color:#990000;
1404
+ }
1405
+
1406
+ div.destra div h2 {
1407
+ font-size:1em;
1408
+ margin:0px;
1409
+ padding:0px;
1410
+ color:#000;
1411
+ }
1412
+
1413
+ div.destra div h3 {
1414
+ font-size:1em;
1415
+ margin:0px;
1416
+ padding:0px;
1417
+ font-weight:normal;
1418
+ }
1419
+
1420
+ div.destra div div.channel {
1421
+ border-width:0px;
1422
+ }
1423
+
1424
+ div.destra div div.channel h1,
1425
+ div.destra div div.channel h1 a,
1426
+ div.destra div div.topic h1,
1427
+ div.destra div div.topic h1 a {
1428
+ font-size:1.2em;
1429
+ margin:0px;
1430
+ color: #990000;
1431
+ }
1432
+
1433
+ div.destra div div.channel h1 a,
1434
+ div.destra div div.topic h1 a {
1435
+ font-size:1em;
1436
+ border-width:0px;
1437
+ padding:0px;
1438
+ }
1439
+
1440
+ /* chiusura */
1441
+ div.destra p.close {
1442
+ margin:0px;
1443
+ padding:0px;
1444
+ line-height:1em;
1445
+ text-align:right;
1446
+ }
1447
+
1448
+ div.destra p.close a {
1449
+ line-height:1em;
1450
+ font-size:1em;
1451
+ color:#063;
1452
+ text-decoration:none;
1453
+ font-weight:bold;
1454
+ }
1455
+
1456
+ /* stile per i rimandi all'archivio */
1457
+ div.destra div.archivio {
1458
+ margin:0px;
1459
+ padding:0px;
1460
+ }
1461
+
1462
+ div.destra div.archivio h1,
1463
+ div.destra div.archivio h1 a {
1464
+ font-size:1em;
1465
+ margin:0px;
1466
+ color: #990000;
1467
+ }
1468
+
1469
+ div.destra div.archivio h1 a {
1470
+ color:#006633;
1471
+ font-size:1em;
1472
+ }
1473
+
1474
+ div.destra div.archivio p{
1475
+ font-size:1em;
1476
+ line-height:1.2em;
1477
+ }
1478
+
1479
+ div.destra div.archivio div.topic h1,
1480
+ div.destra div.archivio div.topic h1 a {
1481
+ font-size:1.2em;
1482
+ margin:0px;
1483
+ }
1484
+
1485
+ /* fine colonna destra */
1486
+ /* appunti filetool */
1487
+ /* div di contenimento - differenziazione stili */
1488
+ div.filetool {
1489
+ margin:0px;
1490
+ padding:0px;
1491
+ font-size:1em;
1492
+ border-width:0px;
1493
+ }
1494
+
1495
+ div.filetool div.interiors {
1496
+ margin:0px;
1497
+ padding:0px;
1498
+ border-width:0px;
1499
+ }
1500
+
1501
+ /*div page embedded*/
1502
+ div.filetool div.filetool-sxw,
1503
+ div.filetool div.filetool-doc,
1504
+ div.filetool div.filetool-html {
1505
+ border-width:0px;
1506
+ text-align:left;
1507
+ }
1508
+
1509
+ /* articoli */
1510
+
1511
+ div.filetool div.filetool-txt,
1512
+ div.filetool div.filetool-xil,
1513
+ div.filetool div.filetool-art {
1514
+ border-width:0px;
1515
+ text-align:left;
1516
+ border-width:0px;
1517
+ }
1518
+
1519
+ div.filetool img {
1520
+ vertical-align:top;
1521
+ margin:0px 5px 10px 0px;
1522
+ padding:0px;
1523
+ }
1524
+
1525
+ /* parti comuni */
1526
+ div.filetool h1.doctitle,
1527
+ div.filetool div.filetool-xil h1,
1528
+ div.filetool div.filetool-art h1,
1529
+ div.filetool div.filetool-txt h1 {
1530
+ margin:0px 0px 10px;
1531
+ font-size:1.5em;
1532
+ color:#900;
1533
+ }
1534
+
1535
+ div.filetool div.h1 h1,
1536
+ div.filetool div.filetool-xil h2,
1537
+ div.filetool div.filetool-art h2 {
1538
+ margin:0px 0px 10px;
1539
+ font-size:1.3em;
1540
+ font-style:italic;
1541
+ color:#665;
1542
+ }
1543
+
1544
+ div.filetool div.h2 h1,
1545
+ div.filetool div.filetool-xil h3,
1546
+ div.filetool div.filetool-art h3 {
1547
+ margin:0px 0px 10px;
1548
+ font-size:1em;
1549
+ font-weight:bold;
1550
+ font-style:normal;
1551
+ color:#900;
1552
+ }
1553
+
1554
+ div.filetool div.h3 h1,
1555
+ div.filetool div.filetool-xil h4 {
1556
+ margin:0px 0px 10px;
1557
+ font-size:1em;
1558
+ font-weight:bold;
1559
+ font-style:normal;
1560
+ color:#000;
1561
+ }
1562
+
1563
+ /* citazione in wp e art */
1564
+ blockquote,
1565
+ div.filetool p.quote,
1566
+ div.filetool p.blocco {
1567
+ /*font-style:italic;*/
1568
+ width:85%;
1569
+ margin:0px auto 5px;
1570
+ }
1571
+
1572
+ /*note*/
1573
+ a.popupnote {
1574
+ text-decoration: underline;
1575
+ cursor: pointer;
1576
+ font-weight:bold;
1577
+ }
1578
+
1579
+ span.popup {
1580
+ display: none;
1581
+ background-color: #feb;
1582
+ border-style: solid;
1583
+ border-color: #116611;
1584
+ border-width: 1px 2px 2px 1px;
1585
+ position: absolute;
1586
+ width: 280px;
1587
+ padding: 5px 10px 8px 5px;
1588
+ z-index: 100;
1589
+ color: black;
1590
+ }
1591
+
1592
+ span.popup span.notehead {
1593
+ margin: 0px 0px 5px;
1594
+ padding: 3px;
1595
+ text-align: left;
1596
+ background-color:#063;
1597
+ }
1598
+
1599
+ span.notehead a, span.notehead a:visited, span.notehead a:active {
1600
+ margin: 0px;
1601
+ padding: 0px;
1602
+ text-decoration: none;
1603
+ cursor: pointer;
1604
+ color:#fff9e5;
1605
+ font-weight:bold;
1606
+ }
1607
+
1608
+ span.notehead a:hover {
1609
+ color:#fff;
1610
+ }
1611
+
1612
+ /* wp OO e art */
1613
+ /* stili per wp_xml_pager */
1614
+ div.filetool strong.u {
1615
+ font-weight:normal;
1616
+ text-decoration:underline;
1617
+ }
1618
+
1619
+ /* navigazione e pager */
1620
+ div.filetool a.h1,
1621
+ div.filetool a.h2,
1622
+ div.filetool a.h3 {
1623
+ display:block;
1624
+ margin:0px;
1625
+ padding:5px 0px 0px 20px;
1626
+ background-color:transparent;
1627
+ }
1628
+
1629
+ table.page td div.filetool div.h1,
1630
+ table.page td div.filetool div.h2,
1631
+ table.page td div.filetool div.h3 {
1632
+ border-width:0px;
1633
+ margin:25px 0px 0px;
1634
+ }
1635
+
1636
+ div.filetool div.navbar {
1637
+ border-style:solid;
1638
+ border-color:#006633;
1639
+ border-width:0px 0px 1px;
1640
+ margin:2% 0%;
1641
+ text-align:right;
1642
+ }
1643
+
1644
+ div.navbar a {
1645
+ text-align:right;
1646
+ margin:0px;
1647
+ padding:5px 0px 0px 20px;
1648
+ background-color:transparent;
1649
+ font-weight:bold;
1650
+ text-decoration:none;
1651
+ }
1652
+
1653
+ /*table*/
1654
+ /* per le tabelle word che dentro hanno paragrafi */
1655
+ table td p {
1656
+ text-indent:0px;
1657
+ margin:0px;
1658
+ padding:0px;
1659
+ }
1660
+
1661
+ /* table */
1662
+ div.filetool table {
1663
+ font-size:0.90em;
1664
+ padding:0px;
1665
+ margin:0px;
1666
+ width:auto;
1667
+ border-width:1px 0px 0px 1px;
1668
+ border-style:solid;
1669
+ border-color:#c9b983;
1670
+ }
1671
+
1672
+ div.filetool table td {
1673
+ padding:3px;
1674
+ margin:0px;
1675
+ vertical-align:top;
1676
+ border-width:0px 1px 1px 0px;
1677
+ border-style:solid;
1678
+ border-color:#c9b983;
1679
+ }
1680
+
1681
+ /* textile */
1682
+ div.filetool div.filetool-xil h1,
1683
+ div.filetool div.filetool-xil h2 {
1684
+ margin:0px 0px 10px;
1685
+ }
1686
+
1687
+ div.filetool div.filetool-xil h3 {
1688
+ font-weight:bold;
1689
+ margin:0px 0px 5px;
1690
+ }
1691
+
1692
+ div.filetool div.filetool-xil h5,
1693
+ div.filetool div.filetool-xil h6 {
1694
+ color:#000;
1695
+ }
1696
+
1697
+ blockquote, pre {
1698
+ margin:5px 50px;
1699
+ margin-right:30px;
1700
+ font-size:0.9em;
1701
+ text-align:justify;
1702
+ }
1703
+
1704
+ sub, sup {
1705
+ color:#000;
1706
+ }
1707
+
1708
+ del, ins {
1709
+ color:#664;
1710
+ }
1711
+
1712
+ acronym {
1713
+ cursor:pointer;
1714
+ }
1715
+
1716
+ /*art*/
1717
+ div.xml2html {
1718
+ margin:0px;
1719
+ padding:0px;
1720
+ border-width:0px;
1721
+ }
1722
+
1723
+ /*titoli*/
1724
+ div.filetool div.filetool-art h2 {
1725
+ margin:10px 0px 5px;
1726
+ }
1727
+
1728
+ div.filetool div.filetool-art h3 {
1729
+ margin:10px 0px 5px;
1730
+ font-weight:bold;
1731
+ }
1732
+
1733
+ div.filetool div.filetool-art p.exergo {
1734
+ width:90%;
1735
+ margin:0px 0px 0px auto;
1736
+ }
1737
+
1738
+ div.filetool div.filetool-art p.blocco {
1739
+ width:80%;
1740
+ margin:0px auto 0px;
1741
+ }
1742
+
1743
+ div.filetool div.filetool-art p.norientro {
1744
+ text-indent:0px;
1745
+ text-align:left;
1746
+ margin:0px;
1747
+ }
1748
+
1749
+ </style>
1750
+ <script language="javascript" type="text/javascript">
1751
+ /* including:ecds_script */var isNav4, isNav6, isIE4;
1752
+
1753
+ /*
1754
+ * Browser version snooper; determines your browser
1755
+ * (Navigator 4, Navigator 6, or Internet Explorer 4/5)
1756
+ */
1757
+ function setBrowser()
1758
+ {
1759
+ if (navigator.appVersion.charAt(0) == "4")
1760
+ {
1761
+ if (navigator.appName.indexOf("Explorer") >= 0)
1762
+ {
1763
+ isIE4 = true;
1764
+ }
1765
+ else
1766
+ {
1767
+ isNav4 = true;
1768
+ }
1769
+ }
1770
+ else if (navigator.appVersion.charAt(0) > "4")
1771
+ {
1772
+ isNav6 = true;
1773
+ }
1774
+ }
1775
+
1776
+ /*
1777
+ *
1778
+ * Given a selector string, return a style object
1779
+ * by searching through stylesheets. Return null if
1780
+ * none found
1781
+ *
1782
+ */
1783
+ function getStyleBySelector( selector )
1784
+ {
1785
+ if (!isNav6)
1786
+ {
1787
+ return null;
1788
+ }
1789
+ var sheetList = document.styleSheets;
1790
+ var ruleList;
1791
+ var i, j;
1792
+
1793
+ /* look through stylesheets in reverse order that
1794
+ they appear in the document */
1795
+ for (i=sheetList.length-1; i >= 0; i--)
1796
+ {
1797
+ ruleList = sheetList[i].cssRules;
1798
+ for (j=0; j<ruleList.length; j++)
1799
+ {
1800
+ if (ruleList[j].type == CSSRule.STYLE_RULE &&
1801
+ ruleList[j].selectorText == selector)
1802
+ {
1803
+ return ruleList[j].style;
1804
+ }
1805
+ }
1806
+ }
1807
+ return null;
1808
+ }
1809
+
1810
+ /*
1811
+ *
1812
+ * Given an id and a property (as strings), return
1813
+ * the given property of that id. Navigator 6 will
1814
+ * first look for the property in a tag; if not found,
1815
+ * it will look through the stylesheet.
1816
+ *
1817
+ * Note: do not precede the id with a # -- it will be
1818
+ * appended when searching the stylesheets
1819
+ *
1820
+ */
1821
+ function getIdProperty( id, property )
1822
+ {
1823
+ if (isNav6)
1824
+ {
1825
+ var styleObject = document.getElementById( id );
1826
+ if (styleObject != null)
1827
+ {
1828
+ styleObject = styleObject.style;
1829
+ if (styleObject[property])
1830
+ {
1831
+ return styleObject[ property ];
1832
+ }
1833
+ }
1834
+ styleObject = getStyleBySelector( "#" + id );
1835
+ return (styleObject != null) ?
1836
+ styleObject[property] :
1837
+ null;
1838
+ }
1839
+ else if (isNav4)
1840
+ {
1841
+ return document[id][property];
1842
+ }
1843
+ else
1844
+ {
1845
+ return document.all[id].style[property];
1846
+ }
1847
+ }
1848
+
1849
+ /*
1850
+ *
1851
+ * Given an id and a property (as strings), set
1852
+ * the given property of that id to the value provided.
1853
+ *
1854
+ * The property is set directly on the tag, not in the
1855
+ * stylesheet.
1856
+ *
1857
+ */
1858
+ function setIdProperty( id, property, value )
1859
+ {
1860
+ if (isNav6)
1861
+ {
1862
+ var styleObject = document.getElementById( id );
1863
+ if (styleObject != null)
1864
+ {
1865
+ styleObject = styleObject.style;
1866
+ styleObject[ property ] = value;
1867
+ }
1868
+
1869
+ /*
1870
+ styleObject = getStyleBySelector( "#" + id );
1871
+ if (styleObject != null)
1872
+ {
1873
+ styleObject[property] = value;
1874
+ }
1875
+ */
1876
+ }
1877
+ else if (isNav4)
1878
+ {
1879
+ document[id][property] = value;
1880
+ }
1881
+ else if (isIE4)
1882
+ {
1883
+ document.all[id].style[property] = value;
1884
+ }
1885
+ }
1886
+
1887
+ /*
1888
+ *
1889
+ * Move a given id. If additive is true,
1890
+ * then move it by xValue dots horizontally and
1891
+ * yValue units vertically. If additive is
1892
+ * false, then move it to (xValue, yValue)
1893
+ *
1894
+ * Note: do not precede the id with a # -- it will be
1895
+ * appended when searching the stylesheets
1896
+ *
1897
+ * Note also: length units are preserved in Navigator 6
1898
+ * and Internet Explorer. That is, if left is 2cm and
1899
+ * top is 3cm, and you move to (4, 5), the left will
1900
+ * become 4cm and the top 5cm.
1901
+ *
1902
+ */
1903
+ function generic_move( id, xValue, yValue, additive )
1904
+ {
1905
+ var left = getIdProperty(id, "left");
1906
+ var top = getIdProperty(id, "top");
1907
+ var leftMatch, topMatch;
1908
+
1909
+ if (isNav4)
1910
+ {
1911
+ leftMatch = new Array( 0, left, "");
1912
+ topMatch = new Array( 0, top, "");
1913
+ }
1914
+ else if (isNav6 || isIE4 )
1915
+ {
1916
+ var splitexp = /([-0-9.]+)(\w+)/;
1917
+ leftMatch = splitexp.exec( left );
1918
+ topMatch = splitexp.exec( top );
1919
+ if (leftMatch == null || topMatch == null)
1920
+ {
1921
+ leftMatch = new Array(0, 0, "px");
1922
+ topMatch = new Array(0, 0, "px");
1923
+ }
1924
+ }
1925
+ left = ((additive) ? parseFloat( leftMatch[1] ) : 0) + xValue;
1926
+ top = ((additive) ? parseFloat( topMatch[1] ) : 0) + yValue;
1927
+ setIdProperty( id, "left", left + leftMatch[2] );
1928
+ setIdProperty( id, "top", top + topMatch[2] );
1929
+ }
1930
+
1931
+ /*
1932
+ *
1933
+ * Move a given id to position (xValue, yValue)
1934
+ *
1935
+ */
1936
+ function moveTo( id, x, y )
1937
+ {
1938
+ generic_move( id, x, y, false );
1939
+ }
1940
+
1941
+ /*
1942
+ *
1943
+ * Move a given id to (currentX + xValue, currentY + yValue)
1944
+ *
1945
+ */
1946
+ function moveBy( id, x, y)
1947
+ {
1948
+ generic_move( id, x, y, true );
1949
+ }
1950
+
1951
+ /*
1952
+ *
1953
+ * Function used when converting rgb format colors
1954
+ * from Navigator 6 to a hex format
1955
+ *
1956
+ */
1957
+ function hex( n )
1958
+ {
1959
+ var hexdigits = "0123456789abcdef";
1960
+ return ( hexdigits.charAt(n >> 4) + hexdigits.charAt(n & 0x0f) );
1961
+ }
1962
+
1963
+ /*
1964
+ *
1965
+ * Retrieve background color for a given id.
1966
+ * The value returned will be in hex format (#rrggbb)
1967
+ *
1968
+ */
1969
+ function getBackgroundColor( id )
1970
+ {
1971
+ var color;
1972
+
1973
+ if (isNav4)
1974
+ {
1975
+ color = document[id].bgColor;
1976
+ }
1977
+ else if (isNav6)
1978
+ {
1979
+ var parseExp = /rgb.(\d+),(\d+),(\d+)./;
1980
+ var rgbvals;
1981
+ color = getIdProperty( id, "backgroundColor" );
1982
+ if (color)
1983
+ {
1984
+ rgbvals = parseExp.exec( color );
1985
+ if (rgbvals)
1986
+ {
1987
+ color = "#" + hex( rgbvals[1] ) + hex( rgbvals[2] ) +
1988
+ hex( rgbvals[3] );
1989
+ }
1990
+ }
1991
+ return color;
1992
+ }
1993
+ else if (isIE4)
1994
+ {
1995
+ return document.all[id].backgroundColor;
1996
+ }
1997
+ return "";
1998
+ }
1999
+
2000
+ /*
2001
+ *
2002
+ * Return a division's document
2003
+ *
2004
+ */
2005
+ function getDocument( divName )
2006
+ {
2007
+ var doc;
2008
+
2009
+ if (isNav4)
2010
+ {
2011
+ doc = window.document[divName].document;
2012
+ }
2013
+ else if (isNav6)
2014
+ {
2015
+ doc = document;
2016
+ }
2017
+ else if (isIE4)
2018
+ {
2019
+ doc = document;
2020
+ }
2021
+ return doc;
2022
+ }
2023
+
2024
+ function mgtChangeVis(id, vmode){
2025
+ theNode = document.getElementById( id);
2026
+ if (theNode){
2027
+ setIdProperty( id, "display", vmode );
2028
+ }
2029
+ }
2030
+
2031
+ function mgtSetVisible(id, force){
2032
+ theNode = document.getElementById( id);
2033
+ if (theNode){
2034
+ if (force == 1){
2035
+ if (mgtsticknote != id){
2036
+ //alert ('setting invisible '+id);
2037
+ mgtSetInvisible(mgtsticknote, 1);
2038
+ mgtsticknote = id;
2039
+ setIdProperty( id, "display", "block" );
2040
+ }
2041
+ else {
2042
+ mgtSetInvisible(id, 1);
2043
+ }
2044
+ }
2045
+ else {
2046
+ setIdProperty( id, "display", "block" );
2047
+ }
2048
+ }
2049
+ }
2050
+
2051
+ function mgtSetInvisible(id, force){
2052
+ theNode = document.getElementById( id);
2053
+ if (theNode){
2054
+ if (mgtsticknote != id || force == 1){
2055
+ //alert ('setting invisible '+id);
2056
+ setIdProperty( id, "display", "none" );
2057
+ if (force == 1){
2058
+ //alert ('forcing invisible '+id);
2059
+ mgtsticknote = null;
2060
+ }
2061
+ }
2062
+ }
2063
+ }
2064
+
2065
+ setBrowser();
2066
+ mgtsticknote = 0;
2067
+
2068
+ function mgtSetIframe (perc, opt) {
2069
+ var iframe=document.getElementById("ecdsiframe");
2070
+ var theDiv=iframe.parentNode;
2071
+ if (opt == "win") {
2072
+ if (window.innerHeight) {
2073
+ var innerH=window.innerHeight;
2074
+ var heightVal=(innerH/100)*perc;
2075
+ iframe.height=heightVal;
2076
+ }
2077
+ if (!window.innerHeight && window.screen.availHeight) {
2078
+ var innerH=window.screen.availHeight;
2079
+ var heightVal=(innerH/100)*perc;
2080
+ iframe.height=heightVal;
2081
+ }
2082
+ if (!document.body.clientHeight && document.documentElement.clientHeight) {
2083
+ var innerH=document.documentElement.clientHeight;
2084
+ var heightVal=(innerH/100)*perc;
2085
+ iframe.height=heightVal;
2086
+ }
2087
+ }
2088
+ if (opt == "div") {
2089
+ iframe.height=theDiv.offsetHeight;
2090
+ iframe.width=theDiv.offsetWidth;
2091
+ }
2092
+ }
2093
+
2094
+ </script></head><body>
2095
+ <div class="testata">
2096
+ <div class="spacer"></div>
2097
+ <div class="upper">
2098
+ <div class="spacer"></div>
2099
+ <div class="left">
2100
+ <div class="logo">
2101
+ <!-- LOGO -->
2102
+ <a class="logo" href="http://filosofia.dipafilo.unimi.it/%7Eaevum/ecds/p/ecds/r/ecds">
2103
+ <img class="logo" src="ecds_files/upld.gif" alt="Doctor Virtualis - Filosofia medievale" border="0" height="80" vspace="0" width="134"></a><!-- END LOGO -->
2104
+ </div>
2105
+ </div>
2106
+ <div class="center">
2107
+ <div class="title">
2108
+ <h1>DOCTOR VIRTUALIS</h1>
2109
+ </div>
2110
+ <div class="subtitle">
2111
+ <h2>Rivista online di storia della filosofia medievale</h2>
2112
+ </div>
2113
+ </div>
2114
+ <div class="right">
2115
+ <div class="auth">
2116
+ <a href="http://filosofia.dipafilo.unimi.it/%7Eaevum/ecds/ing/1/p/ecds/r/ecds">login</a><a href="http://filosofia.dipafilo.unimi.it/%7Eaevum/ecds/a/login/corpo/reminder">memo</a><a href="http://filosofia.dipafilo.unimi.it/%7Eaevum/ecds/a/login/corpo/register">register</a>
2117
+ </div>
2118
+ </div>
2119
+ <div class="spacer"></div>
2120
+ </div>
2121
+ <div class="middle">
2122
+ <div class="spacer"></div>
2123
+ <div class="left">
2124
+ <div class="menu">
2125
+ <table class="mainmenu" cellpadding="0" cellspacing="0"><tbody><tr><td>
2126
+ &nbsp;<a class="amainmenu" href="http://filosofia.dipafilo.unimi.it/%7Eaevum/ecds/p/ecds/r/ecds">Domus</a>&nbsp;
2127
+ </td>
2128
+ <td>
2129
+ &nbsp;<a class="mainmenu" href="http://filosofia.dipafilo.unimi.it/%7Eaevum/ecds/p/aevum/r/page0">Aevum</a>&nbsp;
2130
+ </td>
2131
+ <td>
2132
+ &nbsp;<a class="mainmenu" href="http://filosofia.dipafilo.unimi.it/%7Eaevum/ecds/p/tempus/r/page1">Tempus</a>&nbsp;
2133
+ </td>
2134
+ <td>
2135
+ &nbsp;<a class="mainmenu" href="http://filosofia.dipafilo.unimi.it/%7Eaevum/ecds/p/successio/r/page2">Successio</a>&nbsp;
2136
+ </td>
2137
+ <td>
2138
+ &nbsp;<a class="mainmenu" href="http://filosofia.dipafilo.unimi.it/%7Eaevum/ecds/p/difformitas/r/page3">Difformitas</a>&nbsp;
2139
+ </td>
2140
+ <td>
2141
+ &nbsp;<a class="mainmenu" href="http://filosofia.dipafilo.unimi.it/%7Eaevum/ecds/a/mailer/p/ecds/r/mail">Epistulae</a>&nbsp;
2142
+ </td>
2143
+ </tr></tbody></table></div>
2144
+ </div>
2145
+ <div class="right">
2146
+ <div class="search">
2147
+ <form action="/~aevum/ecds/a/mgtdig/p/ecds/r/ecds" method="get">
2148
+ <label></label>
2149
+ <input name="mgtdig[words]" value="" size="10" type="text">
2150
+ <input title="search" class="butt" src="ecds_files/search.gif" height="25" type="image" width="56">
2151
+ <input name="mgtdig[page]" value="1" type="hidden"></form>
2152
+ </div><!-- end div search -->
2153
+ </div>
2154
+ <div class="spacer"></div>
2155
+ </div>
2156
+ <div class="spacer"></div>
2157
+ </div><table class="page" cellpadding="0" cellspacing="0">
2158
+ <tbody><tr valign="top">
2159
+ <td class="sinistra">
2160
+ <div class="sinistra">
2161
+ <div class="left">
2162
+ <!-- non display kind:context:: -->
2163
+
2164
+ <!-- INIZIO SEZIONE DI OUTPUT -->
2165
+ <div class="spacer"></div>
2166
+ <div class="topic"><p class="description">Diversi modi di relazione con la durata</p>
2167
+ <div class="spacer"></div>
2168
+ </div>
2169
+ <div class="spacer"></div>
2170
+ <!-- FINE SEZIONE DI OUTPUT -->
2171
+
2172
+ <!-- INIZIO SEZIONE DI OUTPUT -->
2173
+ <div class="spacer"></div>
2174
+ <div class="item"><h1><a href="http://filosofia.dipafilo.unimi.it/%7Eaevum/ecds/p/aevum/r/page0">Aevum</a></h1>
2175
+ <div class="sep"></div>
2176
+ <p class="description">Materiale che, in linea di principio, ha un inizio ma non una fine. Gli studi scientifici in senso stretto.</p>
2177
+ <div class="spacer"></div>
2178
+ </div>
2179
+ <div class="spacer"></div>
2180
+ <!-- FINE SEZIONE DI OUTPUT -->
2181
+
2182
+ <!-- INIZIO SEZIONE DI OUTPUT -->
2183
+ <div class="spacer"></div>
2184
+ <div class="item"><h1><a href="http://filosofia.dipafilo.unimi.it/%7Eaevum/ecds/p/tempus/r/page1">Tempus</a></h1>
2185
+ <div class="sep"></div>
2186
+ <p class="description">Materiale per la rete. Rubriche e interventi pi� agili e brevi.</p>
2187
+ <div class="spacer"></div>
2188
+ </div>
2189
+ <div class="spacer"></div>
2190
+ <!-- FINE SEZIONE DI OUTPUT -->
2191
+
2192
+ <!-- INIZIO SEZIONE DI OUTPUT -->
2193
+ <div class="spacer"></div>
2194
+ <div class="item"><h1><a href="http://filosofia.dipafilo.unimi.it/%7Eaevum/ecds/p/successio/r/page2">Successio</a></h1>
2195
+ <div class="sep"></div>
2196
+ <p class="description">Informazioni, discussioni e interventi.</p>
2197
+ <div class="spacer"></div>
2198
+ </div>
2199
+ <div class="spacer"></div>
2200
+ <!-- FINE SEZIONE DI OUTPUT -->
2201
+
2202
+ <!-- INIZIO SEZIONE DI OUTPUT -->
2203
+ <div class="spacer"></div>
2204
+ <div class="item"><h1><a href="http://filosofia.dipafilo.unimi.it/%7Eaevum/ecds/p/difformitas/r/page3">Difformitas</a></h1>
2205
+ <div class="sep"></div>
2206
+ <p class="description">Proposte per i non addetti ai lavori. </p>
2207
+ <div class="spacer"></div>
2208
+ </div>
2209
+ <div class="spacer"></div>
2210
+ <!-- FINE SEZIONE DI OUTPUT -->
2211
+
2212
+ <!-- INIZIO SEZIONE DI OUTPUT -->
2213
+ <div class="spacer"></div>
2214
+ <div class="item"><a target="_urlo" href="http://www.italiamedievale.org/sito_acim/premio_italia_medievale/2006/nominat_categorie/a06.html"><img class="urlo" src="ecds_files/upld.jpg" heigth="42" name="0" alt="Premio Italia Medievale" align="left" border="0" hspace="0" vspace="0" width="160"></a>
2215
+ <p>Per promuovere l'interesse per il Medioevo.</p>
2216
+ <p>Un invito ai nostri lettori: votate Doctor Virtualis.</p>
2217
+ <div class="spacer"></div>
2218
+ </div>
2219
+ <div class="spacer"></div>
2220
+ <!-- FINE SEZIONE DI OUTPUT -->
2221
+
2222
+ <!-- non display kind:context:: -->
2223
+
2224
+ </div></div>
2225
+ </td>
2226
+ <td class="centro">
2227
+ <div class="centro">
2228
+ <div class="center">
2229
+ <!-- non display kind:context:: -->
2230
+
2231
+ <!-- INIZIO SEZIONE DI OUTPUT -->
2232
+ <div class="spacer"></div>
2233
+ <div class="channel"><h1><a href="http://filosofia.dipafilo.unimi.it/%7Eaevum/ecds/p/aevum/r/page0">Doctor Virtualis n. 5</a></h1>
2234
+ <h2><br><b>Il tema monografico: <br><br>Bonaventura da Bagnoregio<br>Filosofia, teologia, relazione.</b></h2>
2235
+ <div class="sep"></div>
2236
+ <div class="spacer"></div>
2237
+ </div>
2238
+ <div class="spacer"></div>
2239
+ <!-- FINE SEZIONE DI OUTPUT -->
2240
+
2241
+ <!-- non display kind:context:: -->
2242
+
2243
+ </div><div class="center">
2244
+ <!-- non display kind:context:: -->
2245
+
2246
+ <!-- INIZIO SEZIONE DI OUTPUT -->
2247
+ <div class="spacer"></div>
2248
+ <div class="item"><h1><a href="http://filosofia.dipafilo.unimi.it/%7Eaevum/ecds/p/tempus/r/page1">Contenuto della sezione <i>Tempus</i></a></h1>
2249
+ <div class="sep"></div>
2250
+ <p>Rileggendo qualche pagina di Ratzinger su Bonaventura<br>Le cronache e le schede<br>I link</p>
2251
+ <div class="spacer"></div>
2252
+ <p class="close">
2253
+ <span class="link"><a href="http://filosofia.dipafilo.unimi.it/%7Eaevum/ecds/p/tempus/r/page1">vedi...</a></span>
2254
+ </p>
2255
+ <div class="spacer"></div>
2256
+ </div>
2257
+ <div class="spacer"></div>
2258
+ <!-- FINE SEZIONE DI OUTPUT -->
2259
+
2260
+ <!-- INIZIO SEZIONE DI OUTPUT -->
2261
+ <div class="spacer"></div>
2262
+ <div class="item"><h1><a href="http://filosofia.dipafilo.unimi.it/%7Eaevum/ecds/p/successio/r/page2">Contenuto della sezione <i>Successio</i></a></h1>
2263
+ <div class="sep"></div>
2264
+ <p>Discussioni e seminari.<br>Qualche domanda di fondo sul nostro esperimento e una riflessione dopo l'uscita del numero 5.</p>
2265
+ <div class="spacer"></div>
2266
+ <p class="close">
2267
+ <span class="link"><a href="http://filosofia.dipafilo.unimi.it/%7Eaevum/ecds/p/successio/r/page2">vedi...</a></span>
2268
+ </p>
2269
+ <div class="spacer"></div>
2270
+ </div>
2271
+ <div class="spacer"></div>
2272
+ <!-- FINE SEZIONE DI OUTPUT -->
2273
+
2274
+ <!-- INIZIO SEZIONE DI OUTPUT -->
2275
+ <div class="spacer"></div>
2276
+ <div class="item"><h1><a href="http://filosofia.dipafilo.unimi.it/%7Eaevum/ecds/p/difformitas/r/page3">Contenuto della sezione <i>Difformitas</i></a></h1>
2277
+ <div class="sep"></div>
2278
+ <p>E' tutto lecito quando si parla di Medioevo?<br>Lettori e lettere.<br>Pareri, opinioni, suggerimenti.</p>
2279
+ <div class="spacer"></div>
2280
+ <p class="close">
2281
+ <span class="link"><a href="http://filosofia.dipafilo.unimi.it/%7Eaevum/ecds/p/difformitas/r/page3">vedi...</a></span>
2282
+ </p>
2283
+ <div class="spacer"></div>
2284
+ </div>
2285
+ <div class="spacer"></div>
2286
+ <!-- FINE SEZIONE DI OUTPUT -->
2287
+
2288
+ <!-- non display kind:context:: -->
2289
+
2290
+ </div></div>
2291
+ </td>
2292
+ <td class="destra">
2293
+ <div class="destra">
2294
+ <div class="right">
2295
+ <!-- non display kind:context:: -->
2296
+
2297
+ <!-- INIZIO SEZIONE DI OUTPUT -->
2298
+ <div class="spacer"></div>
2299
+ <div class="topic"><h1>Chi siamo</h1>
2300
+ <div class="sep"></div>
2301
+ <p>Rivista di storia della filosofia medievale: ricerche, percorsi, ipotesi, proposte.<br><br>A cura delle cattedre di Storia della filosofia medievale della Universit� degli studi di Milano.<br><br>Direzione:
2302
+ Alfio Ferrara, Francesca Forte, Maria Teresa Fumagalli Beonio
2303
+ Brocchieri, Massimo Parodi, Marco Rossini, Manuela Di Roberto
2304
+ (coordinamento internet).<br><br>Ha collaborato alla redazione: Chiara Selogna.<br><br>La sezione <i>Aevum</i> di questo numero esiste anche su carta, come <i>Doctor Virtualis. Quaderno n. 5</i> presso Cuem, Milano.</p>
2305
+ <div class="spacer"></div>
2306
+ </div>
2307
+ <div class="spacer"></div>
2308
+ <!-- FINE SEZIONE DI OUTPUT -->
2309
+
2310
+ <!-- INIZIO SEZIONE DI OUTPUT -->
2311
+ <div class="spacer"></div>
2312
+ <div class="item"><h1>ultimo aggiornamento</h1>
2313
+ <h2>18 luglio 2006</h2>
2314
+ <div class="sep"></div>
2315
+ <p class="description0">per avere segnalazione delle novit�, fornire alla redazione il proprio indirizzo email</p>
2316
+ <div class="spacer"></div>
2317
+ </div>
2318
+ <div class="spacer"></div>
2319
+ <!-- FINE SEZIONE DI OUTPUT -->
2320
+
2321
+ <!-- non display kind:context:: -->
2322
+
2323
+ </div></div>
2324
+ </td>
2325
+ </tr>
2326
+ </tbody></table>
2327
+ <div class="footer">
2328
+ <div class="spacer"></div>
2329
+ <div class="upper">
2330
+ <div class="spacer"></div>
2331
+ <div class="left">
2332
+ <div class="menu">
2333
+ <table class="mainmenu" cellpadding="0" cellspacing="0"><tbody><tr><td>
2334
+ &nbsp;<a class="amainmenu" href="http://filosofia.dipafilo.unimi.it/%7Eaevum/ecds/p/ecds/r/ecds">Domus</a>&nbsp;
2335
+ </td>
2336
+ <td>
2337
+ &nbsp;<a class="mainmenu" href="http://filosofia.dipafilo.unimi.it/%7Eaevum/ecds/p/aevum/r/page0">Aevum</a>&nbsp;
2338
+ </td>
2339
+ <td>
2340
+ &nbsp;<a class="mainmenu" href="http://filosofia.dipafilo.unimi.it/%7Eaevum/ecds/p/tempus/r/page1">Tempus</a>&nbsp;
2341
+ </td>
2342
+ <td>
2343
+ &nbsp;<a class="mainmenu" href="http://filosofia.dipafilo.unimi.it/%7Eaevum/ecds/p/successio/r/page2">Successio</a>&nbsp;
2344
+ </td>
2345
+ <td>
2346
+ &nbsp;<a class="mainmenu" href="http://filosofia.dipafilo.unimi.it/%7Eaevum/ecds/p/difformitas/r/page3">Difformitas</a>&nbsp;
2347
+ </td>
2348
+ <td>
2349
+ &nbsp;<a class="mainmenu" href="http://filosofia.dipafilo.unimi.it/%7Eaevum/ecds/a/mailer/p/ecds/r/mail">Epistulae</a>&nbsp;
2350
+ </td>
2351
+ </tr></tbody></table></div>
2352
+ </div>
2353
+ <div class="right">
2354
+ <div class="authorship">
2355
+ <a class="authorship" target="_blank" href="http://www.preciso.net/ecds/p/authoring">Preciso Web Crafts</a>
2356
+ </div>
2357
+ </div>
2358
+ <div class="spacer"></div>
2359
+ </div>
2360
+ <div class="spacer"></div>
2361
+ </div>
2362
+ </body></html>