5 This is the project that generates the static ardour manual website available at [manual.ardour.org](http://manual.ardour.org).
7 The site is built using ruby (I use 1.9[.3]) and [Jekyll](https://github.com/mojombo/jekyll) (a ruby gem). You should be able to just install ruby and then `gem install jekyll` to get it up and running.
9 `import.rb` (which gets the content from drupal) requires the `nokogiri` gem, but there are no other dependencies for the jekyll part (just the things required by jekyll itself).
18 This will generate the final html and start a local webserver.
22 It should then be available at [localhost:4000](http://localhost:4000)
24 ### Import content from drupal
26 This will pull the content from the [ardour drupal manual](http://ardour.org/manual/ardour3) and turn it into the format used in `_manual/`. You shouldn't really need to run this.
33 ### Upload static site to live server
35 Once the content has been built (using jekyll) you can put it live with this (assuming your ssh key has been put on the server):
39 ## Strucuture of the content
41 There are 2 different types of content:
43 - special `_manual` content
46 ### Special `_manual` content
48 This is content that ends up as part of the tree on the left.
50 The _raw_ content is in `_manual/` directory and has a naming convention as follows:
52 # content for a page at http://manual.ardour.org/<slug>/
54 <ordering>_<slug>.<html|md|textile>
57 | | extension is removed later
59 | ends up as part of URL
61 only used for ordering
64 # a folder for subcontent is like this
68 # more things can then go in here for http://manual.ardour.org/<slug>/<slug2>/
70 <ordering>_<slug>/<ordering2>_<slug2>.html
75 | this file | appears at url |
76 |--------------------------------------------------------|
77 | _manual/01_main.html | /main/ |
78 | _manual/01_main/01_subpage.html | /main/subpage/ |
83 This is anything else, css files, images, fixed pages, layouts. This content lives in the `source` directory.
85 If you added `source/images/horse.png` is would be available at the url `/images/horse.png` after publishing it.
87 Content processing is applied to normal content if it has the correct header as described below.
92 Three types of content can have special processing done.
94 - `.html` liquid/HTML files
95 - `.md` markdown files
96 - `.textile` textile files
98 All files to be processed should also have a special header at the top too:
102 title: Some Very Wordy and Expressive Title
103 menu_title: Some Title
106 <p>My Actual Content</p>
108 The `title` field will end up as an `h1` in the right panel. The `menu_title` is what is used in the menu tree on the left (if not preset it will default to using `title`).
112 These are almost normal html, but extended with [Liquid templates](http://liquidmarkup.org/). There are a couple of special tags created for this project.
114 - `{% tree %}` is what shows the manual structure in the left column
115 - `{% children %}` shows the immediate list of children for a page
119 Much of the functionality comes from `_plugins/manual.rb` - it takes the _manual format_ (contained in `_manual/`) and mushes it around a bit into a tmp directory before letting jekyll do it's normal thing. It's all hooked into the jekyll command so no special actions are required.
121 This is to enable the directory tree to be understood, child page lists to be constructed, clean URLs, and the correct ordering of pages maintained.
125 To allow the clean URLs (no `.html` extension) _and_ to support simple hosting (no `.htaccess` or apache configuration required) each page ends up in it's own directory with an `index.html` page for the content.
127 E.g. `02_main/05_more/02_blah.html` after all processing is complete would end up in `_site/main/more/blah/index.html`.
129 The page format contained in the `_manual/` directory is different to the final rendered output (see special `_manual` content above) to make it simple to create content (you don't need to think about the `index.html` files).