forked from minad/olelo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
LICENSE, AUTHORS added, README updated, made dependencies more optional
- Loading branch information
Daniel Mendler
committed
Feb 10, 2009
1 parent
dfac4a0
commit 4fb60d8
Showing
4 changed files
with
97 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Originally by Simon Rozet (http://atonie.org/2008/02/git-wiki) | ||
|
||
Modified by: | ||
- Jesse Newland (http://jnewland.com/) - http auth | ||
- Alex Payne (http://www.al3x.net) | ||
- Jesse Andrews (http://www.overstimulate.com) | ||
- Timoni Grone (http://www.timoni.org) - stylesheet and design aid | ||
- Scott Chacon (http://jointheconversation.org) - ruby-git migration | ||
- Daniel Mendler - code restructuring, support for hierarchical repositories, multiple render engines |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
The MIT License | ||
|
||
Copyright (c) 2009 Daniel Mendler | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
THE SOFTWARE. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,43 @@ | ||
README | ||
====== | ||
|
||
WARNING: This is an fork of the original git-wiki by [SR](http://github.com/sr/git-wiki). It is currently undocumented and not yet usable. | ||
Git-Wiki is a a wiki that stores pages in a git repository. | ||
|
||
Installation | ||
------------ | ||
|
||
Run with `./run.ru -sthin -p4567` and point your browser at <http://localhost:4567>. | ||
It automatically creates a repository in the directory '.wiki'. | ||
|
||
Dependencies | ||
------------ | ||
|
||
- [Sinatra][] | ||
- [ruby-git][] | ||
- [HAML][] | ||
- [RubyPants][] | ||
|
||
Optional Dependencies | ||
--------------------- | ||
|
||
- [RubyPants][] to fix puncation | ||
- [Pygments][] for syntax highlighting | ||
|
||
Dependencies for page rendering | ||
------------------------------- | ||
|
||
- [creole][] for creole wikitext rendering | ||
- [RDiscount][] for markdown rendering | ||
- [RedCloth][] for textile rendering | ||
|
||
At least one of the renderers should be installed. | ||
|
||
[Sinatra]: http://www.sinatrarb.com | ||
[ruby-git]: http://github.com/schacon/ruby-git | ||
[HAML]: http://haml.hamptoncatlin.com | ||
[RDiscount]: http://github.com/rtomayko/rdiscount | ||
[RedCloth]: http://whytheluckystiff.net/ruby/redcloth/ | ||
[RubyPants]: http://chneukirchen.org/blog/static/projects/rubypants.html | ||
[creole]: http://github.com/larsch/creole | ||
[pygments]: http://pygments.org/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters