Merge pull request #652 from simonista/update-references

Update references to new project location
This commit is contained in:
bootstraponline
2013-03-15 15:04:33 -07:00
5 changed files with 13 additions and 13 deletions
+9 -9
View File
@@ -1,8 +1,8 @@
gollum -- A wiki built on top of Git gollum -- A wiki built on top of Git
==================================== ====================================
[![Build Status](https://secure.travis-ci.org/github/gollum.png?branch=master)](http://travis-ci.org/github/gollum) [![Build Status](https://secure.travis-ci.org/gollum/gollum.png?branch=master)](http://travis-ci.org/gollum/gollum)
[![Dependency Status](https://gemnasium.com/github/gollum.png)](https://gemnasium.com/github/gollum) [![Dependency Status](https://gemnasium.com/gollum/gollum.png)](https://gemnasium.com/gollum/gollum)
## DESCRIPTION ## DESCRIPTION
@@ -358,7 +358,7 @@ As an extra feature, you can syntax highlight a file from your repository, allow
you keep some of your sample code in the main repository. The code-snippet is you keep some of your sample code in the main repository. The code-snippet is
updated when the wiki is rebuilt. You include github code like this: updated when the wiki is rebuilt. You include github code like this:
```html:github/gollum/master/test/file_view/1_file.txt``` ```html:gollum/gollum/master/test/file_view/1_file.txt```
This will make the builder look at the **github user**, in the **gollum project**, This will make the builder look at the **github user**, in the **gollum project**,
in the **master branch**, at path **test/file_view/1_file.txt**. It will be in the **master branch**, at path **test/file_view/1_file.txt**. It will be
@@ -426,7 +426,7 @@ By default, internal wiki links are all absolute from the root. To specify a dif
Note that base_path just modifies the links. To map gollum to a non-root location: Note that base_path just modifies the links. To map gollum to a non-root location:
- Use the gollum binary: `gollum path/to/wiki --base-path mywiki` - Use the gollum binary: `gollum path/to/wiki --base-path mywiki`
- Define config.ru with `map`. See [#532](https://github.com/github/gollum/issues/532) for an example. - Define config.ru with `map`. See [#532](https://github.com/gollum/gollum/issues/532) for an example.
> :base_path - String base path for all Wiki links. > :base_path - String base path for all Wiki links.
> >
@@ -546,7 +546,7 @@ Note that filenames on windows must not contain any of the following characters
## CONFIG FILE ## CONFIG FILE
Gollum optionally takes a `--config file`. See [config.rb](https://github.com/github/gollum/blob/master/config.rb) for an example. Gollum optionally takes a `--config file`. See [config.rb](https://github.com/gollum/gollum/blob/master/config.rb) for an example.
## CUSTOM CSS ## CUSTOM CSS
@@ -554,9 +554,9 @@ The `--css` flag will inject `custom.css` from the root of your git repository i
## CONTRIBUTE ## CONTRIBUTE
If you'd like to hack on Gollum, start by forking my repo on GitHub: If you'd like to hack on Gollum, start by forking the repo on GitHub:
http://github.com/github/gollum http://github.com/gollum/gollum
To get all of the dependencies, install the gem first. The best way to get To get all of the dependencies, install the gem first. The best way to get
your changes merged back into core is as follows: your changes merged back into core is as follows:
@@ -569,7 +569,7 @@ your changes merged back into core is as follows:
1. Do not change the version number, I will do that on my end 1. Do not change the version number, I will do that on my end
1. If necessary, rebase your commits into logical chunks, without errors 1. If necessary, rebase your commits into logical chunks, without errors
1. Push the branch up to GitHub 1. Push the branch up to GitHub
1. Send a pull request to the github/gollum project. 1. Send a pull request to the gollum/gollum project.
## RELEASING ## RELEASING
x.y.z x.y.z
@@ -585,7 +585,7 @@ your changes merged back into core is as follows:
## BUILDING THE GEM FROM MASTER ## BUILDING THE GEM FROM MASTER
$ gem uninstall -aIx gollum $ gem uninstall -aIx gollum
$ git clone https://github.com/github/gollum.git $ git clone https://github.com/gollum/gollum.git
$ cd gollum $ cd gollum
gollum$ rake build gollum$ rake build
gollum$ gem install --no-ri --no-rdoc pkg/gollum*.gem gollum$ gem install --no-ri --no-rdoc pkg/gollum*.gem
+1 -1
View File
@@ -14,7 +14,7 @@ Gem::Specification.new do |s|
s.authors = ["Tom Preston-Werner", "Rick Olson"] s.authors = ["Tom Preston-Werner", "Rick Olson"]
s.email = 'tom@github.com' s.email = 'tom@github.com'
s.homepage = 'http://github.com/github/gollum' s.homepage = 'http://github.com/gollum/gollum'
s.require_paths = %w[lib] s.require_paths = %w[lib]
@@ -23,7 +23,7 @@ http://creativecommons.org/licenses/by-sa/3.0/legalcode.txt
--- ---
Gollum (MIT License) Gollum (MIT License)
https://github.com/github/gollum/blob/master/LICENSE https://github.com/gollum/gollum/blob/master/LICENSE
--- ---
@@ -4,7 +4,7 @@
Uses code/assets from: Uses code/assets from:
0. [ace](https://github.com/ajaxorg/ace) 0. [ace](https://github.com/ajaxorg/ace)
0. [gollum](https://github.com/github/gollum) 0. [gollum](https://github.com/gollum/gollum)
0. [jquery](https://github.com/jquery/jquery) 0. [jquery](https://github.com/jquery/jquery)
0. [sizzle](https://github.com/jquery/sizzle) 0. [sizzle](https://github.com/jquery/sizzle)
0. [notepages](https://github.com/fivesixty/notepages) 0. [notepages](https://github.com/fivesixty/notepages)
+1 -1
View File
@@ -460,7 +460,7 @@ module Gollum
# Acceptable formats: # Acceptable formats:
# ```language:local-file.ext``` # ```language:local-file.ext```
# ```language:/abs/other-file.ext``` # ```language:/abs/other-file.ext```
# ```language:github/gollum/master/somefile.txt``` # ```language:gollum/gollum/master/somefile.txt```
# #
######################################################################### #########################################################################