disguise 2.0.0 → 3.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (228) hide show
  1. data/README.rdoc +26 -24
  2. data/Rakefile +1 -1
  3. data/VERSION +1 -1
  4. data/app/models/domain_theme.rb +1 -1
  5. data/app/models/theme.rb +4 -4
  6. data/app/views/admin/themes/_theme.html.erb +3 -3
  7. data/app/views/admin/themes/edit.html.erb +9 -2
  8. data/config/locales/ar.yml +20 -0
  9. data/config/locales/bg.yml +20 -0
  10. data/config/locales/ca.yml +20 -0
  11. data/config/locales/cs.yml +20 -0
  12. data/{locales → config/locales}/da.yml +8 -8
  13. data/config/locales/de.yml +20 -0
  14. data/config/locales/el.yml +20 -0
  15. data/{locales → config/locales}/en.yml +0 -0
  16. data/config/locales/es.yml +20 -0
  17. data/config/locales/et.yml +20 -0
  18. data/config/locales/fa.yml +20 -0
  19. data/config/locales/fi.yml +20 -0
  20. data/{locales → config/locales}/fr.yml +8 -8
  21. data/config/locales/gl.yml +20 -0
  22. data/config/locales/hi.yml +20 -0
  23. data/config/locales/hr.yml +20 -0
  24. data/config/locales/hu.yml +20 -0
  25. data/config/locales/id.yml +20 -0
  26. data/config/locales/it.yml +20 -0
  27. data/config/locales/iw.yml +20 -0
  28. data/config/locales/ja.yml +20 -0
  29. data/config/locales/ko.yml +20 -0
  30. data/config/locales/lt.yml +20 -0
  31. data/config/locales/lv.yml +20 -0
  32. data/config/locales/mt.yml +20 -0
  33. data/config/locales/nl.yml +20 -0
  34. data/config/locales/no.yml +21 -0
  35. data/config/locales/pl.yml +20 -0
  36. data/config/locales/pt-PT.yml +20 -0
  37. data/{locales → config/locales}/pt.yml +0 -0
  38. data/config/locales/ro.yml +20 -0
  39. data/config/locales/ru.yml +20 -0
  40. data/config/locales/sk.yml +20 -0
  41. data/config/locales/sl.yml +20 -0
  42. data/{locales → config/locales}/sq.yml +7 -7
  43. data/config/locales/sr.yml +20 -0
  44. data/config/locales/sv.yml +20 -0
  45. data/config/locales/th.yml +20 -0
  46. data/config/locales/tl.yml +20 -0
  47. data/config/locales/tr.yml +20 -0
  48. data/config/locales/uk.yml +20 -0
  49. data/config/locales/vi.yml +20 -0
  50. data/config/locales/zh-CN.yml +20 -0
  51. data/config/locales/zh-TW.yml +20 -0
  52. data/config/locales/zh.yml +20 -0
  53. data/config/routes.rb +6 -0
  54. data/disguise.gemspec +157 -181
  55. data/lib/disguise.rb +2 -10
  56. data/lib/disguise/config.rb +22 -9
  57. data/lib/disguise/controllers/disguise_application.rb +58 -0
  58. data/lib/disguise/engine.rb +14 -0
  59. data/lib/tasks/diguise.rake +9 -0
  60. data/test/{rails_root → rails_test}/.gitignore +0 -0
  61. data/test/{rails_root → rails_test}/.rake_tasks +0 -0
  62. data/test/rails_test/Gemfile +18 -0
  63. data/test/rails_test/Gemfile.lock +114 -0
  64. data/test/{rails_root → rails_test}/Rakefile +2 -4
  65. data/test/{rails_root → rails_test}/app/controllers/admin/domain_themes_controller.rb +0 -0
  66. data/test/{rails_root → rails_test}/app/controllers/admin/themes_controller.rb +0 -0
  67. data/test/{rails_root → rails_test}/app/controllers/application_controller.rb +0 -0
  68. data/test/{rails_root → rails_test}/app/controllers/default_controller.rb +0 -0
  69. data/test/{rails_root → rails_test}/app/models/.keep +0 -0
  70. data/test/rails_test/app/models/user.rb +3 -0
  71. data/test/{rails_root → rails_test}/app/views/default/index.html.erb +0 -0
  72. data/test/{rails_root → rails_test}/app/views/layouts/default.html.erb +0 -0
  73. data/test/rails_test/config.ru +4 -0
  74. data/test/rails_test/config/application.rb +42 -0
  75. data/test/rails_test/config/boot.rb +13 -0
  76. data/test/rails_test/config/database.yml +14 -0
  77. data/test/rails_test/config/environment.rb +5 -0
  78. data/test/rails_test/config/environments/development.rb +26 -0
  79. data/test/rails_test/config/environments/production.rb +49 -0
  80. data/test/rails_test/config/environments/test.rb +35 -0
  81. data/test/rails_test/config/initializers/backtrace_silencers.rb +7 -0
  82. data/test/rails_test/config/initializers/disguise.rb +5 -0
  83. data/test/{rails_root → rails_test}/config/initializers/inflections.rb +2 -2
  84. data/test/{rails_root → rails_test}/config/initializers/mime_types.rb +0 -0
  85. data/test/rails_test/config/initializers/secret_token.rb +7 -0
  86. data/test/rails_test/config/initializers/session_store.rb +8 -0
  87. data/test/rails_test/config/routes.rb +3 -0
  88. data/test/{rails_root → rails_test}/db/.keep +0 -0
  89. data/test/{rails_root → rails_test}/db/migrate/20090530170040_create_themes.rb +0 -0
  90. data/test/{rails_root → rails_test}/db/migrate/20090602041838_create_users.rb +0 -0
  91. data/test/{rails_root → rails_test}/db/migrate/20090606153236_create_domain_themes.rb +0 -0
  92. data/test/{rails_root → rails_test}/features/step_definitions/webrat_steps.rb +0 -0
  93. data/test/{rails_root → rails_test}/features/support/env.rb +0 -0
  94. data/test/{rails_root → rails_test}/public/.htaccess +0 -0
  95. data/test/rails_test/public/404.html +26 -0
  96. data/test/rails_test/public/422.html +26 -0
  97. data/test/rails_test/public/500.html +26 -0
  98. data/test/{rails_root → rails_test}/public/dispatch.rb +1 -1
  99. data/test/{rails_root → rails_test}/public/favicon.ico +0 -0
  100. data/test/{rails_root → rails_test}/public/images/blue/preview.gif +0 -0
  101. data/test/rails_test/public/images/rails.png +0 -0
  102. data/test/{rails_root → rails_test}/public/javascripts/application.js +0 -0
  103. data/test/{rails_root → rails_test}/public/javascripts/controls.js +75 -73
  104. data/test/{rails_root → rails_test}/public/javascripts/dragdrop.js +171 -169
  105. data/test/{rails_root → rails_test}/public/javascripts/effects.js +180 -177
  106. data/test/rails_test/public/javascripts/prototype.js +6001 -0
  107. data/test/rails_test/public/javascripts/rails.js +175 -0
  108. data/test/rails_test/public/robots.txt +5 -0
  109. data/test/{rails_root/public/stylesheets/.keep → rails_test/public/stylesheets/.gitkeep} +0 -0
  110. data/test/{rails_root/test/functional/.keep → rails_test/public/stylesheets/application.css} +0 -0
  111. data/test/rails_test/script/rails +6 -0
  112. data/test/{rails_root → rails_test}/test/factories.rb +0 -0
  113. data/test/{rails_root/test/integration → rails_test/test/functional}/.keep +0 -0
  114. data/test/{rails_root → rails_test}/test/functional/admin/domain_themes_controller_test.rb +6 -6
  115. data/test/{rails_root → rails_test}/test/functional/admin/themes_controller_test.rb +6 -6
  116. data/test/{rails_root → rails_test}/test/functional/default_controller_test.rb +2 -2
  117. data/test/{rails_root/test/mocks/development → rails_test/test/integration}/.keep +0 -0
  118. data/test/{rails_root → rails_test}/test/test_helper.rb +6 -9
  119. data/test/{rails_root/test/mocks/test → rails_test/test/unit}/.keep +0 -0
  120. data/test/{rails_root → rails_test}/test/unit/domain_theme_test.rb +2 -1
  121. data/test/{rails_root → rails_test}/test/unit/theme_test.rb +4 -2
  122. data/test/{rails_root → rails_test}/themes/blue/description.txt +0 -0
  123. data/test/{rails_root → rails_test}/themes/blue/locales/blue.yml +0 -0
  124. data/test/{rails_root → rails_test}/themes/blue/locales/en.yml +0 -0
  125. data/test/{rails_root → rails_test}/themes/blue/views/default/index.html.erb +0 -0
  126. data/test/{rails_root → rails_test}/themes/blue/views/layouts/default.html.erb +0 -0
  127. data/test/{rails_root → rails_test}/themes/blue/views/layouts/global/_footer.html.erb +0 -0
  128. data/test/{rails_root → rails_test}/themes/blue/views/layouts/global/_head.html.erb +0 -0
  129. data/test/{rails_root → rails_test}/themes/blue/views/layouts/global/_header.html.erb +0 -0
  130. data/test/{rails_root → rails_test}/themes/red/description.txt +0 -0
  131. data/test/{rails_root → rails_test}/themes/red/locales/en.yml +0 -0
  132. data/test/{rails_root → rails_test}/themes/red/views/layouts/default.html.erb +0 -0
  133. data/test/{rails_root → rails_test}/themes/red/views/layouts/global/_footer.html.erb +0 -0
  134. data/test/{rails_root → rails_test}/themes/red/views/layouts/global/_head.html.erb +0 -0
  135. data/test/{rails_root → rails_test}/themes/red/views/layouts/global/_header.html.erb +0 -0
  136. metadata +159 -183
  137. data/config/disguise_routes.rb +0 -7
  138. data/lib/action_controller/disguise_application.rb +0 -61
  139. data/lib/disguise/initialize_routes.rb +0 -8
  140. data/lib/disguise/tasks.rb +0 -34
  141. data/locales/ar.yml +0 -20
  142. data/locales/bg.yml +0 -20
  143. data/locales/ca.yml +0 -20
  144. data/locales/cs.yml +0 -20
  145. data/locales/de.yml +0 -20
  146. data/locales/el.yml +0 -20
  147. data/locales/es.yml +0 -20
  148. data/locales/et.yml +0 -20
  149. data/locales/fa.yml +0 -20
  150. data/locales/fi.yml +0 -20
  151. data/locales/gl.yml +0 -20
  152. data/locales/hi.yml +0 -20
  153. data/locales/hr.yml +0 -20
  154. data/locales/hu.yml +0 -20
  155. data/locales/id.yml +0 -20
  156. data/locales/it.yml +0 -20
  157. data/locales/iw.yml +0 -20
  158. data/locales/ja.yml +0 -20
  159. data/locales/ko.yml +0 -20
  160. data/locales/lt.yml +0 -20
  161. data/locales/lv.yml +0 -20
  162. data/locales/mt.yml +0 -20
  163. data/locales/nl.yml +0 -20
  164. data/locales/no.yml +0 -21
  165. data/locales/pl.yml +0 -20
  166. data/locales/pt-PT.yml +0 -20
  167. data/locales/ro.yml +0 -20
  168. data/locales/ru.yml +0 -20
  169. data/locales/sk.yml +0 -20
  170. data/locales/sl.yml +0 -20
  171. data/locales/sr.yml +0 -20
  172. data/locales/sv.yml +0 -20
  173. data/locales/th.yml +0 -20
  174. data/locales/tl.yml +0 -20
  175. data/locales/tr.yml +0 -20
  176. data/locales/uk.yml +0 -20
  177. data/locales/vi.yml +0 -20
  178. data/locales/zh-CN.yml +0 -20
  179. data/locales/zh-TW.yml +0 -20
  180. data/locales/zh.yml +0 -20
  181. data/rails/init.rb +0 -2
  182. data/tasks/rails.rake +0 -2
  183. data/test/rails_root/Capfile +0 -3
  184. data/test/rails_root/app/models/user.rb +0 -9
  185. data/test/rails_root/config/amazon_s3.yml +0 -14
  186. data/test/rails_root/config/boot.rb +0 -109
  187. data/test/rails_root/config/database.yml +0 -14
  188. data/test/rails_root/config/environment.rb +0 -21
  189. data/test/rails_root/config/environments/development.rb +0 -19
  190. data/test/rails_root/config/environments/production.rb +0 -1
  191. data/test/rails_root/config/environments/test.rb +0 -33
  192. data/test/rails_root/config/global_config.yml +0 -18
  193. data/test/rails_root/config/initializers/disguise.rb +0 -2
  194. data/test/rails_root/config/initializers/requires.rb +0 -13
  195. data/test/rails_root/config/initializers/s3_credentials.rb +0 -9
  196. data/test/rails_root/config/initializers/session_store.rb +0 -8
  197. data/test/rails_root/config/routes.rb +0 -7
  198. data/test/rails_root/public/404.html +0 -30
  199. data/test/rails_root/public/422.html +0 -30
  200. data/test/rails_root/public/500.html +0 -30
  201. data/test/rails_root/public/images/rails.png +0 -0
  202. data/test/rails_root/public/images/red/preview.gif +0 -0
  203. data/test/rails_root/public/javascripts/builder.js +0 -136
  204. data/test/rails_root/public/javascripts/prototype.js +0 -4225
  205. data/test/rails_root/public/javascripts/scriptaculous.js +0 -58
  206. data/test/rails_root/public/javascripts/slider.js +0 -277
  207. data/test/rails_root/public/javascripts/sound.js +0 -60
  208. data/test/rails_root/public/robots.txt +0 -1
  209. data/test/rails_root/public/stylesheets/themes/blue/styles.css +0 -1
  210. data/test/rails_root/public/stylesheets/themes/red/styles.css +0 -1
  211. data/test/rails_root/script/about +0 -3
  212. data/test/rails_root/script/breakpointer +0 -3
  213. data/test/rails_root/script/console +0 -3
  214. data/test/rails_root/script/create_project.rb +0 -52
  215. data/test/rails_root/script/cucumber +0 -7
  216. data/test/rails_root/script/dbconsole +0 -3
  217. data/test/rails_root/script/destroy +0 -3
  218. data/test/rails_root/script/generate +0 -3
  219. data/test/rails_root/script/performance/benchmarker +0 -3
  220. data/test/rails_root/script/performance/profiler +0 -3
  221. data/test/rails_root/script/performance/request +0 -3
  222. data/test/rails_root/script/plugin +0 -3
  223. data/test/rails_root/script/process/inspector +0 -3
  224. data/test/rails_root/script/process/reaper +0 -3
  225. data/test/rails_root/script/process/spawner +0 -3
  226. data/test/rails_root/script/runner +0 -3
  227. data/test/rails_root/script/server +0 -3
  228. data/test/rails_root/test/unit/.keep +0 -0
@@ -1,58 +0,0 @@
1
- // script.aculo.us scriptaculous.js v1.7.1_beta3, Fri May 25 17:19:41 +0200 2007
2
-
3
- // Copyright (c) 2005-2007 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
4
- //
5
- // Permission is hereby granted, free of charge, to any person obtaining
6
- // a copy of this software and associated documentation files (the
7
- // "Software"), to deal in the Software without restriction, including
8
- // without limitation the rights to use, copy, modify, merge, publish,
9
- // distribute, sublicense, and/or sell copies of the Software, and to
10
- // permit persons to whom the Software is furnished to do so, subject to
11
- // the following conditions:
12
- //
13
- // The above copyright notice and this permission notice shall be
14
- // included in all copies or substantial portions of the Software.
15
- //
16
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
- // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
- // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
- // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
- // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
- // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
- // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23
- //
24
- // For details, see the script.aculo.us web site: http://script.aculo.us/
25
-
26
- var Scriptaculous = {
27
- Version: '1.7.1_beta3',
28
- require: function(libraryName) {
29
- // inserting via DOM fails in Safari 2.0, so brute force approach
30
- document.write('<script type="text/javascript" src="'+libraryName+'"></script>');
31
- },
32
- REQUIRED_PROTOTYPE: '1.5.1',
33
- load: function() {
34
- function convertVersionString(versionString){
35
- var r = versionString.split('.');
36
- return parseInt(r[0])*100000 + parseInt(r[1])*1000 + parseInt(r[2]);
37
- }
38
-
39
- if((typeof Prototype=='undefined') ||
40
- (typeof Element == 'undefined') ||
41
- (typeof Element.Methods=='undefined') ||
42
- (convertVersionString(Prototype.Version) <
43
- convertVersionString(Scriptaculous.REQUIRED_PROTOTYPE)))
44
- throw("script.aculo.us requires the Prototype JavaScript framework >= " +
45
- Scriptaculous.REQUIRED_PROTOTYPE);
46
-
47
- $A(document.getElementsByTagName("script")).findAll( function(s) {
48
- return (s.src && s.src.match(/scriptaculous\.js(\?.*)?$/))
49
- }).each( function(s) {
50
- var path = s.src.replace(/scriptaculous\.js(\?.*)?$/,'');
51
- var includes = s.src.match(/\?.*load=([a-z,]*)/);
52
- (includes ? includes[1] : 'builder,effects,dragdrop,controls,slider,sound').split(',').each(
53
- function(include) { Scriptaculous.require(path+include+'.js') });
54
- });
55
- }
56
- }
57
-
58
- Scriptaculous.load();
@@ -1,277 +0,0 @@
1
- // script.aculo.us slider.js v1.7.1_beta3, Fri May 25 17:19:41 +0200 2007
2
-
3
- // Copyright (c) 2005-2007 Marty Haught, Thomas Fuchs
4
- //
5
- // script.aculo.us is freely distributable under the terms of an MIT-style license.
6
- // For details, see the script.aculo.us web site: http://script.aculo.us/
7
-
8
- if(!Control) var Control = {};
9
- Control.Slider = Class.create();
10
-
11
- // options:
12
- // axis: 'vertical', or 'horizontal' (default)
13
- //
14
- // callbacks:
15
- // onChange(value)
16
- // onSlide(value)
17
- Control.Slider.prototype = {
18
- initialize: function(handle, track, options) {
19
- var slider = this;
20
-
21
- if(handle instanceof Array) {
22
- this.handles = handle.collect( function(e) { return $(e) });
23
- } else {
24
- this.handles = [$(handle)];
25
- }
26
-
27
- this.track = $(track);
28
- this.options = options || {};
29
-
30
- this.axis = this.options.axis || 'horizontal';
31
- this.increment = this.options.increment || 1;
32
- this.step = parseInt(this.options.step || '1');
33
- this.range = this.options.range || $R(0,1);
34
-
35
- this.value = 0; // assure backwards compat
36
- this.values = this.handles.map( function() { return 0 });
37
- this.spans = this.options.spans ? this.options.spans.map(function(s){ return $(s) }) : false;
38
- this.options.startSpan = $(this.options.startSpan || null);
39
- this.options.endSpan = $(this.options.endSpan || null);
40
-
41
- this.restricted = this.options.restricted || false;
42
-
43
- this.maximum = this.options.maximum || this.range.end;
44
- this.minimum = this.options.minimum || this.range.start;
45
-
46
- // Will be used to align the handle onto the track, if necessary
47
- this.alignX = parseInt(this.options.alignX || '0');
48
- this.alignY = parseInt(this.options.alignY || '0');
49
-
50
- this.trackLength = this.maximumOffset() - this.minimumOffset();
51
-
52
- this.handleLength = this.isVertical() ?
53
- (this.handles[0].offsetHeight != 0 ?
54
- this.handles[0].offsetHeight : this.handles[0].style.height.replace(/px$/,"")) :
55
- (this.handles[0].offsetWidth != 0 ? this.handles[0].offsetWidth :
56
- this.handles[0].style.width.replace(/px$/,""));
57
-
58
- this.active = false;
59
- this.dragging = false;
60
- this.disabled = false;
61
-
62
- if(this.options.disabled) this.setDisabled();
63
-
64
- // Allowed values array
65
- this.allowedValues = this.options.values ? this.options.values.sortBy(Prototype.K) : false;
66
- if(this.allowedValues) {
67
- this.minimum = this.allowedValues.min();
68
- this.maximum = this.allowedValues.max();
69
- }
70
-
71
- this.eventMouseDown = this.startDrag.bindAsEventListener(this);
72
- this.eventMouseUp = this.endDrag.bindAsEventListener(this);
73
- this.eventMouseMove = this.update.bindAsEventListener(this);
74
-
75
- // Initialize handles in reverse (make sure first handle is active)
76
- this.handles.each( function(h,i) {
77
- i = slider.handles.length-1-i;
78
- slider.setValue(parseFloat(
79
- (slider.options.sliderValue instanceof Array ?
80
- slider.options.sliderValue[i] : slider.options.sliderValue) ||
81
- slider.range.start), i);
82
- Element.makePositioned(h); // fix IE
83
- Event.observe(h, "mousedown", slider.eventMouseDown);
84
- });
85
-
86
- Event.observe(this.track, "mousedown", this.eventMouseDown);
87
- Event.observe(document, "mouseup", this.eventMouseUp);
88
- Event.observe(document, "mousemove", this.eventMouseMove);
89
-
90
- this.initialized = true;
91
- },
92
- dispose: function() {
93
- var slider = this;
94
- Event.stopObserving(this.track, "mousedown", this.eventMouseDown);
95
- Event.stopObserving(document, "mouseup", this.eventMouseUp);
96
- Event.stopObserving(document, "mousemove", this.eventMouseMove);
97
- this.handles.each( function(h) {
98
- Event.stopObserving(h, "mousedown", slider.eventMouseDown);
99
- });
100
- },
101
- setDisabled: function(){
102
- this.disabled = true;
103
- },
104
- setEnabled: function(){
105
- this.disabled = false;
106
- },
107
- getNearestValue: function(value){
108
- if(this.allowedValues){
109
- if(value >= this.allowedValues.max()) return(this.allowedValues.max());
110
- if(value <= this.allowedValues.min()) return(this.allowedValues.min());
111
-
112
- var offset = Math.abs(this.allowedValues[0] - value);
113
- var newValue = this.allowedValues[0];
114
- this.allowedValues.each( function(v) {
115
- var currentOffset = Math.abs(v - value);
116
- if(currentOffset <= offset){
117
- newValue = v;
118
- offset = currentOffset;
119
- }
120
- });
121
- return newValue;
122
- }
123
- if(value > this.range.end) return this.range.end;
124
- if(value < this.range.start) return this.range.start;
125
- return value;
126
- },
127
- setValue: function(sliderValue, handleIdx){
128
- if(!this.active) {
129
- this.activeHandleIdx = handleIdx || 0;
130
- this.activeHandle = this.handles[this.activeHandleIdx];
131
- this.updateStyles();
132
- }
133
- handleIdx = handleIdx || this.activeHandleIdx || 0;
134
- if(this.initialized && this.restricted) {
135
- if((handleIdx>0) && (sliderValue<this.values[handleIdx-1]))
136
- sliderValue = this.values[handleIdx-1];
137
- if((handleIdx < (this.handles.length-1)) && (sliderValue>this.values[handleIdx+1]))
138
- sliderValue = this.values[handleIdx+1];
139
- }
140
- sliderValue = this.getNearestValue(sliderValue);
141
- this.values[handleIdx] = sliderValue;
142
- this.value = this.values[0]; // assure backwards compat
143
-
144
- this.handles[handleIdx].style[this.isVertical() ? 'top' : 'left'] =
145
- this.translateToPx(sliderValue);
146
-
147
- this.drawSpans();
148
- if(!this.dragging || !this.event) this.updateFinished();
149
- },
150
- setValueBy: function(delta, handleIdx) {
151
- this.setValue(this.values[handleIdx || this.activeHandleIdx || 0] + delta,
152
- handleIdx || this.activeHandleIdx || 0);
153
- },
154
- translateToPx: function(value) {
155
- return Math.round(
156
- ((this.trackLength-this.handleLength)/(this.range.end-this.range.start)) *
157
- (value - this.range.start)) + "px";
158
- },
159
- translateToValue: function(offset) {
160
- return ((offset/(this.trackLength-this.handleLength) *
161
- (this.range.end-this.range.start)) + this.range.start);
162
- },
163
- getRange: function(range) {
164
- var v = this.values.sortBy(Prototype.K);
165
- range = range || 0;
166
- return $R(v[range],v[range+1]);
167
- },
168
- minimumOffset: function(){
169
- return(this.isVertical() ? this.alignY : this.alignX);
170
- },
171
- maximumOffset: function(){
172
- return(this.isVertical() ?
173
- (this.track.offsetHeight != 0 ? this.track.offsetHeight :
174
- this.track.style.height.replace(/px$/,"")) - this.alignY :
175
- (this.track.offsetWidth != 0 ? this.track.offsetWidth :
176
- this.track.style.width.replace(/px$/,"")) - this.alignY);
177
- },
178
- isVertical: function(){
179
- return (this.axis == 'vertical');
180
- },
181
- drawSpans: function() {
182
- var slider = this;
183
- if(this.spans)
184
- $R(0, this.spans.length-1).each(function(r) { slider.setSpan(slider.spans[r], slider.getRange(r)) });
185
- if(this.options.startSpan)
186
- this.setSpan(this.options.startSpan,
187
- $R(0, this.values.length>1 ? this.getRange(0).min() : this.value ));
188
- if(this.options.endSpan)
189
- this.setSpan(this.options.endSpan,
190
- $R(this.values.length>1 ? this.getRange(this.spans.length-1).max() : this.value, this.maximum));
191
- },
192
- setSpan: function(span, range) {
193
- if(this.isVertical()) {
194
- span.style.top = this.translateToPx(range.start);
195
- span.style.height = this.translateToPx(range.end - range.start + this.range.start);
196
- } else {
197
- span.style.left = this.translateToPx(range.start);
198
- span.style.width = this.translateToPx(range.end - range.start + this.range.start);
199
- }
200
- },
201
- updateStyles: function() {
202
- this.handles.each( function(h){ Element.removeClassName(h, 'selected') });
203
- Element.addClassName(this.activeHandle, 'selected');
204
- },
205
- startDrag: function(event) {
206
- if(Event.isLeftClick(event)) {
207
- if(!this.disabled){
208
- this.active = true;
209
-
210
- var handle = Event.element(event);
211
- var pointer = [Event.pointerX(event), Event.pointerY(event)];
212
- var track = handle;
213
- if(track==this.track) {
214
- var offsets = Position.cumulativeOffset(this.track);
215
- this.event = event;
216
- this.setValue(this.translateToValue(
217
- (this.isVertical() ? pointer[1]-offsets[1] : pointer[0]-offsets[0])-(this.handleLength/2)
218
- ));
219
- var offsets = Position.cumulativeOffset(this.activeHandle);
220
- this.offsetX = (pointer[0] - offsets[0]);
221
- this.offsetY = (pointer[1] - offsets[1]);
222
- } else {
223
- // find the handle (prevents issues with Safari)
224
- while((this.handles.indexOf(handle) == -1) && handle.parentNode)
225
- handle = handle.parentNode;
226
-
227
- if(this.handles.indexOf(handle)!=-1) {
228
- this.activeHandle = handle;
229
- this.activeHandleIdx = this.handles.indexOf(this.activeHandle);
230
- this.updateStyles();
231
-
232
- var offsets = Position.cumulativeOffset(this.activeHandle);
233
- this.offsetX = (pointer[0] - offsets[0]);
234
- this.offsetY = (pointer[1] - offsets[1]);
235
- }
236
- }
237
- }
238
- Event.stop(event);
239
- }
240
- },
241
- update: function(event) {
242
- if(this.active) {
243
- if(!this.dragging) this.dragging = true;
244
- this.draw(event);
245
- if(Prototype.Browser.WebKit) window.scrollBy(0,0);
246
- Event.stop(event);
247
- }
248
- },
249
- draw: function(event) {
250
- var pointer = [Event.pointerX(event), Event.pointerY(event)];
251
- var offsets = Position.cumulativeOffset(this.track);
252
- pointer[0] -= this.offsetX + offsets[0];
253
- pointer[1] -= this.offsetY + offsets[1];
254
- this.event = event;
255
- this.setValue(this.translateToValue( this.isVertical() ? pointer[1] : pointer[0] ));
256
- if(this.initialized && this.options.onSlide)
257
- this.options.onSlide(this.values.length>1 ? this.values : this.value, this);
258
- },
259
- endDrag: function(event) {
260
- if(this.active && this.dragging) {
261
- this.finishDrag(event, true);
262
- Event.stop(event);
263
- }
264
- this.active = false;
265
- this.dragging = false;
266
- },
267
- finishDrag: function(event, success) {
268
- this.active = false;
269
- this.dragging = false;
270
- this.updateFinished();
271
- },
272
- updateFinished: function() {
273
- if(this.initialized && this.options.onChange)
274
- this.options.onChange(this.values.length>1 ? this.values : this.value, this);
275
- this.event = null;
276
- }
277
- }
@@ -1,60 +0,0 @@
1
- // script.aculo.us sound.js v1.7.1_beta3, Fri May 25 17:19:41 +0200 2007
2
-
3
- // Copyright (c) 2005-2007 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
4
- //
5
- // Based on code created by Jules Gravinese (http://www.webveteran.com/)
6
- //
7
- // script.aculo.us is freely distributable under the terms of an MIT-style license.
8
- // For details, see the script.aculo.us web site: http://script.aculo.us/
9
-
10
- Sound = {
11
- tracks: {},
12
- _enabled: true,
13
- template:
14
- new Template('<embed style="height:0" id="sound_#{track}_#{id}" src="#{url}" loop="false" autostart="true" hidden="true"/>'),
15
- enable: function(){
16
- Sound._enabled = true;
17
- },
18
- disable: function(){
19
- Sound._enabled = false;
20
- },
21
- play: function(url){
22
- if(!Sound._enabled) return;
23
- var options = Object.extend({
24
- track: 'global', url: url, replace: false
25
- }, arguments[1] || {});
26
-
27
- if(options.replace && this.tracks[options.track]) {
28
- $R(0, this.tracks[options.track].id).each(function(id){
29
- var sound = $('sound_'+options.track+'_'+id);
30
- sound.Stop && sound.Stop();
31
- sound.remove();
32
- })
33
- this.tracks[options.track] = null;
34
- }
35
-
36
- if(!this.tracks[options.track])
37
- this.tracks[options.track] = { id: 0 }
38
- else
39
- this.tracks[options.track].id++;
40
-
41
- options.id = this.tracks[options.track].id;
42
- if (Prototype.Browser.IE) {
43
- var sound = document.createElement('bgsound');
44
- sound.setAttribute('id','sound_'+options.track+'_'+options.id);
45
- sound.setAttribute('src',options.url);
46
- sound.setAttribute('loop','1');
47
- sound.setAttribute('autostart','true');
48
- $$('body')[0].appendChild(sound);
49
- }
50
- else
51
- new Insertion.Bottom($$('body')[0], Sound.template.evaluate(options));
52
- }
53
- };
54
-
55
- if(Prototype.Browser.Gecko && navigator.userAgent.indexOf("Win") > 0){
56
- if(navigator.plugins && $A(navigator.plugins).detect(function(p){ return p.name.indexOf('QuickTime') != -1 }))
57
- Sound.template = new Template('<object id="sound_#{track}_#{id}" width="0" height="0" type="audio/mpeg" data="#{url}"/>')
58
- else
59
- Sound.play = function(){}
60
- }
@@ -1 +0,0 @@
1
- # See http://www.robotstxt.org/wc/norobots.html for documentation on how to use the robots.txt file
@@ -1 +0,0 @@
1
- /*Add styles specific to your theme here*/
@@ -1 +0,0 @@
1
- /*Add styles specific to your theme here*/
@@ -1,3 +0,0 @@
1
- #!/usr/bin/env ruby
2
- require File.dirname(__FILE__) + '/../config/boot'
3
- require 'commands/about'
@@ -1,3 +0,0 @@
1
- #!/usr/bin/env ruby
2
- require File.dirname(__FILE__) + '/../config/boot'
3
- require 'commands/breakpointer'
@@ -1,3 +0,0 @@
1
- #!/usr/bin/env ruby
2
- require File.dirname(__FILE__) + '/../config/boot'
3
- require 'commands/console'
@@ -1,52 +0,0 @@
1
- #!/usr/bin/env ruby
2
- require 'rubygems'
3
- require 'activesupport'
4
- require 'pathname'
5
-
6
- project_name = ARGV[0]
7
- fail("Usage: #{File.basename(__FILE__)} new_project_name") unless project_name
8
- fail("Project name must only contain [a-z0-9_]") unless project_name =~ /^[a-z0-9_]+$/
9
-
10
- base_directory = Pathname.new(File.join(File.dirname(__FILE__), '..', '..')).realpath
11
- project_directory = base_directory + project_name
12
- fail("Project directory (#{project_directory}) already exists") if project_directory.exist?
13
-
14
- template_url = "git@github.com:thoughtbot/rails-template.git"
15
- changeme = "CHANGEME"
16
-
17
- def run(cmd)
18
- puts "Running '#{cmd}'"
19
- out = `#{cmd}`
20
- if $? != 0
21
- fail "Command #{cmd} failed: #$?\n#{out}"
22
- end
23
- out
24
- end
25
-
26
- def search_and_replace(file, search, replace)
27
- if File.file?(file)
28
- contents = File.read(file)
29
- if contents[search]
30
- puts "Replacing #{search} with #{replace} in #{file}"
31
- contents.gsub!(search, replace)
32
- File.open(file, "w") { |f| f << contents }
33
- end
34
- end
35
- end
36
-
37
- run("mkdir #{project_directory}")
38
- Dir.chdir(project_directory) or fail("Couldn't change to #{project_directory}")
39
- run("git init")
40
- run("git remote add template #{template_url}")
41
- run("git pull template master")
42
-
43
- Dir.glob("#{project_directory}/**/*").each do |file|
44
- search_and_replace(file, changeme, project_name)
45
- end
46
-
47
- run("git commit -a -m 'Initial commit'")
48
-
49
- puts
50
- puts "Now login to github and add a new project named '#{project_name.humanize.titleize}'"
51
-
52
-