Skip to content

Commit

Permalink
Change website location to webgen.gettalong.org
Browse files Browse the repository at this point in the history
  • Loading branch information
gettalong committed Nov 11, 2013
1 parent a5aa817 commit 063180c
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,14 @@ makes authoring websites easier:

* No need to know the Ruby language for basic websites

The main documentation lives at <http://webgen.rubyforge.org/documentation/>.
The main documentation lives at <http://webgen.gettalong.org/documentation/>.


## Installation

webgen is written in Ruby, so you need the Ruby interpreter on your
system. You can get it from http://ruby-lang.org/. See
<http://webgen.rubyforge.org/installation.html> for more information.
<http://webgen.gettalong.org/installation.html> for more information.

You can install webgen via Rubygems:

Expand Down
8 changes: 4 additions & 4 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,11 @@ EOF
s.post_install_message = <<EOF
Thanks for choosing webgen! Here are some places to get you started:
* The webgen User Documentation at <http://webgen.rubyforge.org/documentation/>
* The webgen User Documentation at <http://webgen.gettalong.org/documentation/>
* The mailing list archive at <http://rubyforge.org/pipermail/webgen-users/>
* The webgen Wiki at <http://github.com/gettalong/webgen/wiki>
Have a look at <http://webgen.rubyforge.org/news.html> for a list of changes!
Have a look at <http://webgen.gettalong.org/news.html> for a list of changes!
Have fun!
Expand Down Expand Up @@ -145,7 +145,7 @@ EOF

s.author = 'Thomas Leitner'
s.email = '[email protected]'
s.homepage = "http://webgen.rubyforge.org"
s.homepage = "http://webgen.gettalong.org"
s.rubyforge_project = 'webgen'
end

Expand Down Expand Up @@ -188,7 +188,7 @@ EOF
rf.configure
rf.login

text = "Have a look at http://webgen.rubyforge.org/news.html for the release details!"
text = "Have a look at http://webgen.gettalong.org/news.html for the release details!"
rf.post_news('webgen', "webgen #{Webgen::VERSION} released", text)
puts "done"
end
Expand Down
2 changes: 1 addition & 1 deletion data/webgen/basic_website_template/ext/init.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# * For information on how to write extensions, have a look at the API
# documentation of webgen at
#
# http://webgen.rubyforge.org/documentation/reference/api/
# http://webgen.gettalong.org/documentation/reference/api/
#
# * Have a look at the API documentation of Webgen::BundlerLoader to see
# what methods are available in init.rb files.
Expand Down
2 changes: 1 addition & 1 deletion data/webgen/basic_website_template/webgen.config
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# The available configuration options can be found on the homepage in the Configuration Option
# Reference at
#
# http://webgen.rubyforge.org/documentation/reference/configuration_options.html
# http://webgen.gettalong.org/documentation/reference/configuration_options.html
#
# More info about YAML itself can be found at http://www.yaml.org/
#####
2 changes: 1 addition & 1 deletion data/webgen/passive_sources/templates/feed.template
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<link href="<%= context.node.feed_link %>" rel="alternate" />
<link href="<%= context.node.url %>" rel="self" />
<generator uri="http://webgen.rubyforge.org/" version="<%= Webgen::VERSION %>">
<generator uri="http://webgen.gettalong.org/" version="<%= Webgen::VERSION %>">
webgen - Webgen::PathHandler::Feed
</generator>
<updated><%= Time.now.xmlschema %></updated>
Expand Down
2 changes: 1 addition & 1 deletion lib/webgen/bundle/built-in/info.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1072,7 +1072,7 @@ options:
`URL` where `URL` is the base URL of the website
example:
config: |
website.base_url: http://webgen.rubyforge.org
website.base_url: http://webgen.gettalong.org
website.tmpdir:
summary: |
Expand Down
2 changes: 1 addition & 1 deletion man/man1/webgen.1
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ webgen's behaviour is affected by the following environment variables:
If no website is specified via the \-d option and this variable is set, webgen assumes that its
content is the webgen website directory that should be used.
.SH SEE ALSO
The webgen website, http://webgen.rubyforge.org/ for detailed information.
The webgen website, http://webgen.gettalong.org/ for detailed information.
.SH AUTHOR
webgen was written by Thomas Leitner <[email protected]>
.PP
Expand Down
2 changes: 1 addition & 1 deletion test/webgen/test_node.rb
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def test_initialize
check_proc.call(child, node, '/somename.html', 'somename.html', 'somename.de.html',
'/somename.de.html', 'de', {})

['http://webgen.rubyforge.org', 'c:\\test'].each_with_index do |abspath, index|
['http://webgen.gettalong.org', 'c:\\test'].each_with_index do |abspath, index|
cn = "test#{index}.html"
c = Webgen::Node.new(node, cn, abspath)
check_proc.call(c, node, abspath, cn, cn, '/' + cn, nil, {})
Expand Down

0 comments on commit 063180c

Please sign in to comment.