nate-browser_cms 3.0.0.203

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. data/README.markdown +79 -0
  2. metadata +53 -0
@@ -0,0 +1,79 @@
1
+ # BrowserCMS: Humane Content Management for Rails
2
+
3
+ (3.0 Beta) - Not quite done, but ready to be tinkered with.
4
+
5
+ BrowserCMS is a general purpose, open source Web Content Management System (CMS), written in Ruby on Rails. It is designed to support three distinct groups of people:
6
+
7
+ 1. Non-technical web editors who want a humane system to manage their site, without needing to understand what HTML or even Rails is.
8
+ 2. Designers who want to create large and elegantly designed websites with no artificial constraints by the CMS.
9
+ 3. Developers who want to drop a CMS into their Rails projects, or create CMS driven websites for their clients.
10
+
11
+ ## Features
12
+ BrowserCMS is intended to offer features comparable to commercial CMS products, which can support larger teams of editors. This means having a robust set of features as part of its core, as well as the capability to customize it via modules.
13
+
14
+ Here's a quick overview of some of the more notable features:
15
+
16
+ * It's just Rails: Each CMS project is a rails project that depends on the BrowserCMS gem. Developers can add new controllers, views, etc; just like any rails project.
17
+ * Direct in context editing: Users can browse their site to locate content and change it right on the page itself.
18
+ * Design friendly Templates: Pages aren't just a template and giant single chunk of HTML. Templates can be built to have multiple editable areas, to allow for rich designs that are still easy to manage by non-technical users.
19
+ * Sitemap: An explorer/finder style view of sections and pages in a site allowing users to add and organize pages.
20
+ * Content Library: Provides a standardized 'CRUD' interface to allow users to manage both core and custom content types.
21
+ * Content API: A set of behaviors added to ActiveRecord which allow for versioning, auditing, tagging and other content services provided by the CMS.
22
+ * Section Based Security: Admins can control which users can access specific sections (public users), as well as who can edit which pages (cms users).
23
+ * Workflow: Supports larger website teams where some users can contribute, but not publish. Users can assign work to other publishers to review.
24
+ * Page Caching: Full page caching allows the web server (Apache) to serve HTML statically when they don't change.
25
+
26
+ ## License
27
+ BrowserCMS is released under a LGPL license, and is copyright 1998-2009 BrowserMedia. The complete copyright can be found in COPYRIGHT.txt, and copy of the license can be found in LICENSE.txt.
28
+
29
+ ## Installation
30
+ BrowserCMS is packaged as a gem, which can be included in any Rails project. The gem contains the code for the cms application itself. It also has a lot of public assets, including stylesheets, images and javascript, which will be copied from the gem as part of the install process. This section assumes that:
31
+
32
+ 1. There is no gem available on rubyforge yet. (Because we haven't released yet)
33
+ 2. You have downloaded the source code from github
34
+ 3. You want to build the gem locally and install it.
35
+ 4. You already have Rails 2.3 installed.
36
+
37
+ ## Building the gem
38
+ To build the gem from source, and install it on your system, type the following:
39
+
40
+ git clone git://github.com/browsermedia/browsercms.git
41
+ cd browsercms
42
+ rake cms:install
43
+
44
+ On *unix, this will sudo install, so you will need to provide your password.
45
+
46
+ ## Starting a new project
47
+ The next step is to create a rails project, which will include BrowserCMS, much like you would with any rails project. To make things easier, BrowserCMS comes with two application templates (a feature new to Rails 2.3), which create the initial rails application, configured for BrowserCMS. For now, you need to use the app templates from the source directory of cms. Here are the two options when starting a project.
48
+
49
+ * /templates/demo.rb - If you are new to BrowserCMS, and want to experiment, use this. It builds a sample site with a few pages, using our default theme, and adds some content to play around with.
50
+ * /templates/blank.rb - Use this if you want a completely empty site. Most 'real' projects will use this to start, as there is no 'dummy' data to remove before building a site.
51
+
52
+ To create a new project (using the demo template), run the following:
53
+
54
+ cd ~/projects
55
+ rails my_new_project_name -d mysql -m /path/to/browsercms_source_code/templates/demo.rb
56
+ cd my_new_project_name
57
+ script/server
58
+
59
+ This is going to create the development and testing copies of the database, migrate the db, populate it with some initial data, and copy all of the necessary files from the gem into the rails project.
60
+
61
+ From here, you can go to http://localhost:3000 to see the running CMS application. To log into the admin for the CMS, go to http://localhost:3000/cms, and type in the username and password. The default when running in dev mode is username=cmsadmin, password=cmsadmin.
62
+
63
+ ## Documentation
64
+ The user documentation and guides for this version of the application can be found at:
65
+
66
+ 1. doc/guides/html/index.html - User guides and manuals that cover the features and general functionality of the project.
67
+ 2. doc/app/index.html - The RDoc API documenation.
68
+
69
+ ## Modifying the source
70
+ If you want to experiment with the source code, the BrowserCMS project can bootstrap itself as a web application. This allows developers who want to contribute to the project to easily alter and test changes. To run the application itself, do the following:
71
+
72
+ cd /path/to/browsercms_source_code
73
+ rake reset
74
+ script/server
75
+
76
+ This will drop the 'browsercms_development' database, loads the same sample data from the demo.rb template. By default, the core project is setup to use mysql as the database, but you can change that via the database.yml files.
77
+
78
+ ## Support
79
+ The homepage for the BrowserCMS project is http://browsercms.org. From there you can find links to the discussion groups and our twitter account. If you have questions about the project or want to get involved, the Google group is the best way to do so. If you would like to report a bug, please do so at https://browsermedia.lighthouseapp.com/projects/28481-browsercms-30
metadata ADDED
@@ -0,0 +1,53 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: nate-browser_cms
3
+ version: !ruby/object:Gem::Version
4
+ version: 3.0.0.203
5
+ platform: ruby
6
+ authors:
7
+ - BrowserMedia
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-04-08 00:00:00 -07:00
13
+ default_executable:
14
+ dependencies: []
15
+
16
+ description:
17
+ email: github@browsermedia.com
18
+ executables: []
19
+
20
+ extensions: []
21
+
22
+ extra_rdoc_files:
23
+ - README.markdown
24
+ files:
25
+ - README.markdown
26
+ has_rdoc: true
27
+ homepage: http://www.browsercms.org
28
+ post_install_message:
29
+ rdoc_options: []
30
+
31
+ require_paths:
32
+ - lib
33
+ required_ruby_version: !ruby/object:Gem::Requirement
34
+ requirements:
35
+ - - ">="
36
+ - !ruby/object:Gem::Version
37
+ version: "0"
38
+ version:
39
+ required_rubygems_version: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: "0"
44
+ version:
45
+ requirements: []
46
+
47
+ rubyforge_project: browser_cms
48
+ rubygems_version: 1.2.0
49
+ signing_key:
50
+ specification_version: 2
51
+ summary: A Content Management System for Rails
52
+ test_files: []
53
+