=======
- nested pages
- double click page to edit
- instant preview while editing
- save and continue editing
- /pagename/edit is not /pagename?edit=1
- deleting pages
- restoring deleted pages
- moving pages
- shared sub-wiki's using submodules
- log / history / diff view
.merge_file_6bMFZW
git-wiki is a wiki that relies on git to keep pages' history and Sinatra to serve them. This geek brain overlay system aims to replace trac (wiki and ticket system), a CMS and sticky notes.
You can add images to /img
folder of your git repository. Subfolders
are also supported. At least gif, png and jpg supported - content type
is set automatically by Sinatra. You can reference the images then from
your wiki pages like ![My picture](/img/2009/my_picture.jpg)
No web interface at this time - use git commit
.
If your wiki page contains a markdown h1 header, then this one is used on the page. If not, then h1 is created out of the file name (as in original git-wiki).
Just write TODO or DONE at the beginning of a line with task you would like to remember.
You can include tasks from other wiki pages. So it is possible to have
one separate page per project, e.g. ProjectGitWiki, ProjectWorkflow and
to aggregate all coding tasks on one, say ContextCoding page with
INCLUDE project:GitWiki
, INCLUDE project:Workflow
.
You can also reference other contexts with INCLUDE context:AtHome
.
Recursion can be turned on with INCLUDE context:AtHome recursive:true
.
It is off by default.
You can also reference a source on the web. I prefer to manage my tasks
related to git-wiki development in this README file. So on my
ContextCoding page I have following reference: INCLUDE http://github.com/geekq/git-wiki/raw/master/README.markdown
- DONE: include via http
- DONE: recursive inclusion
- DONE: mark included tasks in special way
- DONE: switch recursion on or off
- DONE: avoid endless recursion by saving a list of visited nodes
- TODO: include a task list filtered by tagged value, e.g.
TASKS context:home
should list all the tasks for the specified context. - DONE: allow optional asterisk in front of TODO
- TODO: group included lists by project
- TODO: merge and resort tasks from subsequent INCLUDE statements
- DONE: gather all tasks from all pages with
INCLUDE wiki:all
- TODO: gather all the remaining (not referenced) tasks into
task inventory
page
For a hacker the wiki words is more a distraction than a help. Example: if I mention ActiveRecord, than it should not link to the wiki article ActiveRecord but appear as it is.
- DONE: do not rely on wiki words
- TODO: keyboard short cuts for edit and saving
- TODO: check dead links
- TODO: search engine
- IDEA: presentation system - markdown + my S5 alternative
- IDEA: support for attachments
- IDEA: support for deeper Wiki page folder structure
- IDEA: support for special programmed pages - via haml or liquid template engine
The following gems are required to run git-wiki:
mkdir ~/wiki && (cd ~/wiki && git init)
./run.ru -sthin -p4567
then just point your browser at http://0.0.0.0:4567/ and you're done. Enjoy!
mkdir ~/wiki && (cd ~/wiki && git init)
./run.ru -sthin -p4567
then just point your browser at http://0.0.0.0:4567/ and you're done. Enjoy!
.merge_file_6bMFZW
if you're using passenger you'll want to symlink git_wiki/public into the repo's root directory
- How to use vim to edit <textarea> in lynx
- WiGit think git-wiki except implemented in PHP
- ikiwiki is a wiki compiler supporting git
[...] the first wiki engine I'd consider worth using for my own projects.
Oh, it looks like Git Wiki may be the starting point for what I need...
What makes git-wiki so cool is because it is backed by a git store, you can clone your wiki just like you could any other git repository. I’ve always wanted a wiki that I could a.) pull offline when I didn’t have access to the Internets and b.) edit (perhaps in bulk) in my favorite text editor. git-wiki allows both.
Numerous people have written diff and merge systems for wikis; TWiki even uses RCS. If they used git instead, the repository would be tiny, and you could make a personal copy of the entire wiki to take on the plane with you, then sync your changes back when you're done.
Copyright (c) 2009 Vladimir Dobriakov, [email protected]
Copyright (c) Simon Rozet
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.