browsercms 3.0.3 → 3.0.4
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/README.markdown +1 -0
- data/app/helpers/cms/menu_helper.rb +1 -1
- data/browsercms.gemspec +2 -2
- metadata +2 -2
data/README.markdown
CHANGED
|
@@ -42,6 +42,7 @@ The user documentation and guides for this version of the application can be fou
|
|
|
42
42
|
|
|
43
43
|
1. http://browsercms.org/doc/guides/html/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
44
|
2. http://browsercms.org/doc/app/index.html - The RDoc API documenation (locally at doc/app/index.html)
|
|
45
|
+
3. http://wiki.github.com/browsermedia/browsercms - The project wiki
|
|
45
46
|
|
|
46
47
|
## Modifying the source
|
|
47
48
|
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:
|
|
@@ -22,7 +22,7 @@ module Cms
|
|
|
22
22
|
# * <tt>:children</tt> - An array of hashes containing the child menu items. This is where the
|
|
23
23
|
# tree structure comes in.
|
|
24
24
|
def render_menu(options = {})
|
|
25
|
-
options[:items] ||= menu_items
|
|
25
|
+
options[:items] ||= menu_items(options)
|
|
26
26
|
options[:partial] ||= "cms/menus/menu"
|
|
27
27
|
options[:id] ||= "menu"
|
|
28
28
|
options[:class] ||= "menu"
|
data/browsercms.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{browsercms}
|
|
8
|
-
s.version = "3.0.
|
|
8
|
+
s.version = "3.0.4"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["BrowserMedia"]
|
|
12
|
-
s.date = %q{2009-11-
|
|
12
|
+
s.date = %q{2009-11-09}
|
|
13
13
|
s.email = %q{github@browsermedia.com}
|
|
14
14
|
s.extra_rdoc_files = [
|
|
15
15
|
"LICENSE.txt",
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: browsercms
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- BrowserMedia
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2009-11-
|
|
12
|
+
date: 2009-11-09 00:00:00 -05:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies: []
|
|
15
15
|
|