Skip to content

Commit c5eae35

Browse files
committed
Removed unneeded references to guides.
1 parent 3607c11 commit c5eae35

File tree

5 files changed

+13
-39
lines changed

5 files changed

+13
-39
lines changed

Gemfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ gem "mysql"
77

88
# Gem Environments
99
group :development do
10-
# gem 'ruby-debug19'
11-
gem 'RedCloth' # For guides
1210
gem 'yard'
1311
gem 'bluecloth' # For YARD
1412
end

README.markdown

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ BrowserCMS can create websites that can work in any browser, depending on how de
3131
The next releases will be aimed at tightening up the admin for both Safari and IE7+. We will not be supporting the admin UI for IE6, or other browsers not explicitly listed above.
3232

3333
## Getting Started
34-
Before you can use BrowserCMS, you will need to install the gem. See the Getting Started guide at http://guides.browsercms.org/getting_started.html, or packaged with this source code (under doc/guides/html/getting_started.html)
34+
Before you can use BrowserCMS, you will need to install the gem. See the [Getting Started](https://github.com/browsermedia/browsercms/wiki/Getting-Started) guide.
3535

3636
## License
3737
BrowserCMS is released under a LGPL license, and is copyright 1998-2011 BrowserMedia. The complete copyright can be found in COPYRIGHT.txt, and copy of the license can be found in LICENSE.txt.
@@ -40,9 +40,9 @@ BrowserCMS is released under a LGPL license, and is copyright 1998-2011 BrowserM
4040
## Documentation
4141
The user documentation and guides for this version of the application can be found at:
4242

43-
1. http://guides.browsercms.org/index.html - User guides and manuals that cover the features and general functionality of the project. (Found locally at doc/guides/html/index.html)
44-
2. http://api.browsercms.org/index.html - The RDoc API documenation (locally at doc/app/index.html)
45-
3. http://wiki.github.com/browsermedia/browsercms - The project wiki
43+
1. [Guides and Wiki](http://wiki.github.com/browsermedia/browsercms)
44+
2. [API Docs](http://rubydoc.info/gems/browsercms/)
45+
4646

4747
## Working on the core project source
4848
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:

doc/release_notes.txt

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
1-
v3.3.0.beta
2-
=====
1+
v3.3.0
2+
======
3+
4+
* New commandline syntax described here: https://github.com/browsermedia/browsercms/wiki/Getting-Started
5+
* Removed guides from core project in favor of moving to Github's wiki
6+
* Updated API docs so YARD is being used, and hosted at http://rubydoc.info/gems/browsercms/
7+
8+
v3.3.0.beta
9+
===========
310

411
The long awaited Rails 3 release. We have completely reworked BrowserCMS to work with Rails 3 and Ruby 1.9.2. This release is a 'beta', so that folks can start testing against it. This is especially important for module authors, as any modules need to be upgraded to work with Rails 3 as well. Our next steps will be to collect feedback for a final 3.3.0 release/release candidate. If we can get most of the 'core' modules (News, Blog, etc) updated and working, that will likely mean a final 3.3.0 release.
512

lib/tasks/cms.rake

Lines changed: 0 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -22,37 +22,8 @@ namespace :test do
2222
end
2323
end
2424

25-
# When Jeweler builds the gem, make sure the guides are also rebuilt.
26-
#task :build => ['cms:guides']
2725

2826
namespace :cms do
29-
30-
desc "Generate guides for the CMS"
31-
task :guides do
32-
require 'rubygems'
33-
34-
gem "actionpack", '>= 2.3'
35-
require "action_controller"
36-
require "action_view"
37-
38-
gem 'RedCloth', '>= 4.1.1'
39-
require 'redcloth'
40-
41-
$: << File.join(File.dirname(__FILE__), '../../doc/guides')
42-
43-
module CmsGuides
44-
autoload :Generator, "cms_guides/generator"
45-
autoload :Indexer, "cms_guides/indexer"
46-
autoload :Helpers, "cms_guides/helpers"
47-
autoload :TextileExtensions, "cms_guides/textile_extensions"
48-
autoload :Levenshtein, "cms_guides/levenshtein"
49-
end
50-
51-
RedCloth.send(:include, CmsGuides::TextileExtensions)
52-
53-
CmsGuides::Generator.new.generate
54-
55-
end
5627

5728
desc "Rebuild the browsercms gem locally and install it, Useful for testing releases."
5829
task :gem => ["browsercms.gemspec", :build, :install]

todo_list.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
Start with:
22

3-
Guides don't build. (Look @ Rails 3)
43

54
Open Issues
65
===========
76
* SQLite3 #<ActiveRecord::StatementInvalid: Could not find table 'file_blocks'> warnings
87
* Mysql2 throws exceptions during generators (similar reason to previous)
98
* rake db:install - Get warnings about db already existing (with SQLite3)
10-
* Can we/should we convert the guides to Github wiki pages? Might be less work to maintain, along with more flexibility. Keep old URLs/redirect them.
119

1210
Gems to Publish (once its live)
1311
============

0 commit comments

Comments
 (0)