Skip to content

Commit ae9cffa

Browse files
committed
Rollback to 1.1.4
1 parent 5802d7b commit ae9cffa

File tree

536 files changed

+20592
-6789
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

536 files changed

+20592
-6789
lines changed

.autotest

Lines changed: 0 additions & 5 deletions
This file was deleted.

.gitignore

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,8 @@
1-
.rvmrc
2-
.ruby-version
3-
.ruby-gemset
4-
.rspec-local
51
config/database.yml
62
db/*.db
7-
spec/dummy/db/*
83
log/*.log
9-
spec/dummy/log/*
10-
spec/dummy/tmp/*
114
pkg
125
tmp/*
13-
spec/tmp/*
146
.DS_Store
157
.svn
168
TAGS
@@ -23,5 +15,5 @@ spec/datasets/tmp
2315
rerun.txt
2416
*.swp
2517
radiant-*.gem
18+
.rvmrc
2619
.bundle
27-
*.lock

.rspec

Lines changed: 0 additions & 3 deletions
This file was deleted.

.travis.yml

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,28 @@
11
rvm:
2-
- 2.3.4
2+
- 1.8.7
3+
- 1.9.3
4+
5+
branches:
6+
only:
7+
- master
8+
- 1.x
39

410
before_install:
5-
- rm -f Gemfile
6-
- gem install -v 1.17.3 bundler
11+
- gem install rubygems-update --version 1.8.26
12+
- update_rubygems --version=1.8.26
713

8-
before_script: bin/ci/before_script
14+
before_script: "./bin/ci/before_script"
915

10-
bundler_args: --without development
16+
bundler_args: ''
1117

12-
script: bundle exec rake spec
18+
script: "bundle exec rake spec --trace"
1319

1420
notifications:
1521
recipients:
1622
23+
24+
1725
irc: "irc.freenode.org#radiantcms"
1826

1927
env:
20-
- DB=mysql
21-
- DB=postgres
22-
23-
gemfile:
24-
- rails40.gemfile
28+
- DB=sqlite

CHANGELOG.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
11
# Change Log
22

3-
# 2.x
3+
## 1.1.4
44

5-
* Remove r:navigation:url to be replaced with r:navigatin:path [Jim Gay]
6-
* Rename Radiant.config to Radiant.detail [Jim Gay]
7-
* Remove InheritableClassAttributes [Jim Gay]
8-
* Remove specific autotest support [Jim Gay]
9-
* Remove the notion of Radiant instances [Jim Gay]
5+
* Remove autotest support [Jim Gay]
6+
* Bump to Rails 2.3.18 [Jim Gay]
7+
* Update versions for several extensions in the generated Gemfile [Benny Degezelle]
8+
* Move snippet configuration into snippets extension [Benny Degezelle]
9+
* Get default gravatar image locally when fire walled [Andrew Vonderluft, Benny Degezelle]
10+
* Fix migration problems concerning allowed_children_cache [Andrew Vonderluft]
11+
* Prevent spec errors on generated extensions [Andrew Vonderluft]
1012

1113
## 1.1.3
1214

15+
* Move to Rails 2.3.17 [Jim Gay]
1316
* Bump rack dependency to 1.1.6 [Jim Gay]
1417
* Fixed errors from using rake 10.0.3 and old gem package tasks [Jim Gay]
1518

Gemfile

Lines changed: 25 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,25 @@
1-
source "https://rubygems.org"
21

3-
gemspec
42

5-
if ENV['TRAVIS']
6-
gemspec :development_group => :test
7-
gem "mysql"
8-
gem "pg"
9-
end
3+
source 'https://rubygems.org'
104

11-
group :development do
12-
gem "autotest-rails"
13-
end
14-
gem 'pry-debugger', :group => [:development, :test] if RUBY_VERSION < "2.0.0"
15-
gem 'pry-byebug', :group => [:development, :test] if RUBY_VERSION >= "2.0.0"
5+
# This is the minimum of dependency required to run
6+
# the radiant instance generator, which is (normally)
7+
# the only time the radiant gem functions as an
8+
# application. The instance has its own Gemfile, which
9+
# requires radiant and therefore pulls in every
10+
# dependency mentioned in radiant.gemspec.
11+
12+
gem "rails", "2.3.18"
13+
gem "sqlite3", "1.3.5", :group => [:development, :test], :platform => :ruby
14+
15+
# When radiant is installed as a gem you can run all of
16+
# its tests and specs from an instance. If you're working
17+
# on radiant itself and you want to run specs from the
18+
# radiant root directory, uncomment the lines below and
19+
# run `bundle install`.
20+
21+
# gemspec
22+
# gem "compass-rails", "~> 1.0.3"
1623

1724
# gem "radiant-archive-extension", "~> 1.0.7"
1825
# gem "radiant-clipped-extension", "~> 1.1.0"
@@ -24,3 +31,9 @@ gem 'pry-byebug', :group => [:development, :test] if RUBY_VERSION >= "2.0.0"
2431
# gem "radiant-site_templates-extension", "~> 1.0.4"
2532
# gem "radiant-smarty_pants_filter-extension", "~> 1.0.2"
2633
# gem "radiant-textile_filter-extension", "~> 1.0.4"
34+
35+
if ENV['TRAVIS']
36+
gemspec :development_group => :test
37+
gem "mysql"
38+
gem "pg"
39+
end

Gemfile.lock

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
actionmailer (2.3.18)
5+
actionpack (= 2.3.18)
6+
actionpack (2.3.18)
7+
activesupport (= 2.3.18)
8+
rack (~> 1.1.0)
9+
activerecord (2.3.18)
10+
activesupport (= 2.3.18)
11+
activeresource (2.3.18)
12+
activesupport (= 2.3.18)
13+
activesupport (2.3.18)
14+
rack (1.1.6)
15+
rails (2.3.18)
16+
actionmailer (= 2.3.18)
17+
actionpack (= 2.3.18)
18+
activerecord (= 2.3.18)
19+
activeresource (= 2.3.18)
20+
activesupport (= 2.3.18)
21+
rake (>= 0.8.3)
22+
rake (10.1.0)
23+
sqlite3 (1.3.5)
24+
25+
PLATFORMS
26+
java
27+
ruby
28+
29+
DEPENDENCIES
30+
rails (= 2.3.18)
31+
sqlite3 (= 1.3.5)

GemfileRails3

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
source :rubygems
2+
3+
# This is the minimum of dependency required to run
4+
# the radiant instance generator, which is (normally)
5+
# the only time the radiant gem functions as an
6+
# application. The instance has its own Gemfile, which
7+
# requires radiant and therefore pulls in every
8+
# dependency mentioned in radiant.gemspec.
9+
10+
gem "rails", "3.2.8"
11+
gem "sqlite3", "1.3.5", :group => [:development, :test], :platform => :ruby
12+
13+
# When radiant is installed as a gem you can run all of
14+
# its tests and specs from an instance. If you're working
15+
# on radiant itself and you want to run specs from the
16+
# radiant root directory, uncomment the lines below and
17+
# run `bundle install`.
18+
19+
gemspec
20+
# gem "compass-rails", "~> 1.0.3"
21+
22+
# gem "radiant-archive-extension", "~> 1.0.7"
23+
# gem "radiant-clipped-extension", "~> 1.1.0"
24+
# gem "radiant-debug-extension", "~> 1.0.2"
25+
# gem "radiant-exporter-extension", "~> 1.1.0"
26+
# gem "radiant-markdown_filter-extension", "~> 1.0.2"
27+
# gem "radiant-sheets-extension", "~> 1.1.0.alpha"
28+
# gem "radiant-snippets-extension", "~> 1.1.0.alpha"
29+
# gem "radiant-site_templates-extension", "~> 1.0.4"
30+
# gem "radiant-smarty_pants_filter-extension", "~> 1.0.2"
31+
# gem "radiant-textile_filter-extension", "~> 1.0.4"
32+
33+
if ENV['TRAVIS']
34+
gemspec :development_group => :test
35+
gem "mysql"
36+
gem "pg"
37+
end

README.md

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,17 @@
11
## Welcome to Radiant
22

3-
_Radiant is making major changes. The master branch may be broken._
4-
53
Radiant is a no-fluff, open source content management system designed for
64
small teams. It is similar to Textpattern or MovableType, but is a general
75
purpose content management system (not just a blogging engine).
86

9-
[![Build Status](https://secure.travis-ci.org/radiant/radiant.png?branch=master)](http://travis-ci.org/radiant/radiant)
10-
[![Dependency Status](https://gemnasium.com/radiant/radiant.png)](https://gemnasium.com/radiant/radiant)
7+
[![Build Status](https://secure.travis-ci.org/radiant/radiant.png?branch=1.x)](http://travis-ci.org/radiant/radiant)
118

129
Radiant features:
1310

1411
* An elegant user interface
1512
* The ability to arrange pages in a hierarchy
1613
* Flexible templating with layouts, snippets, page parts, and a custom tagging
17-
language (Radius: https://github.com/jlong/radius)
14+
language (Radius: http://radius.rubyforge.org)
1815
* A simple user management/permissions system
1916
* Support for Markdown and Textile as well as traditional HTML (it's easy to
2017
create other filters)
@@ -26,16 +23,16 @@ Radiant features:
2623

2724
## License
2825

29-
Radiant is released under the MIT license and is copyright (c) 2006-2014
30-
John W. Long, Sean Cribbs, and Jim Gay. A copy of the MIT license can be
31-
found in the LICENSE file.
26+
Radiant is released under the MIT license and is copyright (c) 2006-2009
27+
John W. Long and Sean Cribbs. A copy of the MIT license can be found in the
28+
LICENSE file.
3229

3330
## Installation and Setup
3431

3532
Radiant is a traditional Ruby on Rails application, meaning that you can
3633
configure and run it the way you would a normal Rails application.
3734

38-
See the [INSTALL](INSTALL.md) file for more details.
35+
See the INSTALL file for more details.
3936

4037
### Installation of a Prerelease
4138

@@ -45,7 +42,7 @@ Install the prerelease gem with the following command:
4542

4643
$ gem install radiant --prerelease
4744

48-
This will install the gem with the prerelease name, for example: ‘radiant-2.0.0.alpha’.
45+
This will install the gem with the prerelease name, for example: ‘radiant-0.9.0.rc2’.
4946

5047
### Upgrading an Existing Project to a newer version
5148

@@ -59,6 +56,12 @@ This will install the gem with the prerelease name, for example: ‘radiant-2.0.
5956

6057
3. Restart the web server
6158

59+
## Development Requirements
60+
61+
To run tests you will need to have the following gems installed:
62+
63+
gem install ZenTest rspec rspec-rails cucumber webrat nokogiri sqlite3-ruby
64+
6265
## Support
6366

6467
The best place to get support is on the mailing list:
@@ -76,6 +79,6 @@ http://wiki.github.com/radiant/radiant/
7679

7780
Enjoy!
7881

79-
--
80-
The Radiant Dev Team
82+
--
83+
The Radiant Dev Team
8184
http://radiantcms.org

Rakefile

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,12 @@
1-
require 'rubygems'
2-
require 'bundler/setup'
3-
require 'combustion'
1+
require File.join(File.dirname(__FILE__), 'config', 'boot')
42

5-
# Dir["#{RADIANT_ROOT}/lib/tasks/**/*.rake"].sort.each { |taskfile| load taskfile }
6-
# Radiant::ExtensionPath.rake_task_paths.each { |taskfile| load taskfile }
3+
require 'rake'
4+
require 'rake/testtask'
5+
require 'rdoc/task'
76

8-
# APP_RAKEFILE = File.expand_path("../spec/internal/Rakefile", __FILE__)
9-
# load 'rails/tasks/engine.rake'
7+
require 'tasks/rails'
108

11-
require 'rspec/core/rake_task'
12-
RSpec::Core::RakeTask.new(:spec)
13-
task default: :spec
14-
15-
Bundler::GemHelper.install_tasks
9+
unless Rake::Task.task_defined? "radiant:release"
10+
Dir["#{RADIANT_ROOT}/lib/tasks/**/*.rake"].sort.each { |taskfile| load taskfile }
11+
Radiant::ExtensionPath.rake_task_paths.each { |taskfile| load taskfile }
12+
end

0 commit comments

Comments
 (0)