rust/src/doc
bors dbb0cee682 auto merge of #16474 : MatejLach/rust/cargorun_fix, r=steveklabnik
This fixes #16451.

While moving things around, I also removed a bunch of unnecessary whitespace, however I can put it back in if that's undesired. 

Thanks.
2014-08-14 23:01:17 +00:00
..
complement-bugreport.md
complement-design-faq.md Rename Share to Sync 2014-08-07 08:54:38 -07:00
complement-lang-faq.md auto merge of #16183 : brson/rust/doctitles, r=alexcrichton 2014-08-02 17:21:09 +00:00
complement-project-faq.md doc: Make sure all doc titles say 'Rust'. #12466 2014-08-01 17:32:24 -07:00
favicon.inc
footer.inc
full-toc.inc
guide-container.md docs: Fix typo in container guide. 2014-07-27 10:14:44 +02:00
guide-ffi.md Minor changes to rust.md, and guide-ffi.md. 2014-08-12 03:13:50 -04:00
guide-lifetimes.md Remove incorrect example 2014-07-31 11:50:24 -07:00
guide-macros.md
guide-pointers.md Fix typo 2014-08-10 14:12:15 +12:00
guide-runtime.md guide-runtime.md: remove redundant verb 2014-08-12 07:39:53 +02:00
guide-strings.md doc: Make sure all doc titles say 'Rust'. #12466 2014-08-01 17:32:24 -07:00
guide-tasks.md
guide-testing.md guide-testing.md: add auxiliary verb 2014-08-12 07:39:56 +02:00
guide-unsafe.md guide-unsafe.md: fix wording 2014-08-12 21:30:02 +02:00
guide.md auto merge of #16474 : MatejLach/rust/cargorun_fix, r=steveklabnik 2014-08-14 23:01:17 +00:00
index.md doc: Make sure all doc titles say 'Rust'. #12466 2014-08-01 17:32:24 -07:00
intro.md doc: Fix the 30-minute intro to use += operator. 2014-08-05 02:02:41 +08:00
not_found.md
po4a.conf Remove obsolete Japanese translation for a while. 2014-07-25 06:51:32 +09:00
README.md
rust.css Fix API docs css reversing elements that it shouldn't 2014-08-01 04:01:29 -04:00
rust.md libsyntax: Accept use foo as bar; in lieu of use bar as foo; 2014-08-14 13:24:50 -07:00
rustdoc.md
tutorial.md Update docs to use HTTPS for static.rust-lang.org addresses 2014-08-11 12:31:16 -07:00
version_info.html.template

Dependencies

Pandoc, a universal document converter, is required to generate docs as HTML from Rust's source code.

po4a is required for generating translated docs from the master (English) docs.

GNU gettext is required for managing the translation data.

Building

To generate all the docs, just run make docs from the root of the repository. This will convert the distributed Markdown docs to HTML and generate HTML doc for the 'std' and 'extra' libraries.

To generate HTML documentation from one source file/crate, do something like:

rustdoc --output-dir html-doc/ --output-format html ../src/libstd/path.rs

(This, of course, requires a working build of the rustdoc tool.)

Additional notes

To generate an HTML version of a doc from Markdown manually, you can do something like:

pandoc --from=markdown --to=html5 --number-sections -o rust.html rust.md

(rust.md being the Rust Reference Manual.)

The syntax for pandoc flavored markdown can be found at: http://johnmacfarlane.net/pandoc/README.html#pandocs-markdown

A nice quick reference (for non-pandoc markdown) is at: http://kramdown.rubyforge.org/quickref.html

Notes for translators

Notice: The procedure described below is a work in progress. We are working on translation system but the procedure contains some manual operations for now.

To start the translation for a new language, see po4a.conf at first.

To generate .pot and .po files, do something like:

po4a --copyright-holder="The Rust Project Developers" \
    --package-name="Rust" \
    --package-version="0.11.0" \
    -M UTF-8 -L UTF-8 \
    src/doc/po4a.conf

(the version number must be changed if it is not 0.11.0 now.)

Now you can translate documents with .po files, commonly used with gettext. If you are not familiar with gettext-based translation, please read the online manual linked from http://www.gnu.org/software/gettext/ . We use UTF-8 as the file encoding of .po files.

When you want to make a commit, do the command below before staging your change:

for f in src/doc/po/**/*.po; do
    msgattrib --translated $f -o $f.strip
    if [ -e $f.strip ]; then
       mv $f.strip $f
    else
       rm $f
    fi
done

This removes untranslated entries from .po files to save disk space.