diff --git a/AUTHORS.rst b/AUTHORS.rst new file mode 100644 index 0000000..9064ef9 --- /dev/null +++ b/AUTHORS.rst @@ -0,0 +1,20 @@ +Hyde is developed and maintained by `Lakshmi Vyasarajan`_. The new version of +Hyde is sponsored by `Flowplayer`_ and `Tero Piirainen`_. + +This version would not exist without the contributions from the +`original hyde project`_. + +Contributors +------------ + +- |demizer|_ + + * General documentation fixes. + +.. _Lakshmi Vyasarajan: http://twitter.com/lakshmivyas +.. _Flowplayer: http://flowplayer.org +.. _Tero Piirainen: http://cloudpanic.com +.. _original hyde project: http://github.com/lakshmivyas/hyde +.. |demizer| replace:: Jesus Alvarez +.. _demizer: http://demizerone.com + diff --git a/CHANGELOG.rst b/CHANGELOG.rst new file mode 100644 index 0000000..9cecb64 --- /dev/null +++ b/CHANGELOG.rst @@ -0,0 +1,6 @@ +Version 0.8.4 +============= + +Thanks to @demizer + +* Various documentation fixes. diff --git a/README.rst b/README.rst new file mode 100644 index 0000000..748dc14 --- /dev/null +++ b/README.rst @@ -0,0 +1,43 @@ +Version 0.8.3 + +Welcome to the Hyde Documentation! +================================== + +Here you will find the source for the hyde documentation. Fork it if you want to +help out, or study it to learn more about how hyde works. + +Prerequisites +------------- +- `less`_ + The less plugin to hyde is used to generate the CSS for the hyde + documentation. + +Generating +------------ +:: + + hyde -s ~/docs gen +The documentation will be created in the 'deploy' directory. + +Serving the docs +---------------- +:: + + hyde -s ~/docs serve + open http://localhost:8080 + +Now what? +------------ +- Explore +- Add stuff +- Fix things that are broken +- See the TODO for guidance + +Links +----- +1. `Changelog`_ +2. `Authors`_ + +.. _less: http://lesscss.org/ +.. _Authors: https://github.com/hyde/docs/blob/master/AUTHORS.rst +.. _Changelog: https://github.com/hyde/docs/blob/master/CHANGELOG.rst diff --git a/content/contribute.html b/content/contribute.html new file mode 100644 index 0000000..e69de29 diff --git a/content/index.html b/content/index.html index 6a4cc4f..f68fa51 100644 --- a/content/index.html +++ b/content/index.html @@ -88,17 +88,17 @@ [Jekyll]: http://jekyllrb.com [evil twin]: http://ringce.com/blog/2009/introducing_hyde [Jinja2]: {{ links.jinja2 }} -[object model]: [[template/#variables]] +[object model]: [[templates/#variables]] [hyde]: https://github.com/hyde/hyde -[install]: [[install]] -[metadata]: [[plugins/metadata]] +[install]: [[install.html]] +[metadata]: [[plugins/metadata.html]] [plugins]: [[plugins]] [python]: http://python.org -[server]: [[server]] -[sorter]: [[plugins/sorter]] +[server]: [[server.html]] +[sorter]: [[plugins/sorter.html]] [static cons]: [[static/#cons]] -[static pros]: [static/#pros]] -[forking]: [[contribute]] -[commandline]: [[commands]] +[static pros]: [[static/#pros]] +[forking]: [[contribute.html]] +[commandline]: [[commands.html]] [pypi]: http://pypi.python.org/pypi/hyde [templ]: [[templates]] diff --git a/content/media/css/inc/mixins.less b/content/media/css/inc/mixins.less index c305fcf..5fa134f 100644 --- a/content/media/css/inc/mixins.less +++ b/content/media/css/inc/mixins.less @@ -96,7 +96,8 @@ a img { .opacity(@op:100) { - filter:alpha(opacity=@op); + // Work around, see https://github.com/cloudhead/less.js/issues/133 + filter: e(%("alpha(opacity=%s)", @op)); -moz-opacity:@op/100; -khtml-opacity:@op/100; opacity:@op/100; @@ -153,4 +154,4 @@ a img { -o-transform: translate(@move_x, @move_y); -ms-transform:translate(@move_x, @move_y); transform: translate(@move_x, @move_y); -} \ No newline at end of file +} diff --git a/site.yaml b/site.yaml index b9bd888..021a625 100644 --- a/site.yaml +++ b/site.yaml @@ -73,7 +73,7 @@ grouper: name: templating guide less: - app: ~/local/bin/lessc + app: /usr/bin/lessc markdown: extensions: - def_list