typo 5.2.98 → 5.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (302) hide show
  1. data/app/controllers/admin/sidebar_controller.rb +15 -3
  2. data/app/helpers/sidebar_helper.rb +9 -4
  3. data/app/models/feedback.rb +10 -2
  4. data/app/models/page_cache.rb +5 -1
  5. data/app/views/admin/blacklist/_blacklist_patterns.html.erb +2 -0
  6. data/app/views/admin/categories/new.html.erb +1 -1
  7. data/app/views/admin/content/_form.html.erb +3 -3
  8. data/app/views/admin/content/_simple_editor.html.erb +2 -0
  9. data/app/views/admin/content/_visual_editor.html.erb +2 -0
  10. data/app/views/admin/pages/_form.html.erb +5 -5
  11. data/app/views/admin/pages/_simple_editor.html.erb +2 -0
  12. data/app/views/admin/pages/_visual_editor.html.erb +2 -0
  13. data/app/views/articles/_comment_box.html.erb +1 -1
  14. data/app/views/articles/_comment_failed.html.erb +1 -1
  15. data/app/views/articles/read.html.erb +1 -1
  16. data/config/environment.rb +3 -2
  17. data/lib/tasks/release.rake +3 -4
  18. data/lib/typo_version.rb +1 -1
  19. data/public/stylesheets/administration.css +37 -2
  20. data/public/stylesheets/administration_rtl.css +316 -437
  21. data/vendor/actionwebservice/CHANGELOG +320 -0
  22. data/vendor/actionwebservice/MIT-LICENSE +21 -0
  23. data/vendor/actionwebservice/README +381 -0
  24. data/vendor/actionwebservice/Rakefile +173 -0
  25. data/vendor/actionwebservice/TODO +32 -0
  26. data/vendor/actionwebservice/examples/googlesearch/README +143 -0
  27. data/vendor/actionwebservice/examples/googlesearch/autoloading/google_search_api.rb +50 -0
  28. data/vendor/actionwebservice/examples/googlesearch/autoloading/google_search_controller.rb +57 -0
  29. data/vendor/actionwebservice/examples/googlesearch/delegated/google_search_service.rb +108 -0
  30. data/vendor/actionwebservice/examples/googlesearch/delegated/search_controller.rb +7 -0
  31. data/vendor/actionwebservice/examples/googlesearch/direct/google_search_api.rb +50 -0
  32. data/vendor/actionwebservice/examples/googlesearch/direct/search_controller.rb +58 -0
  33. data/vendor/actionwebservice/examples/metaWeblog/README +17 -0
  34. data/vendor/actionwebservice/examples/metaWeblog/apis/blogger_api.rb +60 -0
  35. data/vendor/actionwebservice/examples/metaWeblog/apis/blogger_service.rb +34 -0
  36. data/vendor/actionwebservice/examples/metaWeblog/apis/meta_weblog_api.rb +67 -0
  37. data/vendor/actionwebservice/examples/metaWeblog/apis/meta_weblog_service.rb +48 -0
  38. data/vendor/actionwebservice/examples/metaWeblog/controllers/xmlrpc_controller.rb +16 -0
  39. data/vendor/actionwebservice/generators/web_service/USAGE +28 -0
  40. data/vendor/actionwebservice/generators/web_service/templates/api_definition.rb +5 -0
  41. data/vendor/actionwebservice/generators/web_service/templates/controller.rb +8 -0
  42. data/vendor/actionwebservice/generators/web_service/templates/functional_test.rb +19 -0
  43. data/vendor/actionwebservice/generators/web_service/web_service_generator.rb +29 -0
  44. data/vendor/actionwebservice/lib/action_web_service.rb +66 -0
  45. data/vendor/actionwebservice/lib/action_web_service/api.rb +297 -0
  46. data/vendor/actionwebservice/lib/action_web_service/base.rb +38 -0
  47. data/vendor/actionwebservice/lib/action_web_service/casting.rb +144 -0
  48. data/vendor/actionwebservice/lib/action_web_service/client.rb +3 -0
  49. data/vendor/actionwebservice/lib/action_web_service/client/base.rb +28 -0
  50. data/vendor/actionwebservice/lib/action_web_service/client/soap_client.rb +113 -0
  51. data/vendor/actionwebservice/lib/action_web_service/client/xmlrpc_client.rb +58 -0
  52. data/vendor/actionwebservice/lib/action_web_service/container.rb +3 -0
  53. data/vendor/actionwebservice/lib/action_web_service/container/action_controller_container.rb +93 -0
  54. data/vendor/actionwebservice/lib/action_web_service/container/delegated_container.rb +86 -0
  55. data/vendor/actionwebservice/lib/action_web_service/container/direct_container.rb +69 -0
  56. data/vendor/actionwebservice/lib/action_web_service/dispatcher.rb +2 -0
  57. data/vendor/actionwebservice/lib/action_web_service/dispatcher/abstract.rb +207 -0
  58. data/vendor/actionwebservice/lib/action_web_service/dispatcher/action_controller_dispatcher.rb +379 -0
  59. data/vendor/actionwebservice/lib/action_web_service/invocation.rb +202 -0
  60. data/vendor/actionwebservice/lib/action_web_service/protocol.rb +4 -0
  61. data/vendor/actionwebservice/lib/action_web_service/protocol/abstract.rb +112 -0
  62. data/vendor/actionwebservice/lib/action_web_service/protocol/discovery.rb +37 -0
  63. data/vendor/actionwebservice/lib/action_web_service/protocol/soap_protocol.rb +176 -0
  64. data/vendor/actionwebservice/lib/action_web_service/protocol/soap_protocol/marshaler.rb +242 -0
  65. data/vendor/actionwebservice/lib/action_web_service/protocol/xmlrpc_protocol.rb +122 -0
  66. data/vendor/actionwebservice/lib/action_web_service/scaffolding.rb +281 -0
  67. data/vendor/actionwebservice/lib/action_web_service/struct.rb +64 -0
  68. data/vendor/actionwebservice/lib/action_web_service/support/class_inheritable_options.rb +26 -0
  69. data/vendor/actionwebservice/lib/action_web_service/support/signature_types.rb +226 -0
  70. data/vendor/actionwebservice/lib/action_web_service/templates/scaffolds/layout.html.erb +65 -0
  71. data/vendor/actionwebservice/lib/action_web_service/templates/scaffolds/methods.html.erb +6 -0
  72. data/vendor/actionwebservice/lib/action_web_service/templates/scaffolds/parameters.html.erb +29 -0
  73. data/vendor/actionwebservice/lib/action_web_service/templates/scaffolds/result.html.erb +30 -0
  74. data/vendor/actionwebservice/lib/action_web_service/test_invoke.rb +110 -0
  75. data/vendor/actionwebservice/lib/action_web_service/version.rb +9 -0
  76. data/vendor/actionwebservice/lib/actionwebservice.rb +1 -0
  77. data/vendor/actionwebservice/setup.rb +1379 -0
  78. data/vendor/actionwebservice/test/abstract_client.rb +183 -0
  79. data/vendor/actionwebservice/test/abstract_dispatcher.rb +547 -0
  80. data/vendor/actionwebservice/test/abstract_unit.rb +33 -0
  81. data/vendor/actionwebservice/test/api_test.rb +102 -0
  82. data/vendor/actionwebservice/test/apis/auto_load_api.rb +3 -0
  83. data/vendor/actionwebservice/test/apis/broken_auto_load_api.rb +2 -0
  84. data/vendor/actionwebservice/test/base_test.rb +42 -0
  85. data/vendor/actionwebservice/test/casting_test.rb +86 -0
  86. data/vendor/actionwebservice/test/client_soap_test.rb +155 -0
  87. data/vendor/actionwebservice/test/client_xmlrpc_test.rb +153 -0
  88. data/vendor/actionwebservice/test/container_test.rb +73 -0
  89. data/vendor/actionwebservice/test/dispatcher_action_controller_soap_test.rb +137 -0
  90. data/vendor/actionwebservice/test/dispatcher_action_controller_xmlrpc_test.rb +59 -0
  91. data/vendor/actionwebservice/test/fixtures/db_definitions/mysql.sql +8 -0
  92. data/vendor/actionwebservice/test/fixtures/users.yml +12 -0
  93. data/vendor/actionwebservice/test/gencov +3 -0
  94. data/vendor/actionwebservice/test/invocation_test.rb +185 -0
  95. data/vendor/actionwebservice/test/run +6 -0
  96. data/vendor/actionwebservice/test/scaffolded_controller_test.rb +146 -0
  97. data/vendor/actionwebservice/test/struct_test.rb +52 -0
  98. data/vendor/actionwebservice/test/test_invoke_test.rb +112 -0
  99. data/vendor/gems/calendar_date_select-1.15/.specification +56 -0
  100. data/vendor/gems/calendar_date_select-1.15/History.txt +237 -0
  101. data/vendor/gems/calendar_date_select-1.15/MIT-LICENSE +20 -0
  102. data/vendor/gems/calendar_date_select-1.15/Manifest.txt +42 -0
  103. data/vendor/gems/calendar_date_select-1.15/Rakefile +31 -0
  104. data/vendor/gems/calendar_date_select-1.15/Readme.txt +16 -0
  105. data/vendor/gems/calendar_date_select-1.15/init.rb +1 -0
  106. data/vendor/gems/calendar_date_select-1.15/js_test/functional/cds_test.html +334 -0
  107. data/vendor/gems/calendar_date_select-1.15/js_test/prototype.js +4184 -0
  108. data/vendor/gems/calendar_date_select-1.15/js_test/test.css +40 -0
  109. data/vendor/gems/calendar_date_select-1.15/js_test/unit/cds_helper_methods.html +46 -0
  110. data/vendor/gems/calendar_date_select-1.15/js_test/unittest.js +564 -0
  111. data/vendor/gems/calendar_date_select-1.15/lib/calendar_date_select.rb +33 -0
  112. data/vendor/gems/calendar_date_select-1.15/lib/calendar_date_select/calendar_date_select.rb +116 -0
  113. data/vendor/gems/calendar_date_select-1.15/lib/calendar_date_select/form_helpers.rb +225 -0
  114. data/vendor/gems/calendar_date_select-1.15/lib/calendar_date_select/includes_helper.rb +29 -0
  115. data/vendor/gems/calendar_date_select-1.15/public/blank_iframe.html +2 -0
  116. data/vendor/gems/calendar_date_select-1.15/public/images/calendar_date_select/calendar.gif +0 -0
  117. data/vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/calendar_date_select.js +443 -0
  118. data/vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/format_american.js +34 -0
  119. data/vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/format_db.js +27 -0
  120. data/vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/format_euro_24hr.js +7 -0
  121. data/vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/format_euro_24hr_ymd.js +7 -0
  122. data/vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/format_finnish.js +32 -0
  123. data/vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/format_hyphen_ampm.js +37 -0
  124. data/vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/format_iso_date.js +46 -0
  125. data/vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/format_italian.js +24 -0
  126. data/vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/locale/de.js +11 -0
  127. data/vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/locale/fi.js +10 -0
  128. data/vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/locale/fr.js +10 -0
  129. data/vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/locale/pl.js +10 -0
  130. data/vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/locale/pt.js +11 -0
  131. data/vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/locale/ru.js +10 -0
  132. data/vendor/gems/calendar_date_select-1.15/public/stylesheets/calendar_date_select/blue.css +130 -0
  133. data/vendor/gems/calendar_date_select-1.15/public/stylesheets/calendar_date_select/default.css +135 -0
  134. data/vendor/gems/calendar_date_select-1.15/public/stylesheets/calendar_date_select/plain.css +128 -0
  135. data/vendor/gems/calendar_date_select-1.15/public/stylesheets/calendar_date_select/red.css +135 -0
  136. data/vendor/gems/calendar_date_select-1.15/public/stylesheets/calendar_date_select/silver.css +133 -0
  137. data/vendor/gems/calendar_date_select-1.15/spec/calendar_date_select/calendar_date_select_spec.rb +14 -0
  138. data/vendor/gems/calendar_date_select-1.15/spec/calendar_date_select/form_helpers_spec.rb +166 -0
  139. data/vendor/gems/calendar_date_select-1.15/spec/spec_helper.rb +26 -0
  140. data/vendor/gems/coderay-0.8.260/.specification +2 -1
  141. data/vendor/gems/htmlentities-4.0.0/.specification +68 -0
  142. data/vendor/gems/htmlentities-4.0.0/COPYING.txt +21 -0
  143. data/vendor/gems/htmlentities-4.0.0/History.txt +47 -0
  144. data/vendor/gems/htmlentities-4.0.0/README.txt +44 -0
  145. data/vendor/gems/htmlentities-4.0.0/lib/htmlentities.rb +165 -0
  146. data/vendor/gems/htmlentities-4.0.0/lib/htmlentities/html4.rb +257 -0
  147. data/vendor/gems/htmlentities-4.0.0/lib/htmlentities/legacy.rb +27 -0
  148. data/vendor/gems/htmlentities-4.0.0/lib/htmlentities/string.rb +26 -0
  149. data/vendor/gems/htmlentities-4.0.0/lib/htmlentities/xhtml1.rb +258 -0
  150. data/vendor/gems/htmlentities-4.0.0/test/entities_test.rb +206 -0
  151. data/vendor/gems/htmlentities-4.0.0/test/html4_test.rb +24 -0
  152. data/vendor/gems/htmlentities-4.0.0/test/legacy_test.rb +34 -0
  153. data/vendor/gems/htmlentities-4.0.0/test/roundtrip_test.rb +94 -0
  154. data/vendor/gems/htmlentities-4.0.0/test/string_test.rb +24 -0
  155. data/vendor/gems/htmlentities-4.0.0/test/test_all.rb +3 -0
  156. data/vendor/gems/htmlentities-4.0.0/test/xhtml1_test.rb +23 -0
  157. data/vendor/gems/json-1.1.3/.require_paths +4 -0
  158. data/vendor/gems/json-1.1.3/.specification +58 -0
  159. data/vendor/gems/json-1.1.3/CHANGES +93 -0
  160. data/vendor/gems/json-1.1.3/GPL +340 -0
  161. data/vendor/gems/json-1.1.3/README +78 -0
  162. data/vendor/gems/json-1.1.3/RUBY +58 -0
  163. data/vendor/gems/json-1.1.3/Rakefile +309 -0
  164. data/vendor/gems/json-1.1.3/TODO +1 -0
  165. data/vendor/gems/json-1.1.3/VERSION +1 -0
  166. data/vendor/gems/json-1.1.3/benchmarks/benchmark.txt +133 -0
  167. data/vendor/gems/json-1.1.3/benchmarks/benchmark_generator.rb +48 -0
  168. data/vendor/gems/json-1.1.3/benchmarks/benchmark_parser.rb +26 -0
  169. data/vendor/gems/json-1.1.3/benchmarks/benchmark_rails.rb +26 -0
  170. data/vendor/gems/json-1.1.3/bin/edit_json.rb +10 -0
  171. data/vendor/gems/json-1.1.3/bin/prettify_json.rb +76 -0
  172. data/vendor/gems/json-1.1.3/data/example.json +1 -0
  173. data/vendor/gems/json-1.1.3/data/index.html +38 -0
  174. data/vendor/gems/json-1.1.3/data/prototype.js +4184 -0
  175. data/vendor/gems/json-1.1.3/ext/json/ext/generator.bundle +0 -0
  176. data/vendor/gems/json-1.1.3/ext/json/ext/generator/Makefile +149 -0
  177. data/vendor/gems/json-1.1.3/ext/json/ext/generator/extconf.rb +9 -0
  178. data/vendor/gems/json-1.1.3/ext/json/ext/generator/generator.bundle +0 -0
  179. data/vendor/gems/json-1.1.3/ext/json/ext/generator/generator.c +875 -0
  180. data/vendor/gems/json-1.1.3/ext/json/ext/generator/generator.o +0 -0
  181. data/vendor/gems/json-1.1.3/ext/json/ext/generator/unicode.c +182 -0
  182. data/vendor/gems/json-1.1.3/ext/json/ext/generator/unicode.h +53 -0
  183. data/vendor/gems/json-1.1.3/ext/json/ext/generator/unicode.o +0 -0
  184. data/vendor/gems/json-1.1.3/ext/json/ext/parser.bundle +0 -0
  185. data/vendor/gems/json-1.1.3/ext/json/ext/parser/Makefile +149 -0
  186. data/vendor/gems/json-1.1.3/ext/json/ext/parser/extconf.rb +9 -0
  187. data/vendor/gems/json-1.1.3/ext/json/ext/parser/parser.bundle +0 -0
  188. data/vendor/gems/json-1.1.3/ext/json/ext/parser/parser.c +1758 -0
  189. data/vendor/gems/json-1.1.3/ext/json/ext/parser/parser.o +0 -0
  190. data/vendor/gems/json-1.1.3/ext/json/ext/parser/parser.rl +638 -0
  191. data/vendor/gems/json-1.1.3/ext/json/ext/parser/unicode.c +154 -0
  192. data/vendor/gems/json-1.1.3/ext/json/ext/parser/unicode.h +58 -0
  193. data/vendor/gems/json-1.1.3/ext/json/ext/parser/unicode.o +0 -0
  194. data/vendor/gems/json-1.1.3/install.rb +26 -0
  195. data/vendor/gems/json-1.1.3/lib/json.rb +235 -0
  196. data/vendor/gems/json-1.1.3/lib/json/Array.xpm +21 -0
  197. data/vendor/gems/json-1.1.3/lib/json/FalseClass.xpm +21 -0
  198. data/vendor/gems/json-1.1.3/lib/json/Hash.xpm +21 -0
  199. data/vendor/gems/json-1.1.3/lib/json/Key.xpm +73 -0
  200. data/vendor/gems/json-1.1.3/lib/json/NilClass.xpm +21 -0
  201. data/vendor/gems/json-1.1.3/lib/json/Numeric.xpm +28 -0
  202. data/vendor/gems/json-1.1.3/lib/json/String.xpm +96 -0
  203. data/vendor/gems/json-1.1.3/lib/json/TrueClass.xpm +21 -0
  204. data/vendor/gems/json-1.1.3/lib/json/add/core.rb +135 -0
  205. data/vendor/gems/json-1.1.3/lib/json/add/rails.rb +58 -0
  206. data/vendor/gems/json-1.1.3/lib/json/common.rb +354 -0
  207. data/vendor/gems/json-1.1.3/lib/json/editor.rb +1362 -0
  208. data/vendor/gems/json-1.1.3/lib/json/ext.rb +13 -0
  209. data/vendor/gems/json-1.1.3/lib/json/json.xpm +1499 -0
  210. data/vendor/gems/json-1.1.3/lib/json/pure.rb +75 -0
  211. data/vendor/gems/json-1.1.3/lib/json/pure/generator.rb +394 -0
  212. data/vendor/gems/json-1.1.3/lib/json/pure/parser.rb +259 -0
  213. data/vendor/gems/json-1.1.3/lib/json/version.rb +9 -0
  214. data/vendor/gems/json-1.1.3/tests/fixtures/fail1.json +1 -0
  215. data/vendor/gems/json-1.1.3/tests/fixtures/fail10.json +1 -0
  216. data/vendor/gems/json-1.1.3/tests/fixtures/fail11.json +1 -0
  217. data/vendor/gems/json-1.1.3/tests/fixtures/fail12.json +1 -0
  218. data/vendor/gems/json-1.1.3/tests/fixtures/fail13.json +1 -0
  219. data/vendor/gems/json-1.1.3/tests/fixtures/fail14.json +1 -0
  220. data/vendor/gems/json-1.1.3/tests/fixtures/fail18.json +1 -0
  221. data/vendor/gems/json-1.1.3/tests/fixtures/fail19.json +1 -0
  222. data/vendor/gems/json-1.1.3/tests/fixtures/fail2.json +1 -0
  223. data/vendor/gems/json-1.1.3/tests/fixtures/fail20.json +1 -0
  224. data/vendor/gems/json-1.1.3/tests/fixtures/fail21.json +1 -0
  225. data/vendor/gems/json-1.1.3/tests/fixtures/fail22.json +1 -0
  226. data/vendor/gems/json-1.1.3/tests/fixtures/fail23.json +1 -0
  227. data/vendor/gems/json-1.1.3/tests/fixtures/fail24.json +1 -0
  228. data/vendor/gems/json-1.1.3/tests/fixtures/fail25.json +1 -0
  229. data/vendor/gems/json-1.1.3/tests/fixtures/fail27.json +2 -0
  230. data/vendor/gems/json-1.1.3/tests/fixtures/fail28.json +2 -0
  231. data/vendor/gems/json-1.1.3/tests/fixtures/fail3.json +1 -0
  232. data/vendor/gems/json-1.1.3/tests/fixtures/fail4.json +1 -0
  233. data/vendor/gems/json-1.1.3/tests/fixtures/fail5.json +1 -0
  234. data/vendor/gems/json-1.1.3/tests/fixtures/fail6.json +1 -0
  235. data/vendor/gems/json-1.1.3/tests/fixtures/fail7.json +1 -0
  236. data/vendor/gems/json-1.1.3/tests/fixtures/fail8.json +1 -0
  237. data/vendor/gems/json-1.1.3/tests/fixtures/fail9.json +1 -0
  238. data/vendor/gems/json-1.1.3/tests/fixtures/pass1.json +56 -0
  239. data/vendor/gems/json-1.1.3/tests/fixtures/pass15.json +1 -0
  240. data/vendor/gems/json-1.1.3/tests/fixtures/pass16.json +1 -0
  241. data/vendor/gems/json-1.1.3/tests/fixtures/pass17.json +1 -0
  242. data/vendor/gems/json-1.1.3/tests/fixtures/pass2.json +1 -0
  243. data/vendor/gems/json-1.1.3/tests/fixtures/pass26.json +1 -0
  244. data/vendor/gems/json-1.1.3/tests/fixtures/pass3.json +6 -0
  245. data/vendor/gems/json-1.1.3/tests/runner.rb +25 -0
  246. data/vendor/gems/json-1.1.3/tests/test_json.rb +293 -0
  247. data/vendor/gems/json-1.1.3/tests/test_json_addition.rb +161 -0
  248. data/vendor/gems/json-1.1.3/tests/test_json_fixtures.rb +30 -0
  249. data/vendor/gems/json-1.1.3/tests/test_json_generate.rb +100 -0
  250. data/vendor/gems/json-1.1.3/tests/test_json_rails.rb +118 -0
  251. data/vendor/gems/json-1.1.3/tests/test_json_unicode.rb +61 -0
  252. data/vendor/gems/json-1.1.3/tools/fuzz.rb +140 -0
  253. data/vendor/gems/json-1.1.3/tools/server.rb +62 -0
  254. data/vendor/plugins/localization/bin/make_language.rb +2 -2
  255. data/vendor/plugins/localization/lib/localization.rb +2 -2
  256. data/vendor/plugins/will_paginate/CHANGELOG.rdoc +110 -0
  257. data/vendor/plugins/will_paginate/LICENSE +18 -0
  258. data/vendor/plugins/will_paginate/README.rdoc +107 -0
  259. data/vendor/plugins/will_paginate/Rakefile +62 -0
  260. data/vendor/plugins/will_paginate/examples/apple-circle.gif +0 -0
  261. data/vendor/plugins/will_paginate/examples/index.haml +69 -0
  262. data/vendor/plugins/will_paginate/examples/index.html +92 -0
  263. data/vendor/plugins/will_paginate/examples/pagination.css +90 -0
  264. data/vendor/plugins/will_paginate/examples/pagination.sass +91 -0
  265. data/vendor/plugins/will_paginate/init.rb +1 -0
  266. data/vendor/plugins/will_paginate/lib/will_paginate.rb +82 -0
  267. data/vendor/plugins/will_paginate/lib/will_paginate/array.rb +16 -0
  268. data/vendor/plugins/will_paginate/lib/will_paginate/collection.rb +146 -0
  269. data/vendor/plugins/will_paginate/lib/will_paginate/core_ext.rb +32 -0
  270. data/vendor/plugins/will_paginate/lib/will_paginate/finder.rb +260 -0
  271. data/vendor/plugins/will_paginate/lib/will_paginate/named_scope.rb +170 -0
  272. data/vendor/plugins/will_paginate/lib/will_paginate/named_scope_patch.rb +37 -0
  273. data/vendor/plugins/will_paginate/lib/will_paginate/version.rb +9 -0
  274. data/vendor/plugins/will_paginate/lib/will_paginate/view_helpers.rb +383 -0
  275. data/vendor/plugins/will_paginate/test/boot.rb +21 -0
  276. data/vendor/plugins/will_paginate/test/collection_test.rb +143 -0
  277. data/vendor/plugins/will_paginate/test/console +8 -0
  278. data/vendor/plugins/will_paginate/test/database.yml +22 -0
  279. data/vendor/plugins/will_paginate/test/finder_test.rb +476 -0
  280. data/vendor/plugins/will_paginate/test/fixtures/admin.rb +3 -0
  281. data/vendor/plugins/will_paginate/test/fixtures/developer.rb +14 -0
  282. data/vendor/plugins/will_paginate/test/fixtures/developers_projects.yml +13 -0
  283. data/vendor/plugins/will_paginate/test/fixtures/project.rb +15 -0
  284. data/vendor/plugins/will_paginate/test/fixtures/projects.yml +6 -0
  285. data/vendor/plugins/will_paginate/test/fixtures/replies.yml +29 -0
  286. data/vendor/plugins/will_paginate/test/fixtures/reply.rb +7 -0
  287. data/vendor/plugins/will_paginate/test/fixtures/schema.rb +38 -0
  288. data/vendor/plugins/will_paginate/test/fixtures/topic.rb +10 -0
  289. data/vendor/plugins/will_paginate/test/fixtures/topics.yml +30 -0
  290. data/vendor/plugins/will_paginate/test/fixtures/user.rb +2 -0
  291. data/vendor/plugins/will_paginate/test/fixtures/users.yml +35 -0
  292. data/vendor/plugins/will_paginate/test/helper.rb +37 -0
  293. data/vendor/plugins/will_paginate/test/lib/activerecord_test_case.rb +36 -0
  294. data/vendor/plugins/will_paginate/test/lib/activerecord_test_connector.rb +73 -0
  295. data/vendor/plugins/will_paginate/test/lib/load_fixtures.rb +11 -0
  296. data/vendor/plugins/will_paginate/test/lib/view_test_process.rb +165 -0
  297. data/vendor/plugins/will_paginate/test/tasks.rake +59 -0
  298. data/vendor/plugins/will_paginate/test/view_test.rb +363 -0
  299. data/vendor/plugins/will_paginate/will_paginate.gemspec +22 -0
  300. data/vendor/plugins/xml_sidebar/lib/xml_sidebar.rb +1 -1
  301. metadata +349 -16
  302. data/migrate.txt +0 -142
@@ -5,7 +5,13 @@ class Admin::SidebarController < Admin::BaseController
5
5
  # Reset the staged position based on the active position.
6
6
  Sidebar.delete_all('active_position is null')
7
7
  flash_sidebars
8
- @active = Sidebar.find(:all, :order => 'active_position ASC') unless @active
8
+ begin
9
+ @active = Sidebar.find(:all, :order => 'active_position ASC') unless @active
10
+ rescue
11
+ # Avoiding the view to crash
12
+ @active = []
13
+ flash[:error] = _("It seems something went wrong. Maybe some of your sidebars are actually missing and you should either reinstall them or remove them manually")
14
+ end
9
15
  end
10
16
 
11
17
  def set_active
@@ -80,8 +86,14 @@ class Admin::SidebarController < Admin::BaseController
80
86
 
81
87
  def flash_sidebars
82
88
  unless flash[:sidebars]
83
- active = Sidebar.find(:all, :order => 'active_position ASC')
84
- flash[:sidebars] = active.map {|sb| sb.id }
89
+ begin
90
+ active = Sidebar.find(:all, :order => 'active_position ASC')
91
+ flash[:sidebars] = active.map {|sb| sb.id }
92
+ rescue
93
+ # Avoiding the view to crash
94
+ @active = []
95
+ flash[:error] = _("It seems something went wrong. Maybe some of your sidebars are actually missing and you should either reinstall them or remove them manually")
96
+ end
85
97
  end
86
98
  flash[:sidebars]
87
99
  end
@@ -1,9 +1,14 @@
1
1
  module SidebarHelper
2
2
  def render_sidebars(*sidebars)
3
- (sidebars.blank? ? Sidebar.find(:all, :order => 'active_position ASC') : sidebars).inject('') do |acc, sb|
4
- @sidebar = sb
5
- sb.parse_request(contents, params)
6
- acc + render_sidebar(sb)
3
+ begin
4
+ (sidebars.blank? ? Sidebar.find(:all, :order => 'active_position ASC') : sidebars).inject('') do |acc, sb|
5
+ @sidebar = sb
6
+ sb.parse_request(contents, params)
7
+ acc + render_sidebar(sb)
8
+ end
9
+ rescue
10
+ _("It seems something went wrong. Maybe some of your sidebars are actually missing and you should either reinstall them or remove them manually
11
+ ")
7
12
  end
8
13
  end
9
14
 
@@ -140,12 +140,20 @@ class Feedback < Content
140
140
 
141
141
  def report_as_spam
142
142
  return if blog.sp_akismet_key.blank?
143
- Timeout.timeout(defined?($TESTING) ? 5 : 3600) { akismet.submitSpam(akismet_options) }
143
+ begin
144
+ Timeout.timeout(defined?($TESTING) ? 5 : 3600) { akismet.submitSpam(akismet_options) }
145
+ rescue Timeout::Error => e
146
+ nil
147
+ end
144
148
  end
145
149
 
146
150
  def report_as_ham
147
151
  return if blog.sp_akismet_key.blank?
148
- Timeout.timeout(defined?($TESTING) ? 5 : 3600) { akismet.submitHam(akismet_options) }
152
+ begin
153
+ Timeout.timeout(defined?($TESTING) ? 5 : 3600) { akismet.submitHam(akismet_options) }
154
+ rescue Timeout::Error => e
155
+ nil
156
+ end
149
157
  end
150
158
 
151
159
  def withdraw!
@@ -14,7 +14,11 @@ class PageCache
14
14
  # Delete all file save in path_cache by page_cache system
15
15
  def self.sweep_all
16
16
  logger.debug "PageCache - sweep_all called by #{caller[1].inspect}"
17
- CacheInformation.all.each{|c| c.destroy}
17
+ begin
18
+ CacheInformation.all.each{|c| c.destroy}
19
+ rescue
20
+ logger.debug "PageCache - OOOOPS table is missing"
21
+ end
18
22
  end
19
23
 
20
24
 
@@ -2,11 +2,13 @@
2
2
  <tr>
3
3
  <th><%= _("Pattern") %></th>
4
4
  <th><%= _("Type") %></th>
5
+ <th><%= _("Delete")%></th>
5
6
  </tr>
6
7
  <% for blacklist_pattern in @blacklist_patterns -%>
7
8
  <tr <%= alternate_class -%>>
8
9
  <td><%= link_to h(blacklist_pattern.pattern), :action => "edit", :id => blacklist_pattern.id %></td>
9
10
  <td><%= blacklist_pattern.class %></td>
11
+ <td><%= link_to _("Delete"), :action => 'destroy', :id => blacklist_pattern.id %></td>
10
12
  </tr>
11
13
  <% end -%>
12
14
  <tr class="paginate"><td colspan="3"><%= will_paginate @blacklist_patterns %></td></tr>
@@ -1,4 +1,4 @@
1
- <% @page_heading = _("#{controller.action_name.capitalize} Category") %>
1
+ <% @page_heading = _("%s Category", controller.action_name.capitalize) %>
2
2
  <% subtabs_for(:content) %>
3
3
  <% form_tag :action=>"edit", :id => @category.id do %>
4
4
  <div class="admin">
@@ -13,7 +13,7 @@
13
13
  <div id="categories" style="height: 170px;">
14
14
  <%= checkboxes_from_collection(@categories, "id", "name", @selected) %>
15
15
  </div>
16
- <p class="paginate r">
16
+ <p class='paginate r' id='saveblock'>
17
17
  <label for="article_allow_comments"><%= _("Allow comments") %>: </label>
18
18
  <%= check_box 'article', 'allow_comments' %><br />
19
19
  <label for="article_allow_pings"><%= _("Allow trackbacks")%>: </label>
@@ -38,11 +38,11 @@
38
38
  <div id='quicktags' style='<%= "display: none;" if current_user.editor == 'visual' %>'>
39
39
  <script type="text/javascript">edToolbar('article_body_and_extended');</script>
40
40
  </div>
41
- <div id='<%= alternate_editor %>_editor'></div>
41
+ <div id='<%= alternate_editor %>_editor' style='display: none;'></div>
42
42
  <div id='<%= "#{current_user.editor}_editor" %>'>
43
43
  <%= t_textarea('article', 'body_and_extended', {:height => '300', :class => 'medium'}) %>
44
44
  <%= render_macros(@macros) if current_user.editor == 'simple' %>
45
- <div>
45
+ </div>
46
46
  </div>
47
47
  </li>
48
48
  <li>
@@ -1,5 +1,6 @@
1
1
  <script type="text/javascript">
2
2
  $('quicktags').style.display = 'block';
3
+ $('simple_editor').style.display = 'block';
3
4
  $('s').className = 'active';
4
5
  $('f').className = 'inactive';
5
6
  html = FCKeditorAPI.GetInstance('article__body_and_extended_editor').GetHTML();
@@ -8,5 +9,6 @@
8
9
  <script type="text/javascript">
9
10
  $('article_body_and_extended').innerHTML = html;
10
11
  $('visual_editor').innerHTML = "";
12
+ $('visual_editor').style.display = 'none';
11
13
  html = null;
12
14
  </script>
@@ -1,5 +1,7 @@
1
1
  <script type="text/javascript">
2
2
  $('quicktags').style.display = 'none';
3
+ $('simple_editor').style.display = 'none';
4
+ $('visual_editor').style.display = 'block';
3
5
  $('s').className = 'inactive';
4
6
  $('f').className = 'active';
5
7
  if (typeof(html2) != 'undefined') {
@@ -8,9 +8,9 @@
8
8
  <li>
9
9
  <div style="float: right; width: 230px;">
10
10
  <label class="block content"><%= _("Options") %></label>
11
- <p class="paginate r">
11
+ <p class="paginate r" id="saveblock">
12
12
  <label for="page_name"><%= _("Permalink")%>:</label><br />
13
- <%= text_field 'page', 'name', :size => 25 %>
13
+ <%= text_field 'page', 'name', :size => 25 %><br />
14
14
  <label for="page_published"><%= _("Online")%>:</label>
15
15
  <%= check_box 'page', 'published' %><br />
16
16
  <%= link_to_destroy_with_profiles @page%>
@@ -29,11 +29,11 @@
29
29
  <div id='quicktags' style='<%= "display: none;" if current_user.editor == 'visual' %>'>
30
30
  <script type="text/javascript">edToolbar('page_body');</script>
31
31
  </div>
32
- <div id='<%= alternate_editor %>_editor'></div>
32
+ <div id='<%= alternate_editor %>_editor' style='display: none;'></div>
33
33
  <div id='<%= "#{current_user.editor}_editor" %>'>
34
34
  <%= t_textarea 'page', 'body', {:height => '300', :class => 'large'} %>
35
35
  <%= render_macros(@macros) if current_user.editor == 'visual' %>
36
- <div>
36
+ </div>
37
37
  </div>
38
38
  <%= hidden_field_tag 'text_filter', this_blog.text_filter %>
39
39
  </li>
@@ -41,7 +41,7 @@
41
41
  <label class="block">
42
42
  <%= link_to_function _("Page settings") + " (+/-)",update_page { |page| page.visual_effect(:toggle_blind, "publishing_options", :duration => 0.2) } %>
43
43
  </label>
44
- <ul id="publishing_options" <%= "style='display: none;'" unless @page.published.blank? %>>
44
+ <ul id="publishing_options" <%= "style='display: none;'" if @page.published.blank? %>>
45
45
  <li>
46
46
  <label class="float" for="text_filter"><%= _("Article filter")%>:</label>
47
47
  <select name="page[text_filter]" id="text_filter">
@@ -2,6 +2,7 @@
2
2
  $('quicktags').style.display = 'block';
3
3
  $('s').className = 'active';
4
4
  $('f').className = 'inactive';
5
+ $('simple_editor').style.display = 'block';
5
6
  html = FCKeditorAPI.GetInstance('page__body_editor').GetHTML();
6
7
  </script>
7
8
  <%= text_area('page', 'body', {:class => 'medium', :height => '300'}) %>
@@ -9,5 +10,6 @@
9
10
  <script type="text/javascript">
10
11
  $('page_body').innerHTML = html;
11
12
  $('visual_editor').innerHTML = "";
13
+ $('visual_editor').style.display = 'none';
12
14
  html = null;
13
15
  </script>
@@ -1,5 +1,7 @@
1
1
  <script type="text/javascript">
2
2
  $('quicktags').style.display = 'none';
3
+ $('simple_editor').style.display = 'none';
4
+ $('visual_editor').style.display = 'block';
3
5
  $('s').className = 'inactive';
4
6
  $('f').className = 'active';
5
7
 
@@ -16,7 +16,7 @@
16
16
  <table cellpadding="4" cellspacing="0" class="frm-tbl">
17
17
  <tr>
18
18
  <td><p><label for="comment_author"><%= _("Your name")%></label></p></td>
19
- <td> <%= text_field "comment", "author", :size => 20 %> <small><%= link_to_function("(leave url/email &#187;)", "Element.toggle('guest_url'); Element.toggle('guest_email')") %></small></td>
19
+ <td> <%= text_field "comment", "author", :size => 20 %> <small><%= link_to_function(_("(leave url/email &#187;)"), "Element.toggle('guest_url'); Element.toggle('guest_email')") %></small></td>
20
20
  </tr>
21
21
  <tr id="guest_url" style="display:none;">
22
22
  <td><p><label for="comment_url"><%= _("Your blog")%></label></p></td>
@@ -1,4 +1,4 @@
1
1
  <%= error_messages_for 'comment' %>
2
2
  <li>
3
- <%= _("Opps, something wrong happened, the comment could not be saved")%>
3
+ <%= _("Oops, something wrong happened, the comment could not be saved")%>
4
4
  </li>
@@ -27,7 +27,7 @@
27
27
  <%= article_links @article %>
28
28
  </p>
29
29
  <% if @article.allow_comments? or @article.published_comments.size > 0 -%>
30
- <a name="comments"></a><h4 class="blueblk">Comments</h4>
30
+ <a name="comments"></a><h4 class="blueblk"><%= _('Comments') %></h4>
31
31
  <% unless @article.comments_closed? -%>
32
32
  <p class="postmetadata alt">
33
33
  <small><a href="#respond"><%= _("Leave a response")%></a></small>
@@ -64,8 +64,9 @@ Rails::Initializer.run do |config|
64
64
  config.gem 'calendar_date_select'
65
65
 
66
66
  # Declare needed (github) gems
67
- config.gem 'datanoise-actionwebservice', :version => '2.2.2', :lib => 'actionwebservice', :source => 'http://gems.github.com'
68
- config.gem 'mislav-will_paginate', :version => '2.3.7', :lib => 'will_paginate', :source => 'http://gems.github.com'
67
+ # This is for legacy documentation, these gems are vendored for release.
68
+ # config.gem 'datanoise-actionwebservice', :version => '2.2.2', :lib => 'actionwebservice', :source => 'http://gems.github.com'
69
+ # config.gem 'mislav-will_paginate', :version => '2.3.7', :lib => 'will_paginate', :source => 'http://gems.github.com'
69
70
  # Rails 2.2.2 bug : decommenting this line forces the use of the test database regardless of the RAILS_ENV
70
71
  # config.gem 'rspec-rails', :lib => 'spec/rails', :version => '~> 1.1.11'
71
72
 
@@ -1,7 +1,7 @@
1
1
  require 'rake/gempackagetask'
2
2
  require 'rake/contrib/rubyforgepublisher'
3
3
 
4
- PKG_VERSION = "5.2.98"
4
+ PKG_VERSION = "5.3"
5
5
  PKG_NAME = "typo"
6
6
  PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
7
7
  RUBY_FORGE_PROJECT = 'typo'
@@ -30,14 +30,13 @@ spec = Gem::Specification.new do |s|
30
30
  s.platform = Gem::Platform::RUBY
31
31
  s.executables = ['typo']
32
32
 
33
- s.add_dependency("rails", ">= 2.2.2")
33
+ s.add_dependency("rails", "= 2.2.2")
34
34
  s.add_dependency("mongrel", ">= 1.1.5")
35
35
  s.add_dependency("mongrel_cluster", ">= 1.0.5")
36
36
  s.add_dependency("rails-app-installer", ">= 0.2.0")
37
37
  s.add_dependency("ruby-debug", ">= 0.10.3")
38
38
  s.add_dependency("flexmock", ">= 0.8.3")
39
- s.add_dependency("htmlentities", "4.0.0")
40
- s.add_dependency("json", ">=1.1.3")
39
+ s.add_dependency("rspec-rails", "= 1.1.11")
41
40
  end
42
41
 
43
42
  Rake::GemPackageTask.new(spec) do |p|
@@ -1 +1 @@
1
- TYPO_VERSION = '5.2'
1
+ TYPO_VERSION = '5.3'
@@ -172,11 +172,14 @@ small {
172
172
  }
173
173
 
174
174
  #overall {
175
- padding: 10px 0 20px 20px;
176
175
  width: 1000px;
177
176
  background: #fff;
178
177
  }
179
178
 
179
+ #main {
180
+ padding: 10px 0 20px 20px;
181
+ }
182
+
180
183
  #footer {
181
184
  float: left;
182
185
  width: 100%;
@@ -330,7 +333,6 @@ tr.menubar {
330
333
  .admin {
331
334
  padding: 0 10px 5px 10px;
332
335
  margin-bottom: 10px;
333
- position: relative;
334
336
  }
335
337
 
336
338
 
@@ -846,12 +848,35 @@ div.auto_complete ul strong.highlight {
846
848
  #visual_editor {
847
849
  background: #464646;
848
850
  padding: 10px;
851
+ border-radius: 3px;
852
+ }
853
+
854
+ #simple_editor {
855
+ border-radius: 3px;
856
+ -moz-border-bottom-left-radius: 3px;
857
+ -moz-border-bottom-right-radius: 3px;
858
+ -webkit-border-bottom-left-radius: 4px;
859
+ -webkit-border-bottom-right-radius: 4px;
860
+ }
861
+
862
+ #visual_editor {
863
+ -moz-border-radius: 3px;
864
+ -webkit-border-radius: 4px;
849
865
  }
850
866
 
851
867
  #quicktags {
852
868
  background: #464646;
853
869
  padding-top: 10px;
854
870
  padding-left: 10px;
871
+ border-radius: 3px 0 0 0;
872
+ -moz-border-top-left-radius: 3px 0 0 0;
873
+ -webkit-border-top-left-radius: 4px;
874
+ }
875
+
876
+ #saveblock {
877
+ border-radius: 3px;
878
+ -moz-border-radius: 3px;
879
+ -webkit-border-radius: 4px;
855
880
  }
856
881
 
857
882
  #editor-menu {
@@ -861,9 +886,19 @@ div.auto_complete ul strong.highlight {
861
886
  #editor-menu span.active {
862
887
  background: #464646;
863
888
  padding: 5px;
889
+ border-radius: 3px 0 0 0;
890
+ -moz-border-top-left-radius: 3px 0 0 0;
891
+ -moz-border-top-right-radius: 3px 0 0 0;
892
+ -webkit-border-top-left-radius: 4px;
893
+ -webkit-border-top-right-radius: 4px;
864
894
  }
865
895
 
866
896
  #editor-menu span.inactive {
867
897
  background: #f9f9f9;
868
898
  padding: 0px;
869
899
  }
900
+
901
+ ul.admin {
902
+ margin-left: 0;
903
+ padding-left: 0;
904
+ }
@@ -1,224 +1,201 @@
1
- /* @group General/Master Containers */
2
-
3
- /* OK */
4
1
  html, body {
5
2
  height: 100%;
6
3
  }
7
4
 
8
- /* OK */
9
5
  body {
10
- direction: rtl;
11
- margin:0;
12
- padding:0;
13
- /* font: 12px Tahoma, Helvetica, sans-serif; */
14
- font: 0.75em "HelveticaNeue", Helvetica, Arial, sans-serif;
15
- line-height: 1.8em;
16
- color: #000;
17
- background: #fff;
18
- }
19
-
20
- /* Top Navbar */
21
- /* OK */
22
- #topnav {
23
- height: 36px;
24
6
  margin: 0;
25
- background: transparent url("../images/admin/bgoff.png") repeat-x top right;
26
- font: 12px Tahoma, Helvetica, sans-serif;
7
+ padding: 0;
8
+ font: 12px/18px "Helvetica Neue", "Lucida Grande", Arial, sans-serif;
9
+ line-height: 1.6em;
10
+ color: #222;
11
+ background: #f9f9f9;
12
+ direction: rtl;
27
13
  }
28
14
 
29
- /* OK */
30
- #topnav ul {
15
+ form {
31
16
  margin: 0;
32
17
  padding: 0;
33
- list-style-type: none;
34
- width: auto;
35
18
  }
36
19
 
37
- /* OK */
38
- #topnav ul li {
39
- display: block;
40
- float: right;
41
- margin: 0;
20
+ a, a:visited {
21
+ color: #38b;
22
+ text-decoration: none;
23
+ font-weight: bold;
42
24
  }
43
25
 
44
- /* OK */
45
- #topnav ul li a {
46
- display: block;
47
- float: left;
48
- padding: 11px 20px 0 20px;
49
- height: 25px;
50
- text-decoration: none;
51
- color: #333;
52
- text-transform: capitalize;
53
- background: transparent url("../images/admin/bgdivider.png") no-repeat top left;
26
+ a:hover, a:visited:hover {
27
+ text-decoration: underline;
28
+ color: #333;
54
29
  }
55
30
 
56
- /* OK */
57
- #topnav ul li a:hover {
58
- color: #fff;
59
- background: #fff url("../images/admin/bgover.png") repeat-x top right;
31
+ h2 {
32
+ font-size: 16px;
33
+ letter-spacing: 2px;
34
+ color: #464646;
35
+ margin: 0 0 20px 0;
36
+ padding-top: 20px;
60
37
  }
61
38
 
62
- /* OK */
63
- #topnav ul li a.current {
64
- color: #fff;
65
- background: #fff url("../images/admin/bgselected.png") repeat-x top right;
39
+ h2 span {
40
+ font-size: 12px;
66
41
  }
67
42
 
68
- /* OK */
69
- #topnav ul li img {
70
- border: none;
71
- float: right;
72
- padding-left: 3px;
73
- margin-top: -4px;
43
+ h2 span a,
44
+ h2 span a:visited {
45
+ text-decoration: underline;
74
46
  }
75
- /* End of Top navigation */
76
47
 
77
- /* OK */
78
- #container {
48
+ fieldset {
49
+ margin-top: 10px;
50
+ }
51
+
52
+ label {
53
+ font-weight: normal;
54
+ color: #464646;
55
+ }
56
+
57
+ label.float {
58
+ display: block;
59
+ float: left;
60
+ width: 200px;
61
+ margin-left: 0;
62
+ margin-right: 12px;
63
+ padding: 0;
79
64
  text-align: right;
80
- margin: 0 auto;
81
65
  }
82
66
 
83
- /* OK */
84
- #overall {
85
- background: #fff;
86
- margin: 0 20px;
67
+ label.block {
68
+ display: block;
69
+ margin-bottom: 10px;
87
70
  }
88
71
 
89
- /* OK */
90
- #footer {
91
- float: right;
92
- width: 100%;
93
- margin-top: 30px;
94
- padding-top: 10px;
95
- padding-bottom: 0;
96
- text-align: center;
97
- color: #000;
98
- border-top: #ccc 1px solid;
72
+ label.title {
73
+ font-size: 16px;
99
74
  }
100
75
 
101
- /* @group Utility */
76
+ label.content {
77
+ font-size: 14px;
78
+ margin-top: 6px;
79
+ }
102
80
 
103
- /* OK */
104
- form {
81
+ legend {
82
+ font-size: 14px;
83
+ color: #464646;
84
+ font-weight: bold;
85
+ }
86
+
87
+ small {
88
+ font-size: 11px;
89
+ }
90
+
91
+ /* Top navigation */
92
+ #topnav {
93
+ height: 36px;
94
+ margin: 0;
95
+ background: #282826;
96
+ }
97
+
98
+ #topnav ul {
105
99
  margin: 0;
106
100
  padding: 0;
101
+ list-style-type: none;
102
+ width: auto;
107
103
  }
108
104
 
109
- /* OK */
110
- img {
111
- border: none;
105
+ #topnav ul li {
106
+ float: left;
107
+ margin: 0;
108
+ font-size: 15px;
112
109
  }
113
110
 
114
- a:link, a:visited {
115
- color:#224272;
116
- text-decoration:none;
111
+ #topnav ul li.right {
112
+ float: right;
113
+ font-size: 11.5px;
117
114
  }
118
115
 
119
- a:hover {
120
- text-decoration: underline;
121
- color: #aaa;
116
+ #topnav ul li.current {
117
+ color: #fff;
118
+ background: #464646;
122
119
  }
123
- /* @end */
124
120
 
125
- /* @group Tasks Links */
126
- /* OK */
127
- .tasks {
128
- background: #525251;
129
- border-bottom: #000 1px solid;
121
+ #topnav ul li a {
122
+ display: block;
123
+ padding: 11px 20px 0;
124
+ height: 25px;
125
+ color: #fff;
126
+ text-transform: capitalize;
127
+ border-right: #525251 1px solid;
128
+ }
129
+
130
+ #topnav ul li a:hover {
131
+ color: #fff;
132
+ background: #464646;
133
+ }
134
+ /* End of Top navigation */
135
+
136
+ /* Sub navigation */
137
+ #subtabs {
138
+ background: #464646;
130
139
  padding: 5px 20px;
131
- margin-bottom: 15px;
132
140
  }
133
141
 
134
- /* OK */
135
- .tasks ul {
142
+ #subtabs ul {
136
143
  list-style: none;
137
144
  margin: 0;
138
145
  padding: 0;
139
146
  }
140
147
 
141
- /* OK */
142
- .tasks ul li {
143
- float: right;
148
+ #subtabs ul li {
149
+ float: left;
144
150
  padding: 2px 20px 2px 0;
145
- line-height: normal;
151
+ font-size: 12px;
146
152
  }
147
153
 
148
- /* OK */
149
- .tasks li a {
150
- text-decoration: none;
154
+ #subtabs li a {
151
155
  color: #fff;
152
156
  }
153
157
 
154
- /* OK */
155
- .tasks li a:hover {
158
+ #subtabs li a:hover {
156
159
  color: #fff;
157
160
  text-decoration: underline;
158
161
  }
159
162
 
160
- /* OK */
161
- .tasks li a.current {
163
+ #subtabs li a.current {
162
164
  color: #fff;
163
165
  text-decoration: underline;
164
- font-weight: bold;
165
166
  }
166
- /* @end */
167
167
 
168
- /* @group Headings */
168
+ /* End of sub navigation */
169
169
 
170
- h2 {
171
- font: normal 1.7em Tahoma, Helvetica, sans-serif;
172
- letter-spacing: 3px;
173
- color: #224272;
174
- margin: 20px 0;
175
- margin-right: 3px;
170
+ #container {
171
+ text-align: left;
172
+ margin: 0 auto;
176
173
  }
177
174
 
178
- h2 span a {
179
- text-decoration: underline;
175
+ #overall {
176
+ width: 1000px;
177
+ background: #fff;
180
178
  }
181
179
 
182
- h2 a:visited {
183
- color: #666;
180
+ #main {
181
+ padding: 10px 0 20px 20px;
184
182
  }
185
183
 
186
- h2 a:hover {
187
- text-decoration: none;
188
- color: #993333;
184
+ #footer {
185
+ float: left;
186
+ width: 100%;
187
+ margin-top: 30px;
188
+ padding: 10px 0 0 0;
189
+ text-align: center;
190
+ border-top: #ccc 1px solid;
189
191
  }
190
192
 
191
- h2 span {
192
- font-size: 0.7em;
193
- }
193
+ /* @group Headings */
194
194
 
195
195
  h3 {
196
- font-size: 130%;
196
+ font-size: 13px;
197
197
  padding: 5px;
198
198
  margin-bottom: 0;
199
- }
200
-
201
- .form h3, h3 {
202
- background: #637987;
203
- color: #fff;
204
- font-weight: normal;
205
- }
206
-
207
- .form h4 {
208
- padding: 2px;
209
- margin: 0;
210
- font-size: 120%;
211
- }
212
-
213
- .tasks h3 {
214
- font: normal 120%/normal "Trebuchet MS", Arial, Verdana;
215
- background: transparent;
216
- margin: 0 0 5px 0;
217
- padding: 0;
218
- color: #4A611C;
219
- }
220
-
221
- .set h3 {
222
199
  background: none;
223
200
  margin: 0 0 5px 0;
224
201
  color: #1F273F;
@@ -228,53 +205,38 @@ h3 {
228
205
 
229
206
  /* @group Table Listings */
230
207
 
231
- td.operation {
232
- width: 25px;
233
- text-align: center;
234
- }
235
-
236
- th.operation {
237
- text-align: center;
238
- }
239
-
240
- .list {
241
- clear: right;
242
- }
243
-
244
- .list table {
208
+ table {
245
209
  width: 100%;
246
210
  border-spacing: 0;
247
- border-bottom: #ddd 1px solid;
248
- border-collapse: collapse
249
- }
250
-
251
- .list table tr.first {
252
- border-bottom: #324e79 1px solid;
253
- padding-bottom: 5px;
211
+ border-bottom: #444 1px solid;
212
+ border-collapse: collapse;
213
+ background: #fff;
254
214
  }
255
215
 
256
- .list table th {
257
- text-align: right;
216
+ th {
217
+ text-align: left;
258
218
  padding: 2px 5px;
259
- color: #324e79;
219
+ color: #464646;
260
220
  font-size: 12px;
221
+ background: none;
261
222
  }
262
223
 
263
- .list table th a {
264
- color: #324e79;
265
- text-decoration: underline;
224
+ td {
225
+ padding: 12px 3px;
226
+ border-bottom: #eee 1px solid;
266
227
  }
267
228
 
268
- .list table tr td {
269
- padding: 3px;
229
+ td.operation {
230
+ width: 25px;
231
+ text-align: center;
270
232
  }
271
233
 
272
- .list table tr td a {
273
- color: #224272;
234
+ th.operation {
235
+ text-align: center;
274
236
  }
275
237
 
276
- tr.shade {
277
- background: #f0f0f0;
238
+ .list {
239
+ clear: left;
278
240
  }
279
241
 
280
242
  li.shade {
@@ -282,20 +244,24 @@ li.shade {
282
244
  }
283
245
 
284
246
  .paginate {
285
- background: url("../images/admin/bc-bg.gif") #e7e7e7 repeat-x top right;
286
- padding: 5px 20px;
247
+ background: #dfdfdf;
248
+ padding: 10px;
287
249
  margin-bottom: 15px;
288
- border-right: #ddd 1px solid;
289
- border-left: #ddd 1px solid;
290
- border-left: #ddd 1px solid;
291
250
  text-align: center;
292
-
293
251
  }
294
252
 
295
253
  td.paginate {
296
254
  text-align: center;
297
255
  }
298
256
 
257
+ tr.menubar td {
258
+ padding: 5px 3px;
259
+ }
260
+
261
+ tr.menubar {
262
+ background : #dfdfdf;
263
+ }
264
+
299
265
  /* @end */
300
266
 
301
267
  /* @group Form Elements */
@@ -312,25 +278,13 @@ td.paginate {
312
278
  }
313
279
 
314
280
  #blog_name {
315
- font-size: 130%;
316
- }
317
-
318
- /* @end */
319
-
320
- /* @group Popups/Tooltips */
321
-
322
- .tip-catlist {
323
- width: 200px;
324
- background: #EEF1FE;
325
- border: 2px solid #C2D2E7;
326
- padding: 5px;
281
+ font-size: 1.3em;
327
282
  }
328
283
 
329
284
  /* @end */
330
285
 
331
286
  /* Article forms */
332
287
 
333
- /* OK */
334
288
  #article_form input,
335
289
  #article_form textarea,
336
290
  #article_form select,
@@ -346,6 +300,11 @@ td.paginate {
346
300
  padding: 3px;
347
301
  }
348
302
 
303
+ #article_form textarea.medium,
304
+ #page_form textarea.medium {
305
+ width: 670px;
306
+ }
307
+
349
308
  #article_form input.large,
350
309
  #article_form textarea.large ,
351
310
  #article_form select.large,
@@ -360,46 +319,24 @@ td.paginate {
360
319
  font-size: 1.7em;
361
320
  }
362
321
 
363
- #article_form label,
364
- #page_form label,
365
- .admin label {
366
- color: #224272;
367
- }
322
+
368
323
 
369
324
  #article_form select.large option {
370
325
  padding: 3px;
371
326
  }
372
327
 
373
- legend {
374
- font-size: 16px;
375
- color: #224272;
376
- }
377
328
 
378
- /* OK */
379
- #preview {
380
- background: #fff;
381
- border-right: 1px dashed #ccc;
382
- border-left: none;
383
- border-top: none;
384
- border-bottom: none;
385
- padding: 0 0 0 5px;
386
- width: 50%;
387
- height: 430px;
388
- float: left;
389
- margin-top: 10px;
390
- margin-bottom: 10px;
391
- }
392
329
 
393
330
  /* @end */
394
331
 
395
332
  /* @group General Settings Screen */
396
333
 
397
- .set {
334
+ .admin {
398
335
  padding: 0 10px 5px 10px;
399
336
  margin-bottom: 10px;
400
- position: relative;
401
337
  }
402
338
 
339
+
403
340
  .admin ul {
404
341
  margin: 0;
405
342
  padding: 0;
@@ -420,121 +357,90 @@ legend {
420
357
  line-height: 1.4em;
421
358
  }
422
359
 
423
- .admin label.float {
424
- display: block;
425
- float: right;
426
- width: 200px;
427
- margin-right: 0;
428
- margin-left: 12px;
429
- padding: 0;
430
- text-align: left;
431
- color: #224272;
432
- }
433
-
434
- .admin label.block {
435
- display: block;
436
- }
437
-
438
- .admin label.title {
439
- font-size: 1.7em;
440
- }
441
-
442
- .admin label.content {
443
- font-size: 1.4em;
444
- margin-top: 0.5em;
445
- }
446
-
447
- .admin label.tags {
448
- font-size: 1.4em;
449
- margin-top: 0;
450
- }
451
-
452
360
  .admin input.float {
453
361
  width: auto;
454
362
  border:1px solid #999;
455
363
  }
456
364
 
457
365
  .admin span.float {
458
- margin-right: 212px;
366
+ margin-left: 212px;
459
367
  padding: 0;
460
368
  display: block;
461
369
  clear: both;
462
370
  }
463
371
 
464
372
  .mandatory {
465
- color: #f00;
373
+ color: #f17;
374
+ font-weight: bold;
466
375
  }
467
376
 
468
377
  /* @end */
469
378
 
470
379
  /* @group Sidebar */
471
380
 
472
- /* OK */
473
381
  #sidebar-config p {
474
382
  margin: 0;
475
- padding-right: 5px;
476
383
  }
477
384
 
478
- /* OK */
479
385
  #active, #cnt-active {
480
386
  width: 325px;
481
387
  min-height: 200px;
482
388
  padding-bottom: 10px;
483
389
  }
484
390
 
485
- /* OK */
391
+ #active {
392
+ background: #ffb;
393
+ padding: 5px;
394
+ }
395
+
486
396
  #cnt-active {
487
- margin-right: 360px;
488
- border: #ccc 1px solid;
397
+ margin-left: 360px;
489
398
  }
490
399
 
491
- /* OK */
492
400
  #available {
493
401
  padding-bottom: 10px;
494
- border: #ccc 1px solid;
495
- float: right;
402
+ float: left;
496
403
  width: 325px;
497
404
  }
498
405
 
499
- /* OK */
500
- #available h3, #active h3, #cnt-active h3 {
501
- background: url("../images/admin/bc-bg.gif") #b5b5b5 top right repeat-x;
502
- color: #000;
503
- margin: 0 0 10px 0;
504
- padding: 2px 5px;
406
+ #available_box h4 {
407
+ color: #f17;
408
+ font-weight: bold;
409
+ }
410
+
411
+ #active h4 {
412
+ color: #6a0;
413
+ font-weight: bold;
505
414
  }
506
415
 
507
- /* OK */
508
416
  .dropbox {
509
417
  width: 300px;
510
418
  }
511
419
 
512
- /* OK */
513
420
  .handle {
514
- background: url("../images/admin/table-header-first.png") #324e79 top right no-repeat;
515
- color: #fff;
516
421
  cursor: move;
517
422
  font-size: 13px;
518
423
  font-weight: normal;
519
424
  margin: 0;
520
425
  }
521
426
 
522
- /* OK */
523
427
  .dragitem, .dropitem {
524
- margin: 0 0 5px 12px;
428
+ padding: 12px;
429
+ margin-bottom: 12px;
430
+ background: #eee;
431
+ border-radius: 3px;
432
+ -moz-border-radius: 3px;
433
+ -webkit-border-radius: 4px;
525
434
  }
526
435
 
527
- /* OK */
436
+
528
437
  .dragitem {
529
- background: url("../images/admin/loginformbg.png") #fff bottom right no-repeat;
530
438
  width: 300px;
531
439
  }
532
440
 
533
- /* OK */
534
441
  .target {
535
- background: #F8F7EF;
536
- margin: 5px;
537
442
  padding: 5px;
443
+ min-height: 200px;
538
444
  }
539
445
  /* @end */
540
446
 
@@ -545,18 +451,6 @@ legend {
545
451
  padding: 0 0 5px;
546
452
  }
547
453
 
548
- #info {
549
- color: #4A4902;
550
- }
551
-
552
- #info a {
553
- color: #4A4902;
554
- }
555
-
556
- #info a:hover {
557
- border-bottom: 1px dotted #222;
558
- }
559
-
560
454
  .form p>small {
561
455
  color: gray;
562
456
  }
@@ -566,17 +460,14 @@ legend {
566
460
  font-size: 90%;
567
461
  }
568
462
 
569
- /* OK */
570
463
  .l {
571
- text-align: right;
464
+ text-align: left;
572
465
  }
573
466
 
574
- /* OK */
575
467
  .r {
576
- text-align: left;
468
+ text-align: right;
577
469
  }
578
470
 
579
- /* OK */
580
471
  .c {
581
472
  text-align: center;
582
473
  }
@@ -615,7 +506,7 @@ legend {
615
506
  height: 232px;
616
507
  overflow: hidden;
617
508
  margin: 5px;
618
- float: left;
509
+ float: right;
619
510
  }
620
511
 
621
512
  div#users {
@@ -626,10 +517,10 @@ div#users {
626
517
  div.user {
627
518
  border: 1px solid #9cabba;
628
519
  border-top: 1px solid #bacddf;
629
- border-right: 1px solid #bacddf;
520
+ border-left: 1px solid #bacddf;
630
521
  background: #fff;
631
522
  width: 30%;
632
- float: right;
523
+ float: left;
633
524
  margin: 10px;
634
525
  }
635
526
 
@@ -641,7 +532,7 @@ div.user {
641
532
  .user h4 a {
642
533
  color: #333;
643
534
  background: #f7f7f7;
644
- padding-right: 5px;
535
+ padding-left: 5px;
645
536
  display: block;
646
537
  }
647
538
 
@@ -656,52 +547,33 @@ div.user {
656
547
 
657
548
  /* @end */
658
549
 
659
- #quick-navigate {
660
- background: #F8F7EF;
661
- padding: 2px 5px 0px 5px;
662
- border: 1px dotted #9cabba;
663
- margin-right: 10px;
664
- border-top: none;
665
- }
666
-
667
550
  #quick-post {
668
551
  background: #ffffff;
669
552
  border-top: #333 1px solid;
670
- border-right: #333 1px solid;
671
- border-left: #333 3px solid;
553
+ border-left: #333 1px solid;
554
+ border-right: #333 3px solid;
672
555
  border-bottom: #333 3px solid;
673
556
  padding: 5px;
674
557
  }
675
558
 
676
- #advanced {
677
- line-height: 1.3em;
678
- }
679
-
680
- #advanced label {
681
- clear: right;
682
- float: right;
683
- width: 15em;
684
- }
685
-
686
559
  .clear {
687
560
  clear: both;
688
561
  }
689
562
 
690
563
  /* Login */
691
564
  #loginform {
692
- width: 300px;
693
- margin-right: auto;
565
+ width: 320px;
694
566
  margin-left: auto;
567
+ margin-right: auto;
695
568
  margin-top: 100px;
569
+ border: #464646 1px solid;
696
570
  }
697
571
 
698
- /* OK */
699
572
  #loginform label {
700
- color: #224272;
701
573
  display: block;
702
574
  }
703
575
 
704
- /* OK */
576
+
705
577
  #loginform input {
706
578
  margin-bottom: 10px;
707
579
  border:1px solid #224272;
@@ -709,22 +581,21 @@ div.user {
709
581
  padding: 3px 3px;
710
582
  }
711
583
 
712
- /* OK */
713
584
  #loginform input,
714
585
  #article_form input.submit,
715
586
  #page_form input.submit,
716
587
  .submit {
717
588
  width: 260px;
718
- background: url("../images/admin/bc-bg.gif") #b5b5b5 top right repeat-x;
719
- font: 14px "Trebuchet MS", Helvetica, sans-serif;
589
+ background: #b5b5b5;
590
+ font: 14px;
720
591
  }
721
592
 
722
- /* OK */
593
+
723
594
  #loginform input#submit,
724
595
  #article_form input.submit,
725
596
  #page_form input.submit,
726
597
  input.submit {
727
- margin-left: 3px;
598
+ margin-right: 3px;
728
599
  border-color: #ccc rgb(153, 153, 153) rgb(153, 153, 153) rgb(204, 204, 204);
729
600
  border-style: double;
730
601
  border-width: 3px;
@@ -733,32 +604,17 @@ input.submit {
733
604
  width: auto;
734
605
  }
735
606
 
736
- /* OK */
737
607
  #loginform div.form {
738
608
  border: none;
739
- background: url("../images/admin/loginformbg.png") #fff bottom right no-repeat;
609
+ background: #fff;
740
610
  margin-bottom: 10px;
741
611
  padding: 30px 10px 10px;
742
612
  }
743
613
 
744
- /* OK */
745
614
  #loginform h3 {
746
- text-align: right;
747
- background: url("../images/admin/bgoff.png") #f00 repeat-x top right;
748
- }
749
-
750
- /* OK */
751
- #loginform h4 {
752
- font-weight: normal;
753
- font: 14px Tahoma Helvetica sans-serif;
754
- color: #f00;
755
- border: #f00 1px solid;
756
- padding: 4px;
757
615
  text-align: center;
758
- margin-bottom: 20px;
759
616
  }
760
617
 
761
- /* OK */
762
618
  #loginform .errorExplanation {
763
619
  border: 1px solid #f00;
764
620
  color: #000;
@@ -766,7 +622,6 @@ input.submit {
766
622
  background: #fff;
767
623
  }
768
624
 
769
- /* OK */
770
625
  #loginform .errorExplanation h2 {
771
626
  font-weight: normal;
772
627
  font: 14px Tahoma Helvetica sans-serif;
@@ -775,133 +630,100 @@ input.submit {
775
630
  margin: 0;
776
631
  }
777
632
 
778
- /* OK */
779
- #loginform .errorExplanation ul {
780
- margin-right: 5px;
781
- }
782
-
783
- /* OK */
784
- #loginform .errorExplanation ul li {
785
- list-style: square;
786
- line-height: 1.6em;
787
- }
788
-
789
- /* OK */
790
- #loginform img {
791
- float: right;
792
- margin-left: 5px;
633
+ #loginform a img {
634
+ border: none;
793
635
  }
794
636
  /* End of login form */
795
637
 
796
638
  /* Notices, infos and errors */
797
-
798
639
  #flash span {
640
+ background: #fff;
799
641
  padding: 5px;
800
- margin-top: 10px;
801
- color: #0C2504;
642
+ margin: 10px 20px 0 0;
643
+ color: #000;
802
644
  display: block;
803
645
  }
804
646
 
805
647
  #flash .notice {
806
- background: url("../images/admin/bc-bg.gif") #ccc repeat-x;
807
- border: 1px solid #336699;
648
+ border: 2px solid #66AA00;
649
+ color: #66AA00;
808
650
  }
809
651
 
810
652
  #flash .error {
811
- background: #e99;
812
- border-top: 1px solid #822;
813
- border-bottom: 1px solid #822;
653
+ border: #FF1177 2px solid;
654
+ color: #FF1177;
814
655
  }
656
+ /* End of notices, infos and errors */
815
657
 
816
658
  #category_list {
817
659
  list-style: none;
818
660
  margin: 0;
819
661
  padding: 0;
820
662
  margin-top: 10px;
821
- width: 300px;
663
+ width: 100%;
822
664
  }
823
665
 
824
666
  #category_list li {
825
667
  cursor: move;
826
668
  border-bottom: 1px dotted #ccc;
669
+ padding: 12px 3px;
827
670
  }
828
671
 
829
- /* @end */
830
-
831
- /* @group Feedback */
832
-
833
- .feedbackbody td {
834
- border-bottom: 1px dotted #ccc;
672
+ .published,
673
+ a.published,
674
+ td.active {
675
+ color: #66AA00;
835
676
  }
836
677
 
837
- .presumed_ham td {
838
- border-bottom: 1px dotted #ccc;
678
+ .unpublished,
679
+ a.unpublished,
680
+ td.inactive {
681
+ color: #FF1177;
839
682
  }
840
683
 
841
- .presumed_spam td {
842
- border-bottom: 1px dotted #ccc;
684
+ td.active,
685
+ td.inactive {
686
+ font-weight: bold;
843
687
  }
844
688
 
845
- .ham td {
846
- border-bottom: 1px dotted #ccc;
847
- }
848
-
849
- .spam td {
850
- border-bottom: 1px dotted #ccc;
851
- }
852
-
853
- .spam .state {
854
- font-weight: bold
855
- }
856
-
857
- /* oard */
689
+ /* @end */
858
690
 
691
+ /* Dashboard */
859
692
  .dashboard-small {
860
693
  width: 23%;
861
- float: right;
694
+ float: left;
862
695
  margin-bottom: 10px;
863
- margin-right: 2%;
696
+ margin-left: 2%;
864
697
  display: inline;
865
698
  }
866
699
 
867
700
  .dashboard {
868
701
  width: 71%;
869
- margin-right: 28%;
702
+ margin-left: 28%;
870
703
  margin-bottom: 10px;
871
704
  }
872
705
 
873
- /* OK */
874
- .dashboard h3,
875
- .dashboard-small h3 {
876
- padding: 0 0 5px 0;
706
+ #dashboard h3 {
707
+ padding: 0;
877
708
  margin: 0;
878
- background: none;
879
- color: #324e79;
880
- font-size: 16px;
881
- font-weight: normal;
882
- border-bottom: #324e79 1px solid;
883
709
  }
884
710
 
885
- /* OK */
886
- .dashboard ul,
887
- .dashboard-small ul {
711
+ #dashboard ul {
888
712
  margin: 0;
889
713
  padding: 0;
890
- padding-top: 10px;
714
+ padding-top: 5px;
891
715
  padding-bottom: 10px;
892
716
  }
893
717
 
894
- .dashboard ul li,
895
- .dashboard-small ul li {
896
- margin-right: 0;
897
- padding: 4px 10px 4px 2px;
718
+ #dashboard ul li {
719
+ margin-left: 0;
720
+ padding: 12px 3px 12px 3px;
898
721
  list-style: none;
722
+ font-size: 1.1em;
723
+ border-bottom: #eee 1px solid;
899
724
  }
900
725
 
901
- .dashboard ul li.shade,
902
- .dashboard-small ul li.shade {
903
- background : #d0d0d0;
904
- }
726
+ /* End of dashboard */
905
727
 
906
728
  hr {
907
729
  border: medium none;
@@ -916,11 +738,11 @@ hr {
916
738
  /* Theme editor */
917
739
  #theme_list {
918
740
  width: 300px;
919
- float: left;
741
+ float: right;
920
742
  }
921
743
 
922
744
  #theme_editor {
923
- margin-left: 320px;
745
+ margin-right: 320px;
924
746
  min-height: 500px;
925
747
  }
926
748
 
@@ -931,7 +753,6 @@ hr {
931
753
 
932
754
  .theme-filer {
933
755
  width: 300px;
934
- background: url('../images/admin/loginformbg.png') no-repeat scroll right bottom;
935
756
  padding: 5px 0;
936
757
  margin-bottom: 15px;
937
758
  }
@@ -943,11 +764,11 @@ hr {
943
764
 
944
765
  .theme-filer ul li {
945
766
  list-style: none;
946
- margin-right: 10px;
767
+ margin-left: 10px;
947
768
  }
948
769
 
949
770
  #theme_list h3 {
950
- background: url("../images/admin/table-header-first.png") #324e79 top right no-repeat;
771
+ background: #324e79;
951
772
  color: #fff;
952
773
  cursor: move;
953
774
  font-size: 13px;
@@ -959,7 +780,7 @@ hr {
959
780
 
960
781
  li.paginate {
961
782
  margin-bottom: 15px;
962
- border-right: #b0b0b0 5px solid;
783
+ border-left: #b0b0b0 8px solid;
963
784
  }
964
785
 
965
786
  div.auto_complete {
@@ -995,19 +816,15 @@ div.auto_complete ul strong.highlight {
995
816
  display: none;
996
817
  }
997
818
 
998
- tr.menubar {
999
- background : #bbb;
1000
- }
1001
-
1002
819
  .theme {
1003
- width: 260px;
1004
- float: right;
1005
- margin-left: 20px;
820
+ width: 260px;
821
+ float: left;
822
+ margin-right: 20px;
1006
823
  overflow: hidden;
1007
824
  }
1008
825
 
1009
826
  .theme img {
1010
- width: 240px;
827
+ width: 250px;
1011
828
  }
1012
829
 
1013
830
  .theme hr {
@@ -1018,9 +835,71 @@ tr.menubar {
1018
835
  color: green;
1019
836
  }
1020
837
 
1021
- /* Menu déroulant */
838
+ #categories {
839
+ height: 220px;
840
+ overflow-y: scroll;
841
+ border: #ddd 1px solid;
842
+ }
1022
843
 
1023
- .paginate1 {
1024
- float: right;
1025
- width: 100%;
844
+ #editor {
845
+ width: 700px;
846
+ }
847
+
848
+ #simple_editor,
849
+ #visual_editor {
850
+ background: #464646;
851
+ padding: 10px;
852
+ border-radius: 3px;
853
+ }
854
+
855
+ #simple_editor {
856
+ border-radius: 3px;
857
+ -moz-border-bottom-left-radius: 3px;
858
+ -moz-border-bottom-right-radius: 3px;
859
+ -webkit-border-bottom-left-radius: 4px;
860
+ -webkit-border-bottom-right-radius: 4px;
861
+ }
862
+
863
+ #visual_editor {
864
+ -moz-border-radius: 3px;
865
+ -webkit-border-radius: 4px;
866
+ }
867
+
868
+ #quicktags {
869
+ background: #464646;
870
+ padding-top: 10px;
871
+ padding-left: 10px;
872
+ border-radius: 3px 0 0 0;
873
+ -moz-border-top-left-radius: 3px 0 0 0;
874
+ -webkit-border-top-left-radius: 4px;
875
+ }
876
+
877
+ #saveblock {
878
+ border-radius: 3px;
879
+ -moz-border-radius: 3px;
880
+ -webkit-border-radius: 4px;
881
+ }
882
+
883
+ #editor-menu {
884
+ text-align: right;
885
+ }
886
+
887
+ #editor-menu span.active {
888
+ background: #464646;
889
+ padding: 5px;
890
+ border-radius: 3px 0 0 0;
891
+ -moz-border-top-left-radius: 3px 0 0 0;
892
+ -moz-border-top-right-radius: 3px 0 0 0;
893
+ -webkit-border-top-left-radius: 4px;
894
+ -webkit-border-top-right-radius: 4px;
895
+ }
896
+
897
+ #editor-menu span.inactive {
898
+ background: #f9f9f9;
899
+ padding: 0px;
900
+ }
901
+
902
+ ul.admin {
903
+ margin-left: 0;
904
+ padding-left: 0;
1026
905
  }