meetmermeeting 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (64) hide show
  1. data/Gemfile +5 -0
  2. data/Gemfile.lock +110 -0
  3. data/Gemfile.old +10 -0
  4. data/LICENSE-GPL-v3 +188 -0
  5. data/README.rdoc +5 -0
  6. data/Rakefile +3 -0
  7. data/Rakefile.old +29 -0
  8. data/app/assets/stylesheets/meeting.css +25 -0
  9. data/app/controllers/meetings_controller.rb +144 -0
  10. data/app/models/meeting/meeting.rb +25 -0
  11. data/app/views/meeting/_accordion.html.haml +82 -0
  12. data/app/views/meeting/_content.html.haml +5 -0
  13. data/app/views/meeting/_form.html.haml +34 -0
  14. data/app/views/meeting/edit.html.haml +26 -0
  15. data/app/views/meeting/index.html.haml +89 -0
  16. data/app/views/meeting/show.html.haml +59 -0
  17. data/config/routes.rb +6 -0
  18. data/lib/generators/meeting/install/install_generator.rb +90 -0
  19. data/lib/generators/meeting/install/templates/create_meetings.rb +41 -0
  20. data/lib/generators/meeting/install/templates/meeting.rb +25 -0
  21. data/lib/meeting/version.rb +23 -0
  22. data/meeting.gemspec +21 -0
  23. data/meeting.gemspec.old +29 -0
  24. data/test/dummy/Rakefile +7 -0
  25. data/test/dummy/app/controllers/application_controller.rb +3 -0
  26. data/test/dummy/app/helpers/application_helper.rb +2 -0
  27. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  28. data/test/dummy/config.ru +4 -0
  29. data/test/dummy/config/application.rb +45 -0
  30. data/test/dummy/config/boot.rb +10 -0
  31. data/test/dummy/config/database.yml +22 -0
  32. data/test/dummy/config/environment.rb +5 -0
  33. data/test/dummy/config/environments/development.rb +26 -0
  34. data/test/dummy/config/environments/production.rb +49 -0
  35. data/test/dummy/config/environments/test.rb +35 -0
  36. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  37. data/test/dummy/config/initializers/inflections.rb +10 -0
  38. data/test/dummy/config/initializers/mime_types.rb +5 -0
  39. data/test/dummy/config/initializers/secret_token.rb +7 -0
  40. data/test/dummy/config/initializers/session_store.rb +8 -0
  41. data/test/dummy/config/locales/en.yml +5 -0
  42. data/test/dummy/config/routes.rb +58 -0
  43. data/test/dummy/db/development.sqlite3 +0 -0
  44. data/test/dummy/log/development.log +27 -0
  45. data/test/dummy/log/production.log +0 -0
  46. data/test/dummy/log/server.log +0 -0
  47. data/test/dummy/log/test.log +0 -0
  48. data/test/dummy/public/404.html +26 -0
  49. data/test/dummy/public/422.html +26 -0
  50. data/test/dummy/public/500.html +26 -0
  51. data/test/dummy/public/favicon.ico +0 -0
  52. data/test/dummy/public/javascripts/application.js +2 -0
  53. data/test/dummy/public/javascripts/controls.js +965 -0
  54. data/test/dummy/public/javascripts/dragdrop.js +974 -0
  55. data/test/dummy/public/javascripts/effects.js +1123 -0
  56. data/test/dummy/public/javascripts/prototype.js +6001 -0
  57. data/test/dummy/public/javascripts/rails.js +202 -0
  58. data/test/dummy/public/stylesheets/.gitkeep +0 -0
  59. data/test/dummy/script/rails +6 -0
  60. data/test/integration/navigation_test.rb +7 -0
  61. data/test/meeting_test.rb +7 -0
  62. data/test/support/integration_case.rb +5 -0
  63. data/test/test_helper.rb +22 -0
  64. metadata +149 -0
@@ -0,0 +1,202 @@
1
+ (function() {
2
+ Ajax.Responders.register({
3
+ onCreate: function(request) {
4
+ var token = $$('meta[name=csrf-token]')[0];
5
+ if (token) {
6
+ if (!request.options.requestHeaders) request.options.requestHeaders = {};
7
+ request.options.requestHeaders['X-CSRF-Token'] = token.readAttribute('content');
8
+ }
9
+ }
10
+ });
11
+
12
+ // Technique from Juriy Zaytsev
13
+ // http://thinkweb2.com/projects/prototype/detecting-event-support-without-browser-sniffing/
14
+ function isEventSupported(eventName) {
15
+ var el = document.createElement('div');
16
+ eventName = 'on' + eventName;
17
+ var isSupported = (eventName in el);
18
+ if (!isSupported) {
19
+ el.setAttribute(eventName, 'return;');
20
+ isSupported = typeof el[eventName] == 'function';
21
+ }
22
+ el = null;
23
+ return isSupported;
24
+ }
25
+
26
+ function isForm(element) {
27
+ return Object.isElement(element) && element.nodeName.toUpperCase() == 'FORM';
28
+ }
29
+
30
+ function isInput(element) {
31
+ if (Object.isElement(element)) {
32
+ var name = element.nodeName.toUpperCase();
33
+ return name == 'INPUT' || name == 'SELECT' || name == 'TEXTAREA';
34
+ }
35
+ else return false;
36
+ }
37
+
38
+ var submitBubbles = isEventSupported('submit'),
39
+ changeBubbles = isEventSupported('change');
40
+
41
+ if (!submitBubbles || !changeBubbles) {
42
+ // augment the Event.Handler class to observe custom events when needed
43
+ Event.Handler.prototype.initialize = Event.Handler.prototype.initialize.wrap(
44
+ function(init, element, eventName, selector, callback) {
45
+ init(element, eventName, selector, callback);
46
+ // is the handler being attached to an element that doesn't support this event?
47
+ if ( (!submitBubbles && this.eventName == 'submit' && !isForm(this.element)) ||
48
+ (!changeBubbles && this.eventName == 'change' && !isInput(this.element)) ) {
49
+ // "submit" => "emulated:submit"
50
+ this.eventName = 'emulated:' + this.eventName;
51
+ }
52
+ }
53
+ );
54
+ }
55
+
56
+ if (!submitBubbles) {
57
+ // discover forms on the page by observing focus events which always bubble
58
+ document.on('focusin', 'form', function(focusEvent, form) {
59
+ // special handler for the real "submit" event (one-time operation)
60
+ if (!form.retrieve('emulated:submit')) {
61
+ form.on('submit', function(submitEvent) {
62
+ var emulated = form.fire('emulated:submit', submitEvent, true);
63
+ // if custom event received preventDefault, cancel the real one too
64
+ if (emulated.returnValue === false) submitEvent.preventDefault();
65
+ });
66
+ form.store('emulated:submit', true);
67
+ }
68
+ });
69
+ }
70
+
71
+ if (!changeBubbles) {
72
+ // discover form inputs on the page
73
+ document.on('focusin', 'input, select, textarea', function(focusEvent, input) {
74
+ // special handler for real "change" events
75
+ if (!input.retrieve('emulated:change')) {
76
+ input.on('change', function(changeEvent) {
77
+ input.fire('emulated:change', changeEvent, true);
78
+ });
79
+ input.store('emulated:change', true);
80
+ }
81
+ });
82
+ }
83
+
84
+ function handleRemote(element) {
85
+ var method, url, params;
86
+
87
+ var event = element.fire("ajax:before");
88
+ if (event.stopped) return false;
89
+
90
+ if (element.tagName.toLowerCase() === 'form') {
91
+ method = element.readAttribute('method') || 'post';
92
+ url = element.readAttribute('action');
93
+ // serialize the form with respect to the submit button that was pressed
94
+ params = element.serialize({ submit: element.retrieve('rails:submit-button') });
95
+ // clear the pressed submit button information
96
+ element.store('rails:submit-button', null);
97
+ } else {
98
+ method = element.readAttribute('data-method') || 'get';
99
+ url = element.readAttribute('href');
100
+ params = {};
101
+ }
102
+
103
+ new Ajax.Request(url, {
104
+ method: method,
105
+ parameters: params,
106
+ evalScripts: true,
107
+
108
+ onCreate: function(response) { element.fire("ajax:create", response); },
109
+ onComplete: function(response) { element.fire("ajax:complete", response); },
110
+ onSuccess: function(response) { element.fire("ajax:success", response); },
111
+ onFailure: function(response) { element.fire("ajax:failure", response); }
112
+ });
113
+
114
+ element.fire("ajax:after");
115
+ }
116
+
117
+ function insertHiddenField(form, name, value) {
118
+ form.insert(new Element('input', { type: 'hidden', name: name, value: value }));
119
+ }
120
+
121
+ function handleMethod(element) {
122
+ var method = element.readAttribute('data-method'),
123
+ url = element.readAttribute('href'),
124
+ csrf_param = $$('meta[name=csrf-param]')[0],
125
+ csrf_token = $$('meta[name=csrf-token]')[0];
126
+
127
+ var form = new Element('form', { method: "POST", action: url, style: "display: none;" });
128
+ $(element.parentNode).insert(form);
129
+
130
+ if (method !== 'post') {
131
+ insertHiddenField(form, '_method', method);
132
+ }
133
+
134
+ if (csrf_param) {
135
+ insertHiddenField(form, csrf_param.readAttribute('content'), csrf_token.readAttribute('content'));
136
+ }
137
+
138
+ form.submit();
139
+ }
140
+
141
+ function disableFormElements(form) {
142
+ form.select('input[type=submit][data-disable-with]').each(function(input) {
143
+ input.store('rails:original-value', input.getValue());
144
+ input.setValue(input.readAttribute('data-disable-with')).disable();
145
+ });
146
+ }
147
+
148
+ function enableFormElements(form) {
149
+ form.select('input[type=submit][data-disable-with]').each(function(input) {
150
+ input.setValue(input.retrieve('rails:original-value')).enable();
151
+ });
152
+ }
153
+
154
+ function allowAction(element) {
155
+ var message = element.readAttribute('data-confirm');
156
+ return !message || confirm(message);
157
+ }
158
+
159
+ document.on('click', 'a[data-confirm], a[data-remote], a[data-method]', function(event, link) {
160
+ if (!allowAction(link)) {
161
+ event.stop();
162
+ return false;
163
+ }
164
+
165
+ if (link.readAttribute('data-remote')) {
166
+ handleRemote(link);
167
+ event.stop();
168
+ } else if (link.readAttribute('data-method')) {
169
+ handleMethod(link);
170
+ event.stop();
171
+ }
172
+ });
173
+
174
+ document.on("click", "form input[type=submit], form button[type=submit], form button:not([type])", function(event, button) {
175
+ // register the pressed submit button
176
+ event.findElement('form').store('rails:submit-button', button.name || false);
177
+ });
178
+
179
+ document.on("submit", function(event) {
180
+ var form = event.findElement();
181
+
182
+ if (!allowAction(form)) {
183
+ event.stop();
184
+ return false;
185
+ }
186
+
187
+ if (form.readAttribute('data-remote')) {
188
+ handleRemote(form);
189
+ event.stop();
190
+ } else {
191
+ disableFormElements(form);
192
+ }
193
+ });
194
+
195
+ document.on('ajax:create', 'form', function(event, form) {
196
+ if (form == event.findElement()) disableFormElements(form);
197
+ });
198
+
199
+ document.on('ajax:complete', 'form', function(event, form) {
200
+ if (form == event.findElement()) enableFormElements(form);
201
+ });
202
+ })();
File without changes
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
+
4
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
5
+ require File.expand_path('../../config/boot', __FILE__)
6
+ require 'rails/commands'
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class NavigationTest < ActiveSupport::IntegrationCase
4
+ test "truth" do
5
+ assert_kind_of Dummy::Application, Rails.application
6
+ end
7
+ end
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class MeetingTest < ActiveSupport::TestCase
4
+ test "truth" do
5
+ assert_kind_of Module, Meeting
6
+ end
7
+ end
@@ -0,0 +1,5 @@
1
+ # Define a bare test case to use with Capybara
2
+ class ActiveSupport::IntegrationCase < ActiveSupport::TestCase
3
+ include Capybara
4
+ include Rails.application.routes.url_helpers
5
+ end
@@ -0,0 +1,22 @@
1
+ # Configure Rails Envinronment
2
+ ENV["RAILS_ENV"] = "test"
3
+
4
+ require File.expand_path("../dummy/config/environment.rb", __FILE__)
5
+ require "rails/test_help"
6
+
7
+ ActionMailer::Base.delivery_method = :test
8
+ ActionMailer::Base.perform_deliveries = true
9
+ ActionMailer::Base.default_url_options[:host] = "test.com"
10
+
11
+ Rails.backtrace_cleaner.remove_silencers!
12
+
13
+ # Configure capybara for integration testing
14
+ require "capybara/rails"
15
+ Capybara.default_driver = :rack_test
16
+ Capybara.default_selector = :css
17
+
18
+ # Run any available migration
19
+ ActiveRecord::Migrator.migrate File.expand_path("../dummy/db/migrate/", __FILE__)
20
+
21
+ # Load support files
22
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
metadata ADDED
@@ -0,0 +1,149 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: meetmermeeting
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Jarkko (kyyberi) Moilanen
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-08-05 00:00:00.000000000 Z
13
+ dependencies: []
14
+ description: Meetings gem for MeetMer dashboard
15
+ email:
16
+ - jarkko.moilanen@want3d.fi
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - Gemfile
22
+ - Gemfile.lock
23
+ - Gemfile.old
24
+ - LICENSE-GPL-v3
25
+ - README.rdoc
26
+ - Rakefile
27
+ - Rakefile.old
28
+ - app/assets/stylesheets/meeting.css
29
+ - app/controllers/meetings_controller.rb
30
+ - app/models/meeting/meeting.rb
31
+ - app/views/meeting/_accordion.html.haml
32
+ - app/views/meeting/_content.html.haml
33
+ - app/views/meeting/_form.html.haml
34
+ - app/views/meeting/edit.html.haml
35
+ - app/views/meeting/index.html.haml
36
+ - app/views/meeting/show.html.haml
37
+ - config/routes.rb
38
+ - lib/generators/meeting/install/install_generator.rb
39
+ - lib/generators/meeting/install/templates/create_meetings.rb
40
+ - lib/generators/meeting/install/templates/meeting.rb
41
+ - lib/meeting/version.rb
42
+ - meeting.gemspec
43
+ - meeting.gemspec.old
44
+ - test/dummy/Rakefile
45
+ - test/dummy/app/controllers/application_controller.rb
46
+ - test/dummy/app/helpers/application_helper.rb
47
+ - test/dummy/app/views/layouts/application.html.erb
48
+ - test/dummy/config.ru
49
+ - test/dummy/config/application.rb
50
+ - test/dummy/config/boot.rb
51
+ - test/dummy/config/database.yml
52
+ - test/dummy/config/environment.rb
53
+ - test/dummy/config/environments/development.rb
54
+ - test/dummy/config/environments/production.rb
55
+ - test/dummy/config/environments/test.rb
56
+ - test/dummy/config/initializers/backtrace_silencers.rb
57
+ - test/dummy/config/initializers/inflections.rb
58
+ - test/dummy/config/initializers/mime_types.rb
59
+ - test/dummy/config/initializers/secret_token.rb
60
+ - test/dummy/config/initializers/session_store.rb
61
+ - test/dummy/config/locales/en.yml
62
+ - test/dummy/config/routes.rb
63
+ - test/dummy/db/development.sqlite3
64
+ - test/dummy/log/development.log
65
+ - test/dummy/log/production.log
66
+ - test/dummy/log/server.log
67
+ - test/dummy/log/test.log
68
+ - test/dummy/public/404.html
69
+ - test/dummy/public/422.html
70
+ - test/dummy/public/500.html
71
+ - test/dummy/public/favicon.ico
72
+ - test/dummy/public/javascripts/application.js
73
+ - test/dummy/public/javascripts/controls.js
74
+ - test/dummy/public/javascripts/dragdrop.js
75
+ - test/dummy/public/javascripts/effects.js
76
+ - test/dummy/public/javascripts/prototype.js
77
+ - test/dummy/public/javascripts/rails.js
78
+ - test/dummy/public/stylesheets/.gitkeep
79
+ - test/dummy/script/rails
80
+ - test/integration/navigation_test.rb
81
+ - test/meeting_test.rb
82
+ - test/support/integration_case.rb
83
+ - test/test_helper.rb
84
+ homepage: ''
85
+ licenses: []
86
+ post_install_message:
87
+ rdoc_options: []
88
+ require_paths:
89
+ - lib
90
+ required_ruby_version: !ruby/object:Gem::Requirement
91
+ none: false
92
+ requirements:
93
+ - - ! '>='
94
+ - !ruby/object:Gem::Version
95
+ version: '0'
96
+ required_rubygems_version: !ruby/object:Gem::Requirement
97
+ none: false
98
+ requirements:
99
+ - - ! '>='
100
+ - !ruby/object:Gem::Version
101
+ version: '0'
102
+ requirements: []
103
+ rubyforge_project:
104
+ rubygems_version: 1.8.13
105
+ signing_key:
106
+ specification_version: 3
107
+ summary: Meetings gem for MeetMer dashboard, should be used only as part of MeetMer
108
+ Core
109
+ test_files:
110
+ - test/dummy/Rakefile
111
+ - test/dummy/app/controllers/application_controller.rb
112
+ - test/dummy/app/helpers/application_helper.rb
113
+ - test/dummy/app/views/layouts/application.html.erb
114
+ - test/dummy/config.ru
115
+ - test/dummy/config/application.rb
116
+ - test/dummy/config/boot.rb
117
+ - test/dummy/config/database.yml
118
+ - test/dummy/config/environment.rb
119
+ - test/dummy/config/environments/development.rb
120
+ - test/dummy/config/environments/production.rb
121
+ - test/dummy/config/environments/test.rb
122
+ - test/dummy/config/initializers/backtrace_silencers.rb
123
+ - test/dummy/config/initializers/inflections.rb
124
+ - test/dummy/config/initializers/mime_types.rb
125
+ - test/dummy/config/initializers/secret_token.rb
126
+ - test/dummy/config/initializers/session_store.rb
127
+ - test/dummy/config/locales/en.yml
128
+ - test/dummy/config/routes.rb
129
+ - test/dummy/db/development.sqlite3
130
+ - test/dummy/log/development.log
131
+ - test/dummy/log/production.log
132
+ - test/dummy/log/server.log
133
+ - test/dummy/log/test.log
134
+ - test/dummy/public/404.html
135
+ - test/dummy/public/422.html
136
+ - test/dummy/public/500.html
137
+ - test/dummy/public/favicon.ico
138
+ - test/dummy/public/javascripts/application.js
139
+ - test/dummy/public/javascripts/controls.js
140
+ - test/dummy/public/javascripts/dragdrop.js
141
+ - test/dummy/public/javascripts/effects.js
142
+ - test/dummy/public/javascripts/prototype.js
143
+ - test/dummy/public/javascripts/rails.js
144
+ - test/dummy/public/stylesheets/.gitkeep
145
+ - test/dummy/script/rails
146
+ - test/integration/navigation_test.rb
147
+ - test/meeting_test.rb
148
+ - test/support/integration_case.rb
149
+ - test/test_helper.rb