Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hyde docs minor fixes. #6

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
@@ -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

6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Version 0.8.4
=============

Thanks to @demizer

* Various documentation fixes.
43 changes: 43 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
@@ -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
Empty file added content/contribute.html
Empty file.
16 changes: 8 additions & 8 deletions content/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -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]]
5 changes: 3 additions & 2 deletions content/media/css/inc/mixins.less
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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);
}
}
2 changes: 1 addition & 1 deletion site.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ grouper:
name: templating guide

less:
app: ~/local/bin/lessc
app: /usr/bin/lessc
markdown:
extensions:
- def_list
Expand Down