bcms_content_rotator 1.0.0 → 1.2.0
Sign up to get free protection for your applications and to get access to all the features.
- data/COPYRIGHT.txt +23 -0
- data/GPL.txt +674 -0
- data/Gemfile +8 -0
- data/LICENSE.txt +165 -0
- data/README.markdown +51 -0
- data/app/models/slide.rb +26 -1
- data/app/views/cms/slides/_form.html.erb +5 -3
- data/app/views/cms/slides/render.html.erb +3 -2
- data/app/views/layouts/templates/default.html.erb +1 -1
- data/app/views/portlets/content_rotator/_form.html.erb +14 -8
- data/app/views/portlets/content_rotator/render.html.erb +14 -56
- data/db/bcms_content_rotator.seeds.rb +4 -0
- data/db/migrate/{20101111030324_create_slides.rb → 20101111030324_bcms_content_rotator120.rb} +7 -5
- data/lib/bcms_content_rotator/engine.rb +9 -0
- data/lib/bcms_content_rotator/routes.rb +2 -2
- data/lib/bcms_content_rotator/version.rb +3 -0
- data/lib/bcms_content_rotator.rb +1 -0
- data/lib/generators/bcms_content_rotator/install/USAGE +10 -0
- data/lib/generators/bcms_content_rotator/install/install_generator.rb +13 -0
- data/lib/tasks/install.rake +8 -0
- data/public/bcms/content_rotator/content_rotator.js +39 -0
- metadata +52 -47
- data/app/controllers/application_controller.rb +0 -10
- data/app/helpers/application_helper.rb +0 -3
- data/rails/init.rb +0 -4
data/COPYRIGHT.txt
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
All BrowserCMS code is Copyright (C) 1998-2012 by BrowserMedia, LLC.
|
2
|
+
|
3
|
+
This program is free software: you can redistribute it and/or modify
|
4
|
+
it under the terms of the GNU Lesser General Public License as published by
|
5
|
+
the Free Software Foundation, either version 3 of the License, or
|
6
|
+
(at your option) any later version.
|
7
|
+
|
8
|
+
This program is distributed in the hope that it will be useful,
|
9
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
10
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
11
|
+
GNU Lesser General Public License for more details.
|
12
|
+
|
13
|
+
You should have received a copy of the GNU Lesser General Public License
|
14
|
+
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
15
|
+
|
16
|
+
BrowserCMS is a registered trademark of BrowserMedia, LLC.
|
17
|
+
|
18
|
+
BrowserCMS includes works under other copyright notices and distributed
|
19
|
+
according to the terms of the GNU Lesser Public License or a compatible
|
20
|
+
license, including:
|
21
|
+
|
22
|
+
- jQuery - Copyright (C) 2009 John Resig
|
23
|
+
- CKEditor - Copyright (C) 2003-2009 Frederico Caldeira Knabben
|