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,958 @@
1
+ // Copyright (c) 2005 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
2
+ // Contributors:
3
+ // Justin Palmer (http://encytemedia.com/)
4
+ // Mark Pilgrim (http://diveintomark.org/)
5
+ // Martin Bialasinki
6
+ //
7
+ // See scriptaculous.js for full license.
8
+
9
+ // converts rgb() and #xxx to #xxxxxx format,
10
+ // returns self (or first argument) if not convertable
11
+ String.prototype.parseColor = function() {
12
+ var color = '#';
13
+ if(this.slice(0,4) == 'rgb(') {
14
+ var cols = this.slice(4,this.length-1).split(',');
15
+ var i=0; do { color += parseInt(cols[i]).toColorPart() } while (++i<3);
16
+ } else {
17
+ if(this.slice(0,1) == '#') {
18
+ if(this.length==4) for(var i=1;i<4;i++) color += (this.charAt(i) + this.charAt(i)).toLowerCase();
19
+ if(this.length==7) color = this.toLowerCase();
20
+ }
21
+ }
22
+ return(color.length==7 ? color : (arguments[0] || this));
23
+ }
24
+
25
+ /*--------------------------------------------------------------------------*/
26
+
27
+ Element.collectTextNodes = function(element) {
28
+ return $A($(element).childNodes).collect( function(node) {
29
+ return (node.nodeType==3 ? node.nodeValue :
30
+ (node.hasChildNodes() ? Element.collectTextNodes(node) : ''));
31
+ }).flatten().join('');
32
+ }
33
+
34
+ Element.collectTextNodesIgnoreClass = function(element, className) {
35
+ return $A($(element).childNodes).collect( function(node) {
36
+ return (node.nodeType==3 ? node.nodeValue :
37
+ ((node.hasChildNodes() && !Element.hasClassName(node,className)) ?
38
+ Element.collectTextNodesIgnoreClass(node, className) : ''));
39
+ }).flatten().join('');
40
+ }
41
+
42
+ Element.setContentZoom = function(element, percent) {
43
+ element = $(element);
44
+ Element.setStyle(element, {fontSize: (percent/100) + 'em'});
45
+ if(navigator.appVersion.indexOf('AppleWebKit')>0) window.scrollBy(0,0);
46
+ }
47
+
48
+ Element.getOpacity = function(element){
49
+ var opacity;
50
+ if (opacity = Element.getStyle(element, 'opacity'))
51
+ return parseFloat(opacity);
52
+ if (opacity = (Element.getStyle(element, 'filter') || '').match(/alpha\(opacity=(.*)\)/))
53
+ if(opacity[1]) return parseFloat(opacity[1]) / 100;
54
+ return 1.0;
55
+ }
56
+
57
+ Element.setOpacity = function(element, value){
58
+ element= $(element);
59
+ if (value == 1){
60
+ Element.setStyle(element, { opacity:
61
+ (/Gecko/.test(navigator.userAgent) && !/Konqueror|Safari|KHTML/.test(navigator.userAgent)) ?
62
+ 0.999999 : null });
63
+ if(/MSIE/.test(navigator.userAgent))
64
+ Element.setStyle(element, {filter: Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,'')});
65
+ } else {
66
+ if(value < 0.00001) value = 0;
67
+ Element.setStyle(element, {opacity: value});
68
+ if(/MSIE/.test(navigator.userAgent))
69
+ Element.setStyle(element,
70
+ { filter: Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,'') +
71
+ 'alpha(opacity='+value*100+')' });
72
+ }
73
+ }
74
+
75
+ Element.getInlineOpacity = function(element){
76
+ return $(element).style.opacity || '';
77
+ }
78
+
79
+ Element.childrenWithClassName = function(element, className, findFirst) {
80
+ var classNameRegExp = new RegExp("(^|\\s)" + className + "(\\s|$)");
81
+ var results = $A($(element).getElementsByTagName('*'))[findFirst ? 'detect' : 'select']( function(c) {
82
+ return (c.className && c.className.match(classNameRegExp));
83
+ });
84
+ if(!results) results = [];
85
+ return results;
86
+ }
87
+
88
+ Element.forceRerendering = function(element) {
89
+ try {
90
+ element = $(element);
91
+ var n = document.createTextNode(' ');
92
+ element.appendChild(n);
93
+ element.removeChild(n);
94
+ } catch(e) { }
95
+ };
96
+
97
+ /*--------------------------------------------------------------------------*/
98
+
99
+ Array.prototype.call = function() {
100
+ var args = arguments;
101
+ this.each(function(f){ f.apply(this, args) });
102
+ }
103
+
104
+ /*--------------------------------------------------------------------------*/
105
+
106
+ var Effect = {
107
+ tagifyText: function(element) {
108
+ var tagifyStyle = 'position:relative';
109
+ if(/MSIE/.test(navigator.userAgent)) tagifyStyle += ';zoom:1';
110
+ element = $(element);
111
+ $A(element.childNodes).each( function(child) {
112
+ if(child.nodeType==3) {
113
+ child.nodeValue.toArray().each( function(character) {
114
+ element.insertBefore(
115
+ Builder.node('span',{style: tagifyStyle},
116
+ character == ' ' ? String.fromCharCode(160) : character),
117
+ child);
118
+ });
119
+ Element.remove(child);
120
+ }
121
+ });
122
+ },
123
+ multiple: function(element, effect) {
124
+ var elements;
125
+ if(((typeof element == 'object') ||
126
+ (typeof element == 'function')) &&
127
+ (element.length))
128
+ elements = element;
129
+ else
130
+ elements = $(element).childNodes;
131
+
132
+ var options = Object.extend({
133
+ speed: 0.1,
134
+ delay: 0.0
135
+ }, arguments[2] || {});
136
+ var masterDelay = options.delay;
137
+
138
+ $A(elements).each( function(element, index) {
139
+ new effect(element, Object.extend(options, { delay: index * options.speed + masterDelay }));
140
+ });
141
+ },
142
+ PAIRS: {
143
+ 'slide': ['SlideDown','SlideUp'],
144
+ 'blind': ['BlindDown','BlindUp'],
145
+ 'appear': ['Appear','Fade']
146
+ },
147
+ toggle: function(element, effect) {
148
+ element = $(element);
149
+ effect = (effect || 'appear').toLowerCase();
150
+ var options = Object.extend({
151
+ queue: { position:'end', scope:(element.id || 'global'), limit: 1 }
152
+ }, arguments[2] || {});
153
+ Effect[element.visible() ?
154
+ Effect.PAIRS[effect][1] : Effect.PAIRS[effect][0]](element, options);
155
+ }
156
+ };
157
+
158
+ var Effect2 = Effect; // deprecated
159
+
160
+ /* ------------- transitions ------------- */
161
+
162
+ Effect.Transitions = {}
163
+
164
+ Effect.Transitions.linear = function(pos) {
165
+ return pos;
166
+ }
167
+ Effect.Transitions.sinoidal = function(pos) {
168
+ return (-Math.cos(pos*Math.PI)/2) + 0.5;
169
+ }
170
+ Effect.Transitions.reverse = function(pos) {
171
+ return 1-pos;
172
+ }
173
+ Effect.Transitions.flicker = function(pos) {
174
+ return ((-Math.cos(pos*Math.PI)/4) + 0.75) + Math.random()/4;
175
+ }
176
+ Effect.Transitions.wobble = function(pos) {
177
+ return (-Math.cos(pos*Math.PI*(9*pos))/2) + 0.5;
178
+ }
179
+ Effect.Transitions.pulse = function(pos) {
180
+ return (Math.floor(pos*10) % 2 == 0 ?
181
+ (pos*10-Math.floor(pos*10)) : 1-(pos*10-Math.floor(pos*10)));
182
+ }
183
+ Effect.Transitions.none = function(pos) {
184
+ return 0;
185
+ }
186
+ Effect.Transitions.full = function(pos) {
187
+ return 1;
188
+ }
189
+
190
+ /* ------------- core effects ------------- */
191
+
192
+ Effect.ScopedQueue = Class.create();
193
+ Object.extend(Object.extend(Effect.ScopedQueue.prototype, Enumerable), {
194
+ initialize: function() {
195
+ this.effects = [];
196
+ this.interval = null;
197
+ },
198
+ _each: function(iterator) {
199
+ this.effects._each(iterator);
200
+ },
201
+ add: function(effect) {
202
+ var timestamp = new Date().getTime();
203
+
204
+ var position = (typeof effect.options.queue == 'string') ?
205
+ effect.options.queue : effect.options.queue.position;
206
+
207
+ switch(position) {
208
+ case 'front':
209
+ // move unstarted effects after this effect
210
+ this.effects.findAll(function(e){ return e.state=='idle' }).each( function(e) {
211
+ e.startOn += effect.finishOn;
212
+ e.finishOn += effect.finishOn;
213
+ });
214
+ break;
215
+ case 'end':
216
+ // start effect after last queued effect has finished
217
+ timestamp = this.effects.pluck('finishOn').max() || timestamp;
218
+ break;
219
+ }
220
+
221
+ effect.startOn += timestamp;
222
+ effect.finishOn += timestamp;
223
+
224
+ if(!effect.options.queue.limit || (this.effects.length < effect.options.queue.limit))
225
+ this.effects.push(effect);
226
+
227
+ if(!this.interval)
228
+ this.interval = setInterval(this.loop.bind(this), 40);
229
+ },
230
+ remove: function(effect) {
231
+ this.effects = this.effects.reject(function(e) { return e==effect });
232
+ if(this.effects.length == 0) {
233
+ clearInterval(this.interval);
234
+ this.interval = null;
235
+ }
236
+ },
237
+ loop: function() {
238
+ var timePos = new Date().getTime();
239
+ this.effects.invoke('loop', timePos);
240
+ }
241
+ });
242
+
243
+ Effect.Queues = {
244
+ instances: $H(),
245
+ get: function(queueName) {
246
+ if(typeof queueName != 'string') return queueName;
247
+
248
+ if(!this.instances[queueName])
249
+ this.instances[queueName] = new Effect.ScopedQueue();
250
+
251
+ return this.instances[queueName];
252
+ }
253
+ }
254
+ Effect.Queue = Effect.Queues.get('global');
255
+
256
+ Effect.DefaultOptions = {
257
+ transition: Effect.Transitions.sinoidal,
258
+ duration: 1.0, // seconds
259
+ fps: 25.0, // max. 25fps due to Effect.Queue implementation
260
+ sync: false, // true for combining
261
+ from: 0.0,
262
+ to: 1.0,
263
+ delay: 0.0,
264
+ queue: 'parallel'
265
+ }
266
+
267
+ Effect.Base = function() {};
268
+ Effect.Base.prototype = {
269
+ position: null,
270
+ start: function(options) {
271
+ this.options = Object.extend(Object.extend({},Effect.DefaultOptions), options || {});
272
+ this.currentFrame = 0;
273
+ this.state = 'idle';
274
+ this.startOn = this.options.delay*1000;
275
+ this.finishOn = this.startOn + (this.options.duration*1000);
276
+ this.event('beforeStart');
277
+ if(!this.options.sync)
278
+ Effect.Queues.get(typeof this.options.queue == 'string' ?
279
+ 'global' : this.options.queue.scope).add(this);
280
+ },
281
+ loop: function(timePos) {
282
+ if(timePos >= this.startOn) {
283
+ if(timePos >= this.finishOn) {
284
+ this.render(1.0);
285
+ this.cancel();
286
+ this.event('beforeFinish');
287
+ if(this.finish) this.finish();
288
+ this.event('afterFinish');
289
+ return;
290
+ }
291
+ var pos = (timePos - this.startOn) / (this.finishOn - this.startOn);
292
+ var frame = Math.round(pos * this.options.fps * this.options.duration);
293
+ if(frame > this.currentFrame) {
294
+ this.render(pos);
295
+ this.currentFrame = frame;
296
+ }
297
+ }
298
+ },
299
+ render: function(pos) {
300
+ if(this.state == 'idle') {
301
+ this.state = 'running';
302
+ this.event('beforeSetup');
303
+ if(this.setup) this.setup();
304
+ this.event('afterSetup');
305
+ }
306
+ if(this.state == 'running') {
307
+ if(this.options.transition) pos = this.options.transition(pos);
308
+ pos *= (this.options.to-this.options.from);
309
+ pos += this.options.from;
310
+ this.position = pos;
311
+ this.event('beforeUpdate');
312
+ if(this.update) this.update(pos);
313
+ this.event('afterUpdate');
314
+ }
315
+ },
316
+ cancel: function() {
317
+ if(!this.options.sync)
318
+ Effect.Queues.get(typeof this.options.queue == 'string' ?
319
+ 'global' : this.options.queue.scope).remove(this);
320
+ this.state = 'finished';
321
+ },
322
+ event: function(eventName) {
323
+ if(this.options[eventName + 'Internal']) this.options[eventName + 'Internal'](this);
324
+ if(this.options[eventName]) this.options[eventName](this);
325
+ },
326
+ inspect: function() {
327
+ return '#<Effect:' + $H(this).inspect() + ',options:' + $H(this.options).inspect() + '>';
328
+ }
329
+ }
330
+
331
+ Effect.Parallel = Class.create();
332
+ Object.extend(Object.extend(Effect.Parallel.prototype, Effect.Base.prototype), {
333
+ initialize: function(effects) {
334
+ this.effects = effects || [];
335
+ this.start(arguments[1]);
336
+ },
337
+ update: function(position) {
338
+ this.effects.invoke('render', position);
339
+ },
340
+ finish: function(position) {
341
+ this.effects.each( function(effect) {
342
+ effect.render(1.0);
343
+ effect.cancel();
344
+ effect.event('beforeFinish');
345
+ if(effect.finish) effect.finish(position);
346
+ effect.event('afterFinish');
347
+ });
348
+ }
349
+ });
350
+
351
+ Effect.Opacity = Class.create();
352
+ Object.extend(Object.extend(Effect.Opacity.prototype, Effect.Base.prototype), {
353
+ initialize: function(element) {
354
+ this.element = $(element);
355
+ // make this work on IE on elements without 'layout'
356
+ if(/MSIE/.test(navigator.userAgent) && (!this.element.hasLayout))
357
+ this.element.setStyle({zoom: 1});
358
+ var options = Object.extend({
359
+ from: this.element.getOpacity() || 0.0,
360
+ to: 1.0
361
+ }, arguments[1] || {});
362
+ this.start(options);
363
+ },
364
+ update: function(position) {
365
+ this.element.setOpacity(position);
366
+ }
367
+ });
368
+
369
+ Effect.Move = Class.create();
370
+ Object.extend(Object.extend(Effect.Move.prototype, Effect.Base.prototype), {
371
+ initialize: function(element) {
372
+ this.element = $(element);
373
+ var options = Object.extend({
374
+ x: 0,
375
+ y: 0,
376
+ mode: 'relative'
377
+ }, arguments[1] || {});
378
+ this.start(options);
379
+ },
380
+ setup: function() {
381
+ // Bug in Opera: Opera returns the "real" position of a static element or
382
+ // relative element that does not have top/left explicitly set.
383
+ // ==> Always set top and left for position relative elements in your stylesheets
384
+ // (to 0 if you do not need them)
385
+ this.element.makePositioned();
386
+ this.originalLeft = parseFloat(this.element.getStyle('left') || '0');
387
+ this.originalTop = parseFloat(this.element.getStyle('top') || '0');
388
+ if(this.options.mode == 'absolute') {
389
+ // absolute movement, so we need to calc deltaX and deltaY
390
+ this.options.x = this.options.x - this.originalLeft;
391
+ this.options.y = this.options.y - this.originalTop;
392
+ }
393
+ },
394
+ update: function(position) {
395
+ this.element.setStyle({
396
+ left: this.options.x * position + this.originalLeft + 'px',
397
+ top: this.options.y * position + this.originalTop + 'px'
398
+ });
399
+ }
400
+ });
401
+
402
+ // for backwards compatibility
403
+ Effect.MoveBy = function(element, toTop, toLeft) {
404
+ return new Effect.Move(element,
405
+ Object.extend({ x: toLeft, y: toTop }, arguments[3] || {}));
406
+ };
407
+
408
+ Effect.Scale = Class.create();
409
+ Object.extend(Object.extend(Effect.Scale.prototype, Effect.Base.prototype), {
410
+ initialize: function(element, percent) {
411
+ this.element = $(element)
412
+ var options = Object.extend({
413
+ scaleX: true,
414
+ scaleY: true,
415
+ scaleContent: true,
416
+ scaleFromCenter: false,
417
+ scaleMode: 'box', // 'box' or 'contents' or {} with provided values
418
+ scaleFrom: 100.0,
419
+ scaleTo: percent
420
+ }, arguments[2] || {});
421
+ this.start(options);
422
+ },
423
+ setup: function() {
424
+ this.restoreAfterFinish = this.options.restoreAfterFinish || false;
425
+ this.elementPositioning = this.element.getStyle('position');
426
+
427
+ this.originalStyle = {};
428
+ ['top','left','width','height','fontSize'].each( function(k) {
429
+ this.originalStyle[k] = this.element.style[k];
430
+ }.bind(this));
431
+
432
+ this.originalTop = this.element.offsetTop;
433
+ this.originalLeft = this.element.offsetLeft;
434
+
435
+ var fontSize = this.element.getStyle('font-size') || '100%';
436
+ ['em','px','%'].each( function(fontSizeType) {
437
+ if(fontSize.indexOf(fontSizeType)>0) {
438
+ this.fontSize = parseFloat(fontSize);
439
+ this.fontSizeType = fontSizeType;
440
+ }
441
+ }.bind(this));
442
+
443
+ this.factor = (this.options.scaleTo - this.options.scaleFrom)/100;
444
+
445
+ this.dims = null;
446
+ if(this.options.scaleMode=='box')
447
+ this.dims = [this.element.offsetHeight, this.element.offsetWidth];
448
+ if(/^content/.test(this.options.scaleMode))
449
+ this.dims = [this.element.scrollHeight, this.element.scrollWidth];
450
+ if(!this.dims)
451
+ this.dims = [this.options.scaleMode.originalHeight,
452
+ this.options.scaleMode.originalWidth];
453
+ },
454
+ update: function(position) {
455
+ var currentScale = (this.options.scaleFrom/100.0) + (this.factor * position);
456
+ if(this.options.scaleContent && this.fontSize)
457
+ this.element.setStyle({fontSize: this.fontSize * currentScale + this.fontSizeType });
458
+ this.setDimensions(this.dims[0] * currentScale, this.dims[1] * currentScale);
459
+ },
460
+ finish: function(position) {
461
+ if (this.restoreAfterFinish) this.element.setStyle(this.originalStyle);
462
+ },
463
+ setDimensions: function(height, width) {
464
+ var d = {};
465
+ if(this.options.scaleX) d.width = width + 'px';
466
+ if(this.options.scaleY) d.height = height + 'px';
467
+ if(this.options.scaleFromCenter) {
468
+ var topd = (height - this.dims[0])/2;
469
+ var leftd = (width - this.dims[1])/2;
470
+ if(this.elementPositioning == 'absolute') {
471
+ if(this.options.scaleY) d.top = this.originalTop-topd + 'px';
472
+ if(this.options.scaleX) d.left = this.originalLeft-leftd + 'px';
473
+ } else {
474
+ if(this.options.scaleY) d.top = -topd + 'px';
475
+ if(this.options.scaleX) d.left = -leftd + 'px';
476
+ }
477
+ }
478
+ this.element.setStyle(d);
479
+ }
480
+ });
481
+
482
+ Effect.Highlight = Class.create();
483
+ Object.extend(Object.extend(Effect.Highlight.prototype, Effect.Base.prototype), {
484
+ initialize: function(element) {
485
+ this.element = $(element);
486
+ var options = Object.extend({ startcolor: '#ffff99' }, arguments[1] || {});
487
+ this.start(options);
488
+ },
489
+ setup: function() {
490
+ // Prevent executing on elements not in the layout flow
491
+ if(this.element.getStyle('display')=='none') { this.cancel(); return; }
492
+ // Disable background image during the effect
493
+ this.oldStyle = {
494
+ backgroundImage: this.element.getStyle('background-image') };
495
+ this.element.setStyle({backgroundImage: 'none'});
496
+ if(!this.options.endcolor)
497
+ this.options.endcolor = this.element.getStyle('background-color').parseColor('#ffffff');
498
+ if(!this.options.restorecolor)
499
+ this.options.restorecolor = this.element.getStyle('background-color');
500
+ // init color calculations
501
+ this._base = $R(0,2).map(function(i){ return parseInt(this.options.startcolor.slice(i*2+1,i*2+3),16) }.bind(this));
502
+ this._delta = $R(0,2).map(function(i){ return parseInt(this.options.endcolor.slice(i*2+1,i*2+3),16)-this._base[i] }.bind(this));
503
+ },
504
+ update: function(position) {
505
+ this.element.setStyle({backgroundColor: $R(0,2).inject('#',function(m,v,i){
506
+ return m+(Math.round(this._base[i]+(this._delta[i]*position)).toColorPart()); }.bind(this)) });
507
+ },
508
+ finish: function() {
509
+ this.element.setStyle(Object.extend(this.oldStyle, {
510
+ backgroundColor: this.options.restorecolor
511
+ }));
512
+ }
513
+ });
514
+
515
+ Effect.ScrollTo = Class.create();
516
+ Object.extend(Object.extend(Effect.ScrollTo.prototype, Effect.Base.prototype), {
517
+ initialize: function(element) {
518
+ this.element = $(element);
519
+ this.start(arguments[1] || {});
520
+ },
521
+ setup: function() {
522
+ Position.prepare();
523
+ var offsets = Position.cumulativeOffset(this.element);
524
+ if(this.options.offset) offsets[1] += this.options.offset;
525
+ var max = window.innerHeight ?
526
+ window.height - window.innerHeight :
527
+ document.body.scrollHeight -
528
+ (document.documentElement.clientHeight ?
529
+ document.documentElement.clientHeight : document.body.clientHeight);
530
+ this.scrollStart = Position.deltaY;
531
+ this.delta = (offsets[1] > max ? max : offsets[1]) - this.scrollStart;
532
+ },
533
+ update: function(position) {
534
+ Position.prepare();
535
+ window.scrollTo(Position.deltaX,
536
+ this.scrollStart + (position*this.delta));
537
+ }
538
+ });
539
+
540
+ /* ------------- combination effects ------------- */
541
+
542
+ Effect.Fade = function(element) {
543
+ element = $(element);
544
+ var oldOpacity = element.getInlineOpacity();
545
+ var options = Object.extend({
546
+ from: element.getOpacity() || 1.0,
547
+ to: 0.0,
548
+ afterFinishInternal: function(effect) {
549
+ if(effect.options.to!=0) return;
550
+ effect.element.hide();
551
+ effect.element.setStyle({opacity: oldOpacity});
552
+ }}, arguments[1] || {});
553
+ return new Effect.Opacity(element,options);
554
+ }
555
+
556
+ Effect.Appear = function(element) {
557
+ element = $(element);
558
+ var options = Object.extend({
559
+ from: (element.getStyle('display') == 'none' ? 0.0 : element.getOpacity() || 0.0),
560
+ to: 1.0,
561
+ // force Safari to render floated elements properly
562
+ afterFinishInternal: function(effect) {
563
+ effect.element.forceRerendering();
564
+ },
565
+ beforeSetup: function(effect) {
566
+ effect.element.setOpacity(effect.options.from);
567
+ effect.element.show();
568
+ }}, arguments[1] || {});
569
+ return new Effect.Opacity(element,options);
570
+ }
571
+
572
+ Effect.Puff = function(element) {
573
+ element = $(element);
574
+ var oldStyle = { opacity: element.getInlineOpacity(), position: element.getStyle('position') };
575
+ return new Effect.Parallel(
576
+ [ new Effect.Scale(element, 200,
577
+ { sync: true, scaleFromCenter: true, scaleContent: true, restoreAfterFinish: true }),
578
+ new Effect.Opacity(element, { sync: true, to: 0.0 } ) ],
579
+ Object.extend({ duration: 1.0,
580
+ beforeSetupInternal: function(effect) {
581
+ effect.effects[0].element.setStyle({position: 'absolute'}); },
582
+ afterFinishInternal: function(effect) {
583
+ effect.effects[0].element.hide();
584
+ effect.effects[0].element.setStyle(oldStyle); }
585
+ }, arguments[1] || {})
586
+ );
587
+ }
588
+
589
+ Effect.BlindUp = function(element) {
590
+ element = $(element);
591
+ element.makeClipping();
592
+ return new Effect.Scale(element, 0,
593
+ Object.extend({ scaleContent: false,
594
+ scaleX: false,
595
+ restoreAfterFinish: true,
596
+ afterFinishInternal: function(effect) {
597
+ effect.element.hide();
598
+ effect.element.undoClipping();
599
+ }
600
+ }, arguments[1] || {})
601
+ );
602
+ }
603
+
604
+ Effect.BlindDown = function(element) {
605
+ element = $(element);
606
+ var elementDimensions = element.getDimensions();
607
+ return new Effect.Scale(element, 100,
608
+ Object.extend({ scaleContent: false,
609
+ scaleX: false,
610
+ scaleFrom: 0,
611
+ scaleMode: {originalHeight: elementDimensions.height, originalWidth: elementDimensions.width},
612
+ restoreAfterFinish: true,
613
+ afterSetup: function(effect) {
614
+ effect.element.makeClipping();
615
+ effect.element.setStyle({height: '0px'});
616
+ effect.element.show();
617
+ },
618
+ afterFinishInternal: function(effect) {
619
+ effect.element.undoClipping();
620
+ }
621
+ }, arguments[1] || {})
622
+ );
623
+ }
624
+
625
+ Effect.SwitchOff = function(element) {
626
+ element = $(element);
627
+ var oldOpacity = element.getInlineOpacity();
628
+ return new Effect.Appear(element, {
629
+ duration: 0.4,
630
+ from: 0,
631
+ transition: Effect.Transitions.flicker,
632
+ afterFinishInternal: function(effect) {
633
+ new Effect.Scale(effect.element, 1, {
634
+ duration: 0.3, scaleFromCenter: true,
635
+ scaleX: false, scaleContent: false, restoreAfterFinish: true,
636
+ beforeSetup: function(effect) {
637
+ effect.element.makePositioned();
638
+ effect.element.makeClipping();
639
+ },
640
+ afterFinishInternal: function(effect) {
641
+ effect.element.hide();
642
+ effect.element.undoClipping();
643
+ effect.element.undoPositioned();
644
+ effect.element.setStyle({opacity: oldOpacity});
645
+ }
646
+ })
647
+ }
648
+ });
649
+ }
650
+
651
+ Effect.DropOut = function(element) {
652
+ element = $(element);
653
+ var oldStyle = {
654
+ top: element.getStyle('top'),
655
+ left: element.getStyle('left'),
656
+ opacity: element.getInlineOpacity() };
657
+ return new Effect.Parallel(
658
+ [ new Effect.Move(element, {x: 0, y: 100, sync: true }),
659
+ new Effect.Opacity(element, { sync: true, to: 0.0 }) ],
660
+ Object.extend(
661
+ { duration: 0.5,
662
+ beforeSetup: function(effect) {
663
+ effect.effects[0].element.makePositioned();
664
+ },
665
+ afterFinishInternal: function(effect) {
666
+ effect.effects[0].element.hide();
667
+ effect.effects[0].element.undoPositioned();
668
+ effect.effects[0].element.setStyle(oldStyle);
669
+ }
670
+ }, arguments[1] || {}));
671
+ }
672
+
673
+ Effect.Shake = function(element) {
674
+ element = $(element);
675
+ var oldStyle = {
676
+ top: element.getStyle('top'),
677
+ left: element.getStyle('left') };
678
+ return new Effect.Move(element,
679
+ { x: 20, y: 0, duration: 0.05, afterFinishInternal: function(effect) {
680
+ new Effect.Move(effect.element,
681
+ { x: -40, y: 0, duration: 0.1, afterFinishInternal: function(effect) {
682
+ new Effect.Move(effect.element,
683
+ { x: 40, y: 0, duration: 0.1, afterFinishInternal: function(effect) {
684
+ new Effect.Move(effect.element,
685
+ { x: -40, y: 0, duration: 0.1, afterFinishInternal: function(effect) {
686
+ new Effect.Move(effect.element,
687
+ { x: 40, y: 0, duration: 0.1, afterFinishInternal: function(effect) {
688
+ new Effect.Move(effect.element,
689
+ { x: -20, y: 0, duration: 0.05, afterFinishInternal: function(effect) {
690
+ effect.element.undoPositioned();
691
+ effect.element.setStyle(oldStyle);
692
+ }}) }}) }}) }}) }}) }});
693
+ }
694
+
695
+ Effect.SlideDown = function(element) {
696
+ element = $(element);
697
+ element.cleanWhitespace();
698
+ // SlideDown need to have the content of the element wrapped in a container element with fixed height!
699
+ var oldInnerBottom = $(element.firstChild).getStyle('bottom');
700
+ var elementDimensions = element.getDimensions();
701
+ return new Effect.Scale(element, 100, Object.extend({
702
+ scaleContent: false,
703
+ scaleX: false,
704
+ scaleFrom: 0,
705
+ scaleMode: {originalHeight: elementDimensions.height, originalWidth: elementDimensions.width},
706
+ restoreAfterFinish: true,
707
+ afterSetup: function(effect) {
708
+ effect.element.makePositioned();
709
+ effect.element.firstChild.makePositioned();
710
+ if(window.opera) effect.element.setStyle({top: ''});
711
+ effect.element.makeClipping();
712
+ effect.element.setStyle({height: '0px'});
713
+ effect.element.show(); },
714
+ afterUpdateInternal: function(effect) {
715
+ effect.element.firstChild.setStyle({bottom:
716
+ (effect.dims[0] - effect.element.clientHeight) + 'px' });
717
+ },
718
+ afterFinishInternal: function(effect) {
719
+ effect.element.undoClipping();
720
+ // IE will crash if child is undoPositioned first
721
+ if(/MSIE/.test(navigator.userAgent)){
722
+ effect.element.undoPositioned();
723
+ effect.element.firstChild.undoPositioned();
724
+ }else{
725
+ effect.element.firstChild.undoPositioned();
726
+ effect.element.undoPositioned();
727
+ }
728
+ effect.element.firstChild.setStyle({bottom: oldInnerBottom}); }
729
+ }, arguments[1] || {})
730
+ );
731
+ }
732
+
733
+ Effect.SlideUp = function(element) {
734
+ element = $(element);
735
+ element.cleanWhitespace();
736
+ var oldInnerBottom = $(element.firstChild).getStyle('bottom');
737
+ return new Effect.Scale(element, 0,
738
+ Object.extend({ scaleContent: false,
739
+ scaleX: false,
740
+ scaleMode: 'box',
741
+ scaleFrom: 100,
742
+ restoreAfterFinish: true,
743
+ beforeStartInternal: function(effect) {
744
+ effect.element.makePositioned();
745
+ effect.element.firstChild.makePositioned();
746
+ if(window.opera) effect.element.setStyle({top: ''});
747
+ effect.element.makeClipping();
748
+ effect.element.show(); },
749
+ afterUpdateInternal: function(effect) {
750
+ effect.element.firstChild.setStyle({bottom:
751
+ (effect.dims[0] - effect.element.clientHeight) + 'px' }); },
752
+ afterFinishInternal: function(effect) {
753
+ effect.element.hide();
754
+ effect.element.undoClipping();
755
+ effect.element.firstChild.undoPositioned();
756
+ effect.element.undoPositioned();
757
+ effect.element.setStyle({bottom: oldInnerBottom}); }
758
+ }, arguments[1] || {})
759
+ );
760
+ }
761
+
762
+ // Bug in opera makes the TD containing this element expand for a instance after finish
763
+ Effect.Squish = function(element) {
764
+ return new Effect.Scale(element, window.opera ? 1 : 0,
765
+ { restoreAfterFinish: true,
766
+ beforeSetup: function(effect) {
767
+ effect.element.makeClipping(effect.element); },
768
+ afterFinishInternal: function(effect) {
769
+ effect.element.hide(effect.element);
770
+ effect.element.undoClipping(effect.element); }
771
+ });
772
+ }
773
+
774
+ Effect.Grow = function(element) {
775
+ element = $(element);
776
+ var options = Object.extend({
777
+ direction: 'center',
778
+ moveTransition: Effect.Transitions.sinoidal,
779
+ scaleTransition: Effect.Transitions.sinoidal,
780
+ opacityTransition: Effect.Transitions.full
781
+ }, arguments[1] || {});
782
+ var oldStyle = {
783
+ top: element.style.top,
784
+ left: element.style.left,
785
+ height: element.style.height,
786
+ width: element.style.width,
787
+ opacity: element.getInlineOpacity() };
788
+
789
+ var dims = element.getDimensions();
790
+ var initialMoveX, initialMoveY;
791
+ var moveX, moveY;
792
+
793
+ switch (options.direction) {
794
+ case 'top-left':
795
+ initialMoveX = initialMoveY = moveX = moveY = 0;
796
+ break;
797
+ case 'top-right':
798
+ initialMoveX = dims.width;
799
+ initialMoveY = moveY = 0;
800
+ moveX = -dims.width;
801
+ break;
802
+ case 'bottom-left':
803
+ initialMoveX = moveX = 0;
804
+ initialMoveY = dims.height;
805
+ moveY = -dims.height;
806
+ break;
807
+ case 'bottom-right':
808
+ initialMoveX = dims.width;
809
+ initialMoveY = dims.height;
810
+ moveX = -dims.width;
811
+ moveY = -dims.height;
812
+ break;
813
+ case 'center':
814
+ initialMoveX = dims.width / 2;
815
+ initialMoveY = dims.height / 2;
816
+ moveX = -dims.width / 2;
817
+ moveY = -dims.height / 2;
818
+ break;
819
+ }
820
+
821
+ return new Effect.Move(element, {
822
+ x: initialMoveX,
823
+ y: initialMoveY,
824
+ duration: 0.01,
825
+ beforeSetup: function(effect) {
826
+ effect.element.hide();
827
+ effect.element.makeClipping();
828
+ effect.element.makePositioned();
829
+ },
830
+ afterFinishInternal: function(effect) {
831
+ new Effect.Parallel(
832
+ [ new Effect.Opacity(effect.element, { sync: true, to: 1.0, from: 0.0, transition: options.opacityTransition }),
833
+ new Effect.Move(effect.element, { x: moveX, y: moveY, sync: true, transition: options.moveTransition }),
834
+ new Effect.Scale(effect.element, 100, {
835
+ scaleMode: { originalHeight: dims.height, originalWidth: dims.width },
836
+ sync: true, scaleFrom: window.opera ? 1 : 0, transition: options.scaleTransition, restoreAfterFinish: true})
837
+ ], Object.extend({
838
+ beforeSetup: function(effect) {
839
+ effect.effects[0].element.setStyle({height: '0px'});
840
+ effect.effects[0].element.show();
841
+ },
842
+ afterFinishInternal: function(effect) {
843
+ effect.effects[0].element.undoClipping();
844
+ effect.effects[0].element.undoPositioned();
845
+ effect.effects[0].element.setStyle(oldStyle);
846
+ }
847
+ }, options)
848
+ )
849
+ }
850
+ });
851
+ }
852
+
853
+ Effect.Shrink = function(element) {
854
+ element = $(element);
855
+ var options = Object.extend({
856
+ direction: 'center',
857
+ moveTransition: Effect.Transitions.sinoidal,
858
+ scaleTransition: Effect.Transitions.sinoidal,
859
+ opacityTransition: Effect.Transitions.none
860
+ }, arguments[1] || {});
861
+ var oldStyle = {
862
+ top: element.style.top,
863
+ left: element.style.left,
864
+ height: element.style.height,
865
+ width: element.style.width,
866
+ opacity: element.getInlineOpacity() };
867
+
868
+ var dims = element.getDimensions();
869
+ var moveX, moveY;
870
+
871
+ switch (options.direction) {
872
+ case 'top-left':
873
+ moveX = moveY = 0;
874
+ break;
875
+ case 'top-right':
876
+ moveX = dims.width;
877
+ moveY = 0;
878
+ break;
879
+ case 'bottom-left':
880
+ moveX = 0;
881
+ moveY = dims.height;
882
+ break;
883
+ case 'bottom-right':
884
+ moveX = dims.width;
885
+ moveY = dims.height;
886
+ break;
887
+ case 'center':
888
+ moveX = dims.width / 2;
889
+ moveY = dims.height / 2;
890
+ break;
891
+ }
892
+
893
+ return new Effect.Parallel(
894
+ [ new Effect.Opacity(element, { sync: true, to: 0.0, from: 1.0, transition: options.opacityTransition }),
895
+ new Effect.Scale(element, window.opera ? 1 : 0, { sync: true, transition: options.scaleTransition, restoreAfterFinish: true}),
896
+ new Effect.Move(element, { x: moveX, y: moveY, sync: true, transition: options.moveTransition })
897
+ ], Object.extend({
898
+ beforeStartInternal: function(effect) {
899
+ effect.effects[0].element.makePositioned();
900
+ effect.effects[0].element.makeClipping(); },
901
+ afterFinishInternal: function(effect) {
902
+ effect.effects[0].element.hide();
903
+ effect.effects[0].element.undoClipping();
904
+ effect.effects[0].element.undoPositioned();
905
+ effect.effects[0].element.setStyle(oldStyle); }
906
+ }, options)
907
+ );
908
+ }
909
+
910
+ Effect.Pulsate = function(element) {
911
+ element = $(element);
912
+ var options = arguments[1] || {};
913
+ var oldOpacity = element.getInlineOpacity();
914
+ var transition = options.transition || Effect.Transitions.sinoidal;
915
+ var reverser = function(pos){ return transition(1-Effect.Transitions.pulse(pos)) };
916
+ reverser.bind(transition);
917
+ return new Effect.Opacity(element,
918
+ Object.extend(Object.extend({ duration: 3.0, from: 0,
919
+ afterFinishInternal: function(effect) { effect.element.setStyle({opacity: oldOpacity}); }
920
+ }, options), {transition: reverser}));
921
+ }
922
+
923
+ Effect.Fold = function(element) {
924
+ element = $(element);
925
+ var oldStyle = {
926
+ top: element.style.top,
927
+ left: element.style.left,
928
+ width: element.style.width,
929
+ height: element.style.height };
930
+ Element.makeClipping(element);
931
+ return new Effect.Scale(element, 5, Object.extend({
932
+ scaleContent: false,
933
+ scaleX: false,
934
+ afterFinishInternal: function(effect) {
935
+ new Effect.Scale(element, 1, {
936
+ scaleContent: false,
937
+ scaleY: false,
938
+ afterFinishInternal: function(effect) {
939
+ effect.element.hide();
940
+ effect.element.undoClipping();
941
+ effect.element.setStyle(oldStyle);
942
+ } });
943
+ }}, arguments[1] || {}));
944
+ };
945
+
946
+ ['setOpacity','getOpacity','getInlineOpacity','forceRerendering','setContentZoom',
947
+ 'collectTextNodes','collectTextNodesIgnoreClass','childrenWithClassName'].each(
948
+ function(f) { Element.Methods[f] = Element[f]; }
949
+ );
950
+
951
+ Element.Methods.visualEffect = function(element, effect, options) {
952
+ s = effect.gsub(/_/, '-').camelize();
953
+ effect_class = s.charAt(0).toUpperCase() + s.substring(1);
954
+ new Effect[effect_class](element, options);
955
+ return $(element);
956
+ };
957
+
958
+ Element.addMethods();