bcms_contact_us 1.0.0
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.
- data/Copyright.txt +23 -0
- data/GPL.txt +674 -0
- data/Gemfile +33 -0
- data/LICENSE.txt +165 -0
- data/README +256 -0
- data/app/controllers/application_controller.rb +3 -0
- data/app/controllers/cms/contacts_controller.rb +2 -0
- data/app/helpers/application_helper.rb +2 -0
- data/app/models/contact.rb +10 -0
- data/app/portlets/contact_form_portlet.rb +22 -0
- data/app/portlets/helpers/contact_form_portlet_helper.rb +5 -0
- data/app/views/cms/contacts/_form.html.erb +7 -0
- data/app/views/cms/contacts/render.html.erb +7 -0
- data/app/views/layouts/application.html.erb +14 -0
- data/app/views/portlets/contact_form/_form.html.erb +3 -0
- data/app/views/portlets/contact_form/render.html.erb +21 -0
- data/db/migrate/20110906200737_create_contacts.rb +23 -0
- data/lib/bcms_contact_us/engine.rb +7 -0
- data/lib/bcms_contact_us/routes.rb +8 -0
- data/lib/bcms_contact_us.rb +3 -0
- data/lib/generators/bcms_contact_us/install/USAGE +10 -0
- data/lib/generators/bcms_contact_us/install/install_generator.rb +8 -0
- metadata +84 -0
data/Copyright.txt
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
All BrowserCMS code is Copyright (C) 1998-2011 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
|