Changes between Version 12 and Version 13 of ropp_repository


Ignore:
Timestamp:
2010-05-14T08:35:51Z (14 years ago)
Author:
Huw Lewis
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ropp_repository

    v12 v13  
    7171ropp_configure_<compiler>_<architecture>
    7272}}}
     73
     74
     75=== Writing documentation ===
     76
     77A number of word and latex template files are contained in the repository. To access these to your local machine, you can use:
     78{{{
     79svn co https://svn.grassaf.org/ropp/ropp_doc/trunk/ropp_templates
     80}}}
     81
     82The word/ directory contains the latest versions of the Word document templates.
     83
     84
     85
     86The tex/ and bibtex/ directories contain the necessary latex class files and logo image files for generating documents using latex. The GRAS SAF report templates include versions for latex (gsr.cls) and pdflatex (gsr_pdf.cls). The other directories under ropp_doc/trunk contain example Makefiles and top level template files for reference.
     87
     88The following illustrates how you might add new GRAS SAF report document files to the repository.
     89
     901. Checkout the current GRAS SAF reports repository
     91{{{
     92svn co https://svn.grassaf.org/ropp/ropp_doc/trunk/grassaf_report
     93}}}
     942. Add a new directory to contain your new GRAS SAF report, and write it! Use the existing reports for templates of setups, Makefiles etc.
     95{{{
     96mkdir MyNewGSR/
     97...add report files, figures etc to your local working version
     98}}}
     993. Commit your updates back to the repository
     100{{{
     101svn add MyNewGSR
     102svn commit
     103}}}