motiro 0.6.3
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE +280 -0
- data/README +28 -0
- data/README.en +175 -0
- data/README.pt-br +175 -0
- data/Rakefile +10 -0
- data/app/controllers/account_controller.rb +62 -0
- data/app/controllers/application.rb +72 -0
- data/app/controllers/edition_controller.rb +13 -0
- data/app/controllers/javascript_controller.rb +21 -0
- data/app/controllers/report_controller.rb +79 -0
- data/app/controllers/root_controller.rb +7 -0
- data/app/controllers/wiki_controller.rb +102 -0
- data/app/core/cache_reporter.rb +53 -0
- data/app/core/cache_reporter_fetcher.rb +33 -0
- data/app/core/chief_editor.rb +69 -0
- data/app/core/reporter.rb +105 -0
- data/app/core/reporter_driver.rb +36 -0
- data/app/core/reporter_fetcher.rb +39 -0
- data/app/core/settings.rb +43 -0
- data/app/core/version.rb +1 -0
- data/app/core/wiki_page_not_found.rb +33 -0
- data/app/core/wiki_reporter.rb +83 -0
- data/app/helpers/account_helper.rb +2 -0
- data/app/helpers/application_helper.rb +68 -0
- data/app/helpers/default_page_provider.rb +28 -0
- data/app/helpers/report_helper.rb +2 -0
- data/app/helpers/root_helper.rb +2 -0
- data/app/helpers/wiki_helper.rb +3 -0
- data/app/models/change.rb +96 -0
- data/app/models/diff_table_builder.rb +285 -0
- data/app/models/event.rb +18 -0
- data/app/models/headline.rb +109 -0
- data/app/models/page.rb +114 -0
- data/app/models/page_sweeper.rb +26 -0
- data/app/models/user.rb +85 -0
- data/app/ports/chdir_runner.rb +36 -0
- data/app/ports/reporter_loader.rb +9 -0
- data/app/ports/runner.rb +64 -0
- data/app/reporters/darcs_connection.rb +54 -0
- data/app/reporters/darcs_reporter.rb +104 -0
- data/app/reporters/darcs_settings.rb +9 -0
- data/app/reporters/darcs_temp_repo.rb +40 -0
- data/app/reporters/events_reporter.rb +28 -0
- data/app/reporters/features_reporter.rb +24 -0
- data/app/reporters/subversion_reporter.rb +203 -0
- data/app/reporters/svn_connection.rb +62 -0
- data/app/reporters/svn_settings.rb +40 -0
- data/app/views/account/_authorization.rhtml +54 -0
- data/app/views/account/_availability.rhtml +5 -0
- data/app/views/account/availability.rhtml +1 -0
- data/app/views/account/login.rhtml +22 -0
- data/app/views/account/logout.rhtml +10 -0
- data/app/views/javascript/motiro.rjs +132 -0
- data/app/views/javascript/niftycube.rjs +300 -0
- data/app/views/layouts/_bottom.rhtml +5 -0
- data/app/views/layouts/_header.rhtml +7 -0
- data/app/views/layouts/_top.rhtml +25 -0
- data/app/views/layouts/application.rhtml +3 -0
- data/app/views/layouts/scaffold.rhtml +13 -0
- data/app/views/layouts/wiki_edit.rhtml +26 -0
- data/app/views/report/list.rhtml +32 -0
- data/app/views/report/older.rhtml +26 -0
- data/app/views/report/rss.rxml +29 -0
- data/app/views/report/show.rhtml +20 -0
- data/app/views/root/index.rhtml +33 -0
- data/app/views/wiki/_editbar.rhtml +26 -0
- data/app/views/wiki/_properties_edit.rhtml +5 -0
- data/app/views/wiki/_properties_show.rhtml +5 -0
- data/app/views/wiki/edit.rhtml +56 -0
- data/app/views/wiki/properties_edit.rhtml +1 -0
- data/app/views/wiki/show.rhtml +9 -0
- data/bin/motiro +44 -0
- data/config/boot.rb +19 -0
- data/config/database.yml +14 -0
- data/config/environment.rb +64 -0
- data/config/environments/development.rb +20 -0
- data/config/environments/production.rb +19 -0
- data/config/environments/test.rb +19 -0
- data/config/motiro.yml +43 -0
- data/config/routes.rb +79 -0
- data/db/migrate/005_globalize_migration.rb +11363 -0
- data/db/migrate/006_remove_headline_title.rb +14 -0
- data/db/migrate/007_stretch_rid.rb +11 -0
- data/db/migrate/008_add_page_editors.rb +12 -0
- data/db/migrate/009_add_page_original_author.rb +12 -0
- data/db/migrate/010_remove_empty_string_defaults_from_pages.rb +17 -0
- data/db/migrate/011_add_title_and_kind_to_pages.rb +13 -0
- data/db/migrate/012_page_modification_info.rb +13 -0
- data/db/migrate/013_nullify_initial_page_attributes.rb +21 -0
- data/db/migrate/014_events_are_wiki_pages.rb +13 -0
- data/db/migrate/015_migrate_previous_event_data.rb +23 -0
- data/db/migrate/1_initial_structure.rb +36 -0
- data/db/migrate/2_add_authentication.rb +12 -0
- data/db/migrate/3_drop_articles.rb +26 -0
- data/db/migrate/4_add_page_editing.rb +14 -0
- data/db/motirodb.sqlite.initial +0 -0
- data/db/schema_version +1 -0
- data/db/translation/pt-BR.rb +76 -0
- data/doc/README_FOR_APP +2 -0
- data/installer/rails_installer_defaults.yml +5 -0
- data/lib/import_translations.rb +154 -0
- data/lib/login_system.rb +89 -0
- data/lib/relative_time.rb +48 -0
- data/lib/string_extensions.rb +10 -0
- data/lib/stub_hash.rb +22 -0
- data/lib/tasks/packaging.rake +93 -0
- data/lib/tasks/testing.rake +32 -0
- data/lib/tick_daemon.rb +41 -0
- data/lib/translator.rb +67 -0
- data/lib/wiki_renderer.rb +42 -0
- data/lib/wiki_url_generator.rb +29 -0
- data/log/.keepdir +0 -0
- data/public/404.html +8 -0
- data/public/500.html +8 -0
- data/public/dispatch.cgi +10 -0
- data/public/dispatch.fcgi +24 -0
- data/public/dispatch.rb +10 -0
- data/public/favicon.ico +0 -0
- data/public/images/calendar.png +0 -0
- data/public/images/rss.png +0 -0
- data/public/javascripts/controls.js +750 -0
- data/public/javascripts/dragdrop.js +584 -0
- data/public/javascripts/effects.js +854 -0
- data/public/javascripts/prototype.js +1785 -0
- data/public/robots.txt +1 -0
- data/public/stylesheets/motiro.css +269 -0
- data/public/stylesheets/niftyCorners.css +35 -0
- data/public/stylesheets/scaffold.css +74 -0
- data/script/about +3 -0
- data/script/breakpointer +3 -0
- data/script/console +3 -0
- data/script/destroy +3 -0
- data/script/generate +3 -0
- data/script/performance/benchmarker +3 -0
- data/script/performance/profiler +3 -0
- data/script/plugin +3 -0
- data/script/process/reaper +3 -0
- data/script/process/spawner +3 -0
- data/script/process/spinner +3 -0
- data/script/runner +3 -0
- data/script/server +3 -0
- data/script/ticker +29 -0
- data/test/acceptance/account_test.rb +186 -0
- data/test/acceptance/darcs_test.rb +62 -0
- data/test/acceptance/events_test.rb +47 -0
- data/test/acceptance/main_page_test.rb +92 -0
- data/test/acceptance/subversion_test.rb +319 -0
- data/test/acceptance/ts_all_suites.rb +27 -0
- data/test/acceptance/wiki_test.rb +202 -0
- data/test/contract/darcs_test.rb +51 -0
- data/test/contract/remote_darcs_test.rb +61 -0
- data/test/contract/svn_test.rb +53 -0
- data/test/fixtures/changes.yml +25 -0
- data/test/fixtures/headlines.yml +45 -0
- data/test/fixtures/pages.yml +98 -0
- data/test/fixtures/users.yml +31 -0
- data/test/functional/account_controller_test.rb +96 -0
- data/test/functional/report_controller_test.rb +113 -0
- data/test/functional/report_features_test.rb +38 -0
- data/test/functional/report_subversion_test.rb +79 -0
- data/test/functional/root_controller_test.rb +127 -0
- data/test/functional/wiki_controller_test.rb +280 -0
- data/test/lib/acceptance_test_case.rb +43 -0
- data/test/lib/configuration.rb +53 -0
- data/test/lib/darcs_excerpts.rb +181 -0
- data/test/lib/darcs_repo.rb +77 -0
- data/test/lib/live_mode_test.rb +51 -0
- data/test/lib/local_svn.rb +157 -0
- data/test/lib/netutils.rb +42 -0
- data/test/lib/platform_thread.rb +62 -0
- data/test/lib/repoutils.rb +23 -0
- data/test/lib/selenium_extensions.rb +32 -0
- data/test/lib/stubio.rb +37 -0
- data/test/lib/svn_excerpts.rb +288 -0
- data/test/lib/test_configuration.rb +14 -0
- data/test/lib/webserver.rb +71 -0
- data/test/meta/configuration_test.rb +72 -0
- data/test/meta/darcs_repo_test.rb +118 -0
- data/test/meta/local_svn_test.rb +125 -0
- data/test/meta/platform_thread_test.rb +46 -0
- data/test/meta/stubio_test.rb +44 -0
- data/test/mocks/headline.rb +34 -0
- data/test/mocks/svn_reporter.rb +29 -0
- data/test/stubs/svn_settings.rb +19 -0
- data/test/stubs/url_generator.rb +24 -0
- data/test/test_helper.rb +36 -0
- data/test/unit/cache_reporter_fetcher_test.rb +46 -0
- data/test/unit/cache_reporter_test.rb +97 -0
- data/test/unit/caching_test.rb +78 -0
- data/test/unit/change_test.rb +152 -0
- data/test/unit/chdir_runner_test.rb +77 -0
- data/test/unit/chief_editor_test.rb +234 -0
- data/test/unit/darcs_connection_test.rb +109 -0
- data/test/unit/darcs_reporter_test.rb +146 -0
- data/test/unit/darcs_settings_test.rb +37 -0
- data/test/unit/darcs_temp_repo_test.rb +51 -0
- data/test/unit/default_page_provider_test.rb +46 -0
- data/test/unit/diff_table_builder_test.rb +602 -0
- data/test/unit/headline_test.rb +259 -0
- data/test/unit/page_test.rb +145 -0
- data/test/unit/relative_time_test.rb +56 -0
- data/test/unit/reporter_driver_test.rb +85 -0
- data/test/unit/reporter_fetcher_test.rb +31 -0
- data/test/unit/reporter_test.rb +81 -0
- data/test/unit/runner_test.rb +93 -0
- data/test/unit/settings_test.rb +55 -0
- data/test/unit/string_extensions_test.rb +10 -0
- data/test/unit/svn_connection_test.rb +183 -0
- data/test/unit/svn_reporter_interaction_test.rb +38 -0
- data/test/unit/svn_reporter_test.rb +286 -0
- data/test/unit/svn_settings_test.rb +86 -0
- data/test/unit/translator_test.rb +96 -0
- data/test/unit/user_test.rb +125 -0
- data/test/unit/wiki_renderer_test.rb +87 -0
- data/test/unit/wiki_reporter_test.rb +94 -0
- data/test/unit/wiki_url_generator_test.rb +31 -0
- data/vendor/motiro-installer.rb +159 -0
- data/vendor/plugins/globalize/LICENSE +9 -0
- data/vendor/plugins/globalize/README +49 -0
- data/vendor/plugins/globalize/data/country_data.csv +240 -0
- data/vendor/plugins/globalize/data/language_data.csv +188 -0
- data/vendor/plugins/globalize/data/translation_data.csv +3421 -0
- data/vendor/plugins/globalize/generators/globalize/USAGE +10 -0
- data/vendor/plugins/globalize/generators/globalize/globalize_generator.rb +42 -0
- data/vendor/plugins/globalize/generators/globalize/templates/migration.rb.gz +0 -0
- data/vendor/plugins/globalize/generators/globalize/templates/tiny_migration.rb.gz +0 -0
- data/vendor/plugins/globalize/init.rb +30 -0
- data/vendor/plugins/globalize/lib/globalize/localization/core_ext.rb +170 -0
- data/vendor/plugins/globalize/lib/globalize/localization/core_ext_hooks.rb +33 -0
- data/vendor/plugins/globalize/lib/globalize/localization/db_translate.rb +494 -0
- data/vendor/plugins/globalize/lib/globalize/localization/db_view_translator.rb +152 -0
- data/vendor/plugins/globalize/lib/globalize/localization/locale.rb +173 -0
- data/vendor/plugins/globalize/lib/globalize/localization/rfc_3066.rb +40 -0
- data/vendor/plugins/globalize/lib/globalize/models/country.rb +24 -0
- data/vendor/plugins/globalize/lib/globalize/models/currency.rb +188 -0
- data/vendor/plugins/globalize/lib/globalize/models/language.rb +84 -0
- data/vendor/plugins/globalize/lib/globalize/models/model_translation.rb +4 -0
- data/vendor/plugins/globalize/lib/globalize/models/translation.rb +9 -0
- data/vendor/plugins/globalize/lib/globalize/models/view_translation.rb +14 -0
- data/vendor/plugins/globalize/lib/globalize/rails/action_mailer.rb +125 -0
- data/vendor/plugins/globalize/lib/globalize/rails/action_view.rb +79 -0
- data/vendor/plugins/globalize/lib/globalize/rails/active_record.rb +129 -0
- data/vendor/plugins/globalize/lib/globalize/rails/active_record_helper.rb +33 -0
- data/vendor/plugins/globalize/populators/pop_dates.rb +81 -0
- data/vendor/plugins/globalize/populators/pop_migration.rb +18 -0
- data/vendor/plugins/globalize/populators/pop_pluralization.rb +26 -0
- data/vendor/plugins/globalize/populators/pop_seps.rb +32 -0
- data/vendor/plugins/globalize/tasks/data.rake +130 -0
- data/vendor/plugins/globalize/test/action_mailer_test/globalize_mailer/test.en-US.plain.text.rhtml +1 -0
- data/vendor/plugins/globalize/test/action_mailer_test/globalize_mailer/test.en.plain.text.rhtml +1 -0
- data/vendor/plugins/globalize/test/action_mailer_test/globalize_mailer/test.he.plain.text.rhtml +1 -0
- data/vendor/plugins/globalize/test/action_mailer_test/globalize_mailer/test.plain.text.rhtml +1 -0
- data/vendor/plugins/globalize/test/action_mailer_test.rb +54 -0
- data/vendor/plugins/globalize/test/config/database.yml.default +16 -0
- data/vendor/plugins/globalize/test/config/database.yml.example +22 -0
- data/vendor/plugins/globalize/test/core_ext_test.rb +61 -0
- data/vendor/plugins/globalize/test/currency_test.rb +141 -0
- data/vendor/plugins/globalize/test/date_helper_test.rb +634 -0
- data/vendor/plugins/globalize/test/db/schema.rb +90 -0
- data/vendor/plugins/globalize/test/db_translation_test.rb +374 -0
- data/vendor/plugins/globalize/test/fixtures/globalize_categories.yml +7 -0
- data/vendor/plugins/globalize/test/fixtures/globalize_categories_products.yml +7 -0
- data/vendor/plugins/globalize/test/fixtures/globalize_countries.yml +41 -0
- data/vendor/plugins/globalize/test/fixtures/globalize_languages.yml +64 -0
- data/vendor/plugins/globalize/test/fixtures/globalize_manufacturers.yml +5 -0
- data/vendor/plugins/globalize/test/fixtures/globalize_products.yml +29 -0
- data/vendor/plugins/globalize/test/fixtures/globalize_simples.yml +5 -0
- data/vendor/plugins/globalize/test/fixtures/globalize_translations.yml +354 -0
- data/vendor/plugins/globalize/test/locale_test.rb +27 -0
- data/vendor/plugins/globalize/test/mime_responds_test.rb +358 -0
- data/vendor/plugins/globalize/test/model_test.rb +17 -0
- data/vendor/plugins/globalize/test/standard_data_test_helper.rb +33 -0
- data/vendor/plugins/globalize/test/test_helper.rb +19 -0
- data/vendor/plugins/globalize/test/test_standard_data.rb +54 -0
- data/vendor/plugins/globalize/test/validation_test.rb +29 -0
- data/vendor/plugins/globalize/test/view_picking_test.rb +49 -0
- data/vendor/plugins/globalize/test/view_translation_test.rb +237 -0
- data/vendor/plugins/globalize/test/views/layouts/standard.rhtml +1 -0
- data/vendor/plugins/globalize/test/views/respond_to/all_types_with_layout.rhtml +1 -0
- data/vendor/plugins/globalize/test/views/respond_to/all_types_with_layout.rjs +1 -0
- data/vendor/plugins/globalize/test/views/respond_to/using_defaults.en.rhtml +1 -0
- data/vendor/plugins/globalize/test/views/respond_to/using_defaults.en.rjs +1 -0
- data/vendor/plugins/globalize/test/views/respond_to/using_defaults.en.rxml +1 -0
- data/vendor/plugins/globalize/test/views/respond_to/using_defaults.fr.rhtml +1 -0
- data/vendor/plugins/globalize/test/views/respond_to/using_defaults.fr.rjs +1 -0
- data/vendor/plugins/globalize/test/views/respond_to/using_defaults.fr.rxml +1 -0
- data/vendor/plugins/globalize/test/views/respond_to/using_defaults.rhtml +1 -0
- data/vendor/plugins/globalize/test/views/respond_to/using_defaults.rjs +1 -0
- data/vendor/plugins/globalize/test/views/respond_to/using_defaults.rxml +1 -0
- data/vendor/plugins/globalize/test/views/respond_to/using_defaults_with_type_list.en.rhtml +1 -0
- data/vendor/plugins/globalize/test/views/respond_to/using_defaults_with_type_list.en.rjs +1 -0
- data/vendor/plugins/globalize/test/views/respond_to/using_defaults_with_type_list.en.rxml +1 -0
- data/vendor/plugins/globalize/test/views/respond_to/using_defaults_with_type_list.fr.rhtml +1 -0
- data/vendor/plugins/globalize/test/views/respond_to/using_defaults_with_type_list.fr.rjs +1 -0
- data/vendor/plugins/globalize/test/views/respond_to/using_defaults_with_type_list.fr.rxml +1 -0
- data/vendor/plugins/globalize/test/views/respond_to/using_defaults_with_type_list.rhtml +1 -0
- data/vendor/plugins/globalize/test/views/respond_to/using_defaults_with_type_list.rjs +1 -0
- data/vendor/plugins/globalize/test/views/respond_to/using_defaults_with_type_list.rxml +1 -0
- data/vendor/plugins/globalize/test/views/test.he-IL.rhtml +1 -0
- data/vendor/plugins/globalize/test/views/test.rhtml +1 -0
- data/vendor/plugins/globalize/test/views/test2.he.rhtml +1 -0
- data/vendor/plugins/globalize/test/views/test2.rhtml +1 -0
- data/vendor/plugins/test_xml/MIT-LICENSE +20 -0
- data/vendor/plugins/test_xml/README +20 -0
- data/vendor/plugins/test_xml/Rakefile +22 -0
- data/vendor/plugins/test_xml/init.rb +7 -0
- data/vendor/plugins/test_xml/lib/xml_assertions.rb +22 -0
- data/vendor/plugins/test_xml/test/test_xml_test.rb +40 -0
- metadata +505 -0
@@ -0,0 +1,584 @@
|
|
1
|
+
// Copyright (c) 2005 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
|
2
|
+
//
|
3
|
+
// See scriptaculous.js for full license.
|
4
|
+
|
5
|
+
/*--------------------------------------------------------------------------*/
|
6
|
+
|
7
|
+
var Droppables = {
|
8
|
+
drops: [],
|
9
|
+
|
10
|
+
remove: function(element) {
|
11
|
+
this.drops = this.drops.reject(function(d) { return d.element==$(element) });
|
12
|
+
},
|
13
|
+
|
14
|
+
add: function(element) {
|
15
|
+
element = $(element);
|
16
|
+
var options = Object.extend({
|
17
|
+
greedy: true,
|
18
|
+
hoverclass: null
|
19
|
+
}, arguments[1] || {});
|
20
|
+
|
21
|
+
// cache containers
|
22
|
+
if(options.containment) {
|
23
|
+
options._containers = [];
|
24
|
+
var containment = options.containment;
|
25
|
+
if((typeof containment == 'object') &&
|
26
|
+
(containment.constructor == Array)) {
|
27
|
+
containment.each( function(c) { options._containers.push($(c)) });
|
28
|
+
} else {
|
29
|
+
options._containers.push($(containment));
|
30
|
+
}
|
31
|
+
}
|
32
|
+
|
33
|
+
if(options.accept) options.accept = [options.accept].flatten();
|
34
|
+
|
35
|
+
Element.makePositioned(element); // fix IE
|
36
|
+
options.element = element;
|
37
|
+
|
38
|
+
this.drops.push(options);
|
39
|
+
},
|
40
|
+
|
41
|
+
isContained: function(element, drop) {
|
42
|
+
var parentNode = element.parentNode;
|
43
|
+
return drop._containers.detect(function(c) { return parentNode == c });
|
44
|
+
},
|
45
|
+
|
46
|
+
isAffected: function(point, element, drop) {
|
47
|
+
return (
|
48
|
+
(drop.element!=element) &&
|
49
|
+
((!drop._containers) ||
|
50
|
+
this.isContained(element, drop)) &&
|
51
|
+
((!drop.accept) ||
|
52
|
+
(Element.classNames(element).detect(
|
53
|
+
function(v) { return drop.accept.include(v) } ) )) &&
|
54
|
+
Position.within(drop.element, point[0], point[1]) );
|
55
|
+
},
|
56
|
+
|
57
|
+
deactivate: function(drop) {
|
58
|
+
if(drop.hoverclass)
|
59
|
+
Element.removeClassName(drop.element, drop.hoverclass);
|
60
|
+
this.last_active = null;
|
61
|
+
},
|
62
|
+
|
63
|
+
activate: function(drop) {
|
64
|
+
if(drop.hoverclass)
|
65
|
+
Element.addClassName(drop.element, drop.hoverclass);
|
66
|
+
this.last_active = drop;
|
67
|
+
},
|
68
|
+
|
69
|
+
show: function(point, element) {
|
70
|
+
if(!this.drops.length) return;
|
71
|
+
|
72
|
+
if(this.last_active) this.deactivate(this.last_active);
|
73
|
+
this.drops.each( function(drop) {
|
74
|
+
if(Droppables.isAffected(point, element, drop)) {
|
75
|
+
if(drop.onHover)
|
76
|
+
drop.onHover(element, drop.element, Position.overlap(drop.overlap, drop.element));
|
77
|
+
if(drop.greedy) {
|
78
|
+
Droppables.activate(drop);
|
79
|
+
throw $break;
|
80
|
+
}
|
81
|
+
}
|
82
|
+
});
|
83
|
+
},
|
84
|
+
|
85
|
+
fire: function(event, element) {
|
86
|
+
if(!this.last_active) return;
|
87
|
+
Position.prepare();
|
88
|
+
|
89
|
+
if (this.isAffected([Event.pointerX(event), Event.pointerY(event)], element, this.last_active))
|
90
|
+
if (this.last_active.onDrop)
|
91
|
+
this.last_active.onDrop(element, this.last_active.element, event);
|
92
|
+
},
|
93
|
+
|
94
|
+
reset: function() {
|
95
|
+
if(this.last_active)
|
96
|
+
this.deactivate(this.last_active);
|
97
|
+
}
|
98
|
+
}
|
99
|
+
|
100
|
+
var Draggables = {
|
101
|
+
drags: [],
|
102
|
+
observers: [],
|
103
|
+
|
104
|
+
register: function(draggable) {
|
105
|
+
if(this.drags.length == 0) {
|
106
|
+
this.eventMouseUp = this.endDrag.bindAsEventListener(this);
|
107
|
+
this.eventMouseMove = this.updateDrag.bindAsEventListener(this);
|
108
|
+
this.eventKeypress = this.keyPress.bindAsEventListener(this);
|
109
|
+
|
110
|
+
Event.observe(document, "mouseup", this.eventMouseUp);
|
111
|
+
Event.observe(document, "mousemove", this.eventMouseMove);
|
112
|
+
Event.observe(document, "keypress", this.eventKeypress);
|
113
|
+
}
|
114
|
+
this.drags.push(draggable);
|
115
|
+
},
|
116
|
+
|
117
|
+
unregister: function(draggable) {
|
118
|
+
this.drags = this.drags.reject(function(d) { return d==draggable });
|
119
|
+
if(this.drags.length == 0) {
|
120
|
+
Event.stopObserving(document, "mouseup", this.eventMouseUp);
|
121
|
+
Event.stopObserving(document, "mousemove", this.eventMouseMove);
|
122
|
+
Event.stopObserving(document, "keypress", this.eventKeypress);
|
123
|
+
}
|
124
|
+
},
|
125
|
+
|
126
|
+
activate: function(draggable) {
|
127
|
+
window.focus(); // allows keypress events if window isn't currently focused, fails for Safari
|
128
|
+
this.activeDraggable = draggable;
|
129
|
+
},
|
130
|
+
|
131
|
+
deactivate: function(draggbale) {
|
132
|
+
this.activeDraggable = null;
|
133
|
+
},
|
134
|
+
|
135
|
+
updateDrag: function(event) {
|
136
|
+
if(!this.activeDraggable) return;
|
137
|
+
var pointer = [Event.pointerX(event), Event.pointerY(event)];
|
138
|
+
// Mozilla-based browsers fire successive mousemove events with
|
139
|
+
// the same coordinates, prevent needless redrawing (moz bug?)
|
140
|
+
if(this._lastPointer && (this._lastPointer.inspect() == pointer.inspect())) return;
|
141
|
+
this._lastPointer = pointer;
|
142
|
+
this.activeDraggable.updateDrag(event, pointer);
|
143
|
+
},
|
144
|
+
|
145
|
+
endDrag: function(event) {
|
146
|
+
if(!this.activeDraggable) return;
|
147
|
+
this._lastPointer = null;
|
148
|
+
this.activeDraggable.endDrag(event);
|
149
|
+
},
|
150
|
+
|
151
|
+
keyPress: function(event) {
|
152
|
+
if(this.activeDraggable)
|
153
|
+
this.activeDraggable.keyPress(event);
|
154
|
+
},
|
155
|
+
|
156
|
+
addObserver: function(observer) {
|
157
|
+
this.observers.push(observer);
|
158
|
+
this._cacheObserverCallbacks();
|
159
|
+
},
|
160
|
+
|
161
|
+
removeObserver: function(element) { // element instead of observer fixes mem leaks
|
162
|
+
this.observers = this.observers.reject( function(o) { return o.element==element });
|
163
|
+
this._cacheObserverCallbacks();
|
164
|
+
},
|
165
|
+
|
166
|
+
notify: function(eventName, draggable, event) { // 'onStart', 'onEnd', 'onDrag'
|
167
|
+
if(this[eventName+'Count'] > 0)
|
168
|
+
this.observers.each( function(o) {
|
169
|
+
if(o[eventName]) o[eventName](eventName, draggable, event);
|
170
|
+
});
|
171
|
+
},
|
172
|
+
|
173
|
+
_cacheObserverCallbacks: function() {
|
174
|
+
['onStart','onEnd','onDrag'].each( function(eventName) {
|
175
|
+
Draggables[eventName+'Count'] = Draggables.observers.select(
|
176
|
+
function(o) { return o[eventName]; }
|
177
|
+
).length;
|
178
|
+
});
|
179
|
+
}
|
180
|
+
}
|
181
|
+
|
182
|
+
/*--------------------------------------------------------------------------*/
|
183
|
+
|
184
|
+
var Draggable = Class.create();
|
185
|
+
Draggable.prototype = {
|
186
|
+
initialize: function(element) {
|
187
|
+
var options = Object.extend({
|
188
|
+
handle: false,
|
189
|
+
starteffect: function(element) {
|
190
|
+
new Effect.Opacity(element, {duration:0.2, from:1.0, to:0.7});
|
191
|
+
},
|
192
|
+
reverteffect: function(element, top_offset, left_offset) {
|
193
|
+
var dur = Math.sqrt(Math.abs(top_offset^2)+Math.abs(left_offset^2))*0.02;
|
194
|
+
element._revert = new Effect.MoveBy(element, -top_offset, -left_offset, {duration:dur});
|
195
|
+
},
|
196
|
+
endeffect: function(element) {
|
197
|
+
new Effect.Opacity(element, {duration:0.2, from:0.7, to:1.0});
|
198
|
+
},
|
199
|
+
zindex: 1000,
|
200
|
+
revert: false,
|
201
|
+
snap: false // false, or xy or [x,y] or function(x,y){ return [x,y] }
|
202
|
+
}, arguments[1] || {});
|
203
|
+
|
204
|
+
this.element = $(element);
|
205
|
+
|
206
|
+
if(options.handle && (typeof options.handle == 'string'))
|
207
|
+
this.handle = Element.childrenWithClassName(this.element, options.handle)[0];
|
208
|
+
if(!this.handle) this.handle = $(options.handle);
|
209
|
+
if(!this.handle) this.handle = this.element;
|
210
|
+
|
211
|
+
Element.makePositioned(this.element); // fix IE
|
212
|
+
|
213
|
+
this.delta = this.currentDelta();
|
214
|
+
this.options = options;
|
215
|
+
this.dragging = false;
|
216
|
+
|
217
|
+
this.eventMouseDown = this.initDrag.bindAsEventListener(this);
|
218
|
+
Event.observe(this.handle, "mousedown", this.eventMouseDown);
|
219
|
+
|
220
|
+
Draggables.register(this);
|
221
|
+
},
|
222
|
+
|
223
|
+
destroy: function() {
|
224
|
+
Event.stopObserving(this.handle, "mousedown", this.eventMouseDown);
|
225
|
+
Draggables.unregister(this);
|
226
|
+
},
|
227
|
+
|
228
|
+
currentDelta: function() {
|
229
|
+
return([
|
230
|
+
parseInt(this.element.style.left || '0'),
|
231
|
+
parseInt(this.element.style.top || '0')]);
|
232
|
+
},
|
233
|
+
|
234
|
+
initDrag: function(event) {
|
235
|
+
if(Event.isLeftClick(event)) {
|
236
|
+
// abort on form elements, fixes a Firefox issue
|
237
|
+
var src = Event.element(event);
|
238
|
+
if(src.tagName && (
|
239
|
+
src.tagName=='INPUT' ||
|
240
|
+
src.tagName=='SELECT' ||
|
241
|
+
src.tagName=='BUTTON' ||
|
242
|
+
src.tagName=='TEXTAREA')) return;
|
243
|
+
|
244
|
+
if(this.element._revert) {
|
245
|
+
this.element._revert.cancel();
|
246
|
+
this.element._revert = null;
|
247
|
+
}
|
248
|
+
|
249
|
+
var pointer = [Event.pointerX(event), Event.pointerY(event)];
|
250
|
+
var pos = Position.cumulativeOffset(this.element);
|
251
|
+
this.offset = [0,1].map( function(i) { return (pointer[i] - pos[i]) });
|
252
|
+
|
253
|
+
Draggables.activate(this);
|
254
|
+
Event.stop(event);
|
255
|
+
}
|
256
|
+
},
|
257
|
+
|
258
|
+
startDrag: function(event) {
|
259
|
+
this.dragging = true;
|
260
|
+
|
261
|
+
if(this.options.zindex) {
|
262
|
+
this.originalZ = parseInt(Element.getStyle(this.element,'z-index') || 0);
|
263
|
+
this.element.style.zIndex = this.options.zindex;
|
264
|
+
}
|
265
|
+
|
266
|
+
if(this.options.ghosting) {
|
267
|
+
this._clone = this.element.cloneNode(true);
|
268
|
+
Position.absolutize(this.element);
|
269
|
+
this.element.parentNode.insertBefore(this._clone, this.element);
|
270
|
+
}
|
271
|
+
|
272
|
+
Draggables.notify('onStart', this, event);
|
273
|
+
if(this.options.starteffect) this.options.starteffect(this.element);
|
274
|
+
},
|
275
|
+
|
276
|
+
updateDrag: function(event, pointer) {
|
277
|
+
if(!this.dragging) this.startDrag(event);
|
278
|
+
Position.prepare();
|
279
|
+
Droppables.show(pointer, this.element);
|
280
|
+
Draggables.notify('onDrag', this, event);
|
281
|
+
this.draw(pointer);
|
282
|
+
if(this.options.change) this.options.change(this);
|
283
|
+
|
284
|
+
// fix AppleWebKit rendering
|
285
|
+
if(navigator.appVersion.indexOf('AppleWebKit')>0) window.scrollBy(0,0);
|
286
|
+
Event.stop(event);
|
287
|
+
},
|
288
|
+
|
289
|
+
finishDrag: function(event, success) {
|
290
|
+
this.dragging = false;
|
291
|
+
|
292
|
+
if(this.options.ghosting) {
|
293
|
+
Position.relativize(this.element);
|
294
|
+
Element.remove(this._clone);
|
295
|
+
this._clone = null;
|
296
|
+
}
|
297
|
+
|
298
|
+
if(success) Droppables.fire(event, this.element);
|
299
|
+
Draggables.notify('onEnd', this, event);
|
300
|
+
|
301
|
+
var revert = this.options.revert;
|
302
|
+
if(revert && typeof revert == 'function') revert = revert(this.element);
|
303
|
+
|
304
|
+
var d = this.currentDelta();
|
305
|
+
if(revert && this.options.reverteffect) {
|
306
|
+
this.options.reverteffect(this.element,
|
307
|
+
d[1]-this.delta[1], d[0]-this.delta[0]);
|
308
|
+
} else {
|
309
|
+
this.delta = d;
|
310
|
+
}
|
311
|
+
|
312
|
+
if(this.options.zindex)
|
313
|
+
this.element.style.zIndex = this.originalZ;
|
314
|
+
|
315
|
+
if(this.options.endeffect)
|
316
|
+
this.options.endeffect(this.element);
|
317
|
+
|
318
|
+
Draggables.deactivate(this);
|
319
|
+
Droppables.reset();
|
320
|
+
},
|
321
|
+
|
322
|
+
keyPress: function(event) {
|
323
|
+
if(!event.keyCode==Event.KEY_ESC) return;
|
324
|
+
this.finishDrag(event, false);
|
325
|
+
Event.stop(event);
|
326
|
+
},
|
327
|
+
|
328
|
+
endDrag: function(event) {
|
329
|
+
if(!this.dragging) return;
|
330
|
+
this.finishDrag(event, true);
|
331
|
+
Event.stop(event);
|
332
|
+
},
|
333
|
+
|
334
|
+
draw: function(point) {
|
335
|
+
var pos = Position.cumulativeOffset(this.element);
|
336
|
+
var d = this.currentDelta();
|
337
|
+
pos[0] -= d[0]; pos[1] -= d[1];
|
338
|
+
|
339
|
+
var p = [0,1].map(function(i){ return (point[i]-pos[i]-this.offset[i]) }.bind(this));
|
340
|
+
|
341
|
+
if(this.options.snap) {
|
342
|
+
if(typeof this.options.snap == 'function') {
|
343
|
+
p = this.options.snap(p[0],p[1]);
|
344
|
+
} else {
|
345
|
+
if(this.options.snap instanceof Array) {
|
346
|
+
p = p.map( function(v, i) {
|
347
|
+
return Math.round(v/this.options.snap[i])*this.options.snap[i] }.bind(this))
|
348
|
+
} else {
|
349
|
+
p = p.map( function(v) {
|
350
|
+
return Math.round(v/this.options.snap)*this.options.snap }.bind(this))
|
351
|
+
}
|
352
|
+
}}
|
353
|
+
|
354
|
+
var style = this.element.style;
|
355
|
+
if((!this.options.constraint) || (this.options.constraint=='horizontal'))
|
356
|
+
style.left = p[0] + "px";
|
357
|
+
if((!this.options.constraint) || (this.options.constraint=='vertical'))
|
358
|
+
style.top = p[1] + "px";
|
359
|
+
if(style.visibility=="hidden") style.visibility = ""; // fix gecko rendering
|
360
|
+
}
|
361
|
+
}
|
362
|
+
|
363
|
+
/*--------------------------------------------------------------------------*/
|
364
|
+
|
365
|
+
var SortableObserver = Class.create();
|
366
|
+
SortableObserver.prototype = {
|
367
|
+
initialize: function(element, observer) {
|
368
|
+
this.element = $(element);
|
369
|
+
this.observer = observer;
|
370
|
+
this.lastValue = Sortable.serialize(this.element);
|
371
|
+
},
|
372
|
+
|
373
|
+
onStart: function() {
|
374
|
+
this.lastValue = Sortable.serialize(this.element);
|
375
|
+
},
|
376
|
+
|
377
|
+
onEnd: function() {
|
378
|
+
Sortable.unmark();
|
379
|
+
if(this.lastValue != Sortable.serialize(this.element))
|
380
|
+
this.observer(this.element)
|
381
|
+
}
|
382
|
+
}
|
383
|
+
|
384
|
+
var Sortable = {
|
385
|
+
sortables: new Array(),
|
386
|
+
|
387
|
+
options: function(element){
|
388
|
+
element = $(element);
|
389
|
+
return this.sortables.detect(function(s) { return s.element == element });
|
390
|
+
},
|
391
|
+
|
392
|
+
destroy: function(element){
|
393
|
+
element = $(element);
|
394
|
+
this.sortables.findAll(function(s) { return s.element == element }).each(function(s){
|
395
|
+
Draggables.removeObserver(s.element);
|
396
|
+
s.droppables.each(function(d){ Droppables.remove(d) });
|
397
|
+
s.draggables.invoke('destroy');
|
398
|
+
});
|
399
|
+
this.sortables = this.sortables.reject(function(s) { return s.element == element });
|
400
|
+
},
|
401
|
+
|
402
|
+
create: function(element) {
|
403
|
+
element = $(element);
|
404
|
+
var options = Object.extend({
|
405
|
+
element: element,
|
406
|
+
tag: 'li', // assumes li children, override with tag: 'tagname'
|
407
|
+
dropOnEmpty: false,
|
408
|
+
tree: false, // fixme: unimplemented
|
409
|
+
overlap: 'vertical', // one of 'vertical', 'horizontal'
|
410
|
+
constraint: 'vertical', // one of 'vertical', 'horizontal', false
|
411
|
+
containment: element, // also takes array of elements (or id's); or false
|
412
|
+
handle: false, // or a CSS class
|
413
|
+
only: false,
|
414
|
+
hoverclass: null,
|
415
|
+
ghosting: false,
|
416
|
+
format: null,
|
417
|
+
onChange: Prototype.emptyFunction,
|
418
|
+
onUpdate: Prototype.emptyFunction
|
419
|
+
}, arguments[1] || {});
|
420
|
+
|
421
|
+
// clear any old sortable with same element
|
422
|
+
this.destroy(element);
|
423
|
+
|
424
|
+
// build options for the draggables
|
425
|
+
var options_for_draggable = {
|
426
|
+
revert: true,
|
427
|
+
ghosting: options.ghosting,
|
428
|
+
constraint: options.constraint,
|
429
|
+
handle: options.handle };
|
430
|
+
|
431
|
+
if(options.starteffect)
|
432
|
+
options_for_draggable.starteffect = options.starteffect;
|
433
|
+
|
434
|
+
if(options.reverteffect)
|
435
|
+
options_for_draggable.reverteffect = options.reverteffect;
|
436
|
+
else
|
437
|
+
if(options.ghosting) options_for_draggable.reverteffect = function(element) {
|
438
|
+
element.style.top = 0;
|
439
|
+
element.style.left = 0;
|
440
|
+
};
|
441
|
+
|
442
|
+
if(options.endeffect)
|
443
|
+
options_for_draggable.endeffect = options.endeffect;
|
444
|
+
|
445
|
+
if(options.zindex)
|
446
|
+
options_for_draggable.zindex = options.zindex;
|
447
|
+
|
448
|
+
// build options for the droppables
|
449
|
+
var options_for_droppable = {
|
450
|
+
overlap: options.overlap,
|
451
|
+
containment: options.containment,
|
452
|
+
hoverclass: options.hoverclass,
|
453
|
+
onHover: Sortable.onHover,
|
454
|
+
greedy: !options.dropOnEmpty
|
455
|
+
}
|
456
|
+
|
457
|
+
// fix for gecko engine
|
458
|
+
Element.cleanWhitespace(element);
|
459
|
+
|
460
|
+
options.draggables = [];
|
461
|
+
options.droppables = [];
|
462
|
+
|
463
|
+
// make it so
|
464
|
+
|
465
|
+
// drop on empty handling
|
466
|
+
if(options.dropOnEmpty) {
|
467
|
+
Droppables.add(element,
|
468
|
+
{containment: options.containment, onHover: Sortable.onEmptyHover, greedy: false});
|
469
|
+
options.droppables.push(element);
|
470
|
+
}
|
471
|
+
|
472
|
+
(this.findElements(element, options) || []).each( function(e) {
|
473
|
+
// handles are per-draggable
|
474
|
+
var handle = options.handle ?
|
475
|
+
Element.childrenWithClassName(e, options.handle)[0] : e;
|
476
|
+
options.draggables.push(
|
477
|
+
new Draggable(e, Object.extend(options_for_draggable, { handle: handle })));
|
478
|
+
Droppables.add(e, options_for_droppable);
|
479
|
+
options.droppables.push(e);
|
480
|
+
});
|
481
|
+
|
482
|
+
// keep reference
|
483
|
+
this.sortables.push(options);
|
484
|
+
|
485
|
+
// for onupdate
|
486
|
+
Draggables.addObserver(new SortableObserver(element, options.onUpdate));
|
487
|
+
|
488
|
+
},
|
489
|
+
|
490
|
+
// return all suitable-for-sortable elements in a guaranteed order
|
491
|
+
findElements: function(element, options) {
|
492
|
+
if(!element.hasChildNodes()) return null;
|
493
|
+
var elements = [];
|
494
|
+
$A(element.childNodes).each( function(e) {
|
495
|
+
if(e.tagName && e.tagName.toUpperCase()==options.tag.toUpperCase() &&
|
496
|
+
(!options.only || (Element.hasClassName(e, options.only))))
|
497
|
+
elements.push(e);
|
498
|
+
if(options.tree) {
|
499
|
+
var grandchildren = this.findElements(e, options);
|
500
|
+
if(grandchildren) elements.push(grandchildren);
|
501
|
+
}
|
502
|
+
});
|
503
|
+
|
504
|
+
return (elements.length>0 ? elements.flatten() : null);
|
505
|
+
},
|
506
|
+
|
507
|
+
onHover: function(element, dropon, overlap) {
|
508
|
+
if(overlap>0.5) {
|
509
|
+
Sortable.mark(dropon, 'before');
|
510
|
+
if(dropon.previousSibling != element) {
|
511
|
+
var oldParentNode = element.parentNode;
|
512
|
+
element.style.visibility = "hidden"; // fix gecko rendering
|
513
|
+
dropon.parentNode.insertBefore(element, dropon);
|
514
|
+
if(dropon.parentNode!=oldParentNode)
|
515
|
+
Sortable.options(oldParentNode).onChange(element);
|
516
|
+
Sortable.options(dropon.parentNode).onChange(element);
|
517
|
+
}
|
518
|
+
} else {
|
519
|
+
Sortable.mark(dropon, 'after');
|
520
|
+
var nextElement = dropon.nextSibling || null;
|
521
|
+
if(nextElement != element) {
|
522
|
+
var oldParentNode = element.parentNode;
|
523
|
+
element.style.visibility = "hidden"; // fix gecko rendering
|
524
|
+
dropon.parentNode.insertBefore(element, nextElement);
|
525
|
+
if(dropon.parentNode!=oldParentNode)
|
526
|
+
Sortable.options(oldParentNode).onChange(element);
|
527
|
+
Sortable.options(dropon.parentNode).onChange(element);
|
528
|
+
}
|
529
|
+
}
|
530
|
+
},
|
531
|
+
|
532
|
+
onEmptyHover: function(element, dropon) {
|
533
|
+
if(element.parentNode!=dropon) {
|
534
|
+
var oldParentNode = element.parentNode;
|
535
|
+
dropon.appendChild(element);
|
536
|
+
Sortable.options(oldParentNode).onChange(element);
|
537
|
+
Sortable.options(dropon).onChange(element);
|
538
|
+
}
|
539
|
+
},
|
540
|
+
|
541
|
+
unmark: function() {
|
542
|
+
if(Sortable._marker) Element.hide(Sortable._marker);
|
543
|
+
},
|
544
|
+
|
545
|
+
mark: function(dropon, position) {
|
546
|
+
// mark on ghosting only
|
547
|
+
var sortable = Sortable.options(dropon.parentNode);
|
548
|
+
if(sortable && !sortable.ghosting) return;
|
549
|
+
|
550
|
+
if(!Sortable._marker) {
|
551
|
+
Sortable._marker = $('dropmarker') || document.createElement('DIV');
|
552
|
+
Element.hide(Sortable._marker);
|
553
|
+
Element.addClassName(Sortable._marker, 'dropmarker');
|
554
|
+
Sortable._marker.style.position = 'absolute';
|
555
|
+
document.getElementsByTagName("body").item(0).appendChild(Sortable._marker);
|
556
|
+
}
|
557
|
+
var offsets = Position.cumulativeOffset(dropon);
|
558
|
+
Sortable._marker.style.left = offsets[0] + 'px';
|
559
|
+
Sortable._marker.style.top = offsets[1] + 'px';
|
560
|
+
|
561
|
+
if(position=='after')
|
562
|
+
if(sortable.overlap == 'horizontal')
|
563
|
+
Sortable._marker.style.left = (offsets[0]+dropon.clientWidth) + 'px';
|
564
|
+
else
|
565
|
+
Sortable._marker.style.top = (offsets[1]+dropon.clientHeight) + 'px';
|
566
|
+
|
567
|
+
Element.show(Sortable._marker);
|
568
|
+
},
|
569
|
+
|
570
|
+
serialize: function(element) {
|
571
|
+
element = $(element);
|
572
|
+
var sortableOptions = this.options(element);
|
573
|
+
var options = Object.extend({
|
574
|
+
tag: sortableOptions.tag,
|
575
|
+
only: sortableOptions.only,
|
576
|
+
name: element.id,
|
577
|
+
format: sortableOptions.format || /^[^_]*_(.*)$/
|
578
|
+
}, arguments[1] || {});
|
579
|
+
return $(this.findElements(element, options) || []).map( function(item) {
|
580
|
+
return (encodeURIComponent(options.name) + "[]=" +
|
581
|
+
encodeURIComponent(item.id.match(options.format) ? item.id.match(options.format)[1] : ''));
|
582
|
+
}).join("&");
|
583
|
+
}
|
584
|
+
}
|