Changes between Version 13 and Version 14 of ropp_repository


Ignore:
Timestamp:
2011-09-10T12:08:13Z (13 years ago)
Author:
Dave Offiler
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ropp_repository

    v13 v14  
    11== The ROPP Repository ==
    22
    3 The whole ROPP development system is divided into four areas:
     3The whole ROPP development system is divided into three areas:
    44 * '''ropp_src'''   : Deliverable code & supporting development system
    5  * '''ropp_bld'''   : Configure & build support scripts, distro builder etc
    65 * '''ropp_doc'''   : User and project documentation
    76 * '''ropp_test'''  : Test Folder (test system and its results)
     
    1918{{{
    2019svn checkout https://svn.grassaf.org/ropp/ropp_src/trunk  ./trunk
    21 svn checkout https://svn.grassaf.org/ropp/ropp_bld/trunk  ./trunk
    2220svn checkout https://svn.grassaf.org/ropp/ropp_doc/trunk  ./trunk
    2321svn checkout https://svn.grassaf.org/ropp/ropp_test/trunk ./trunk
    2422}}}
    25 This will check out the source code, build support, documentation, and test folder, respectively to the local working directory.
     23This will check out the source code (with build support), documentation, and test folder, respectively to the local working directory.
    2624
    2725'''Checking out old release versions'''
     
    3028{{{
    3129svn checkout https://svn.grassaf.org/ropp/ropp_src/tags/<ver>  ./<ver>
    32 svn checkout https://svn.grassaf.org/ropp/ropp_bld/tags/<ver>  ./<ver>
    3330svn checkout https://svn.grassaf.org/ropp/ropp_doc/tags/<ver>  ./<ver>
    3431svn checkout https://svn.grassaf.org/ropp/ropp_test/tags/<ver> ./<ver>
    3532}}}
    36 This will check out the tagged source code, build support, documentation, and test folder, respectively to the local working directory. Here, <ver> is the tagged release version, e.g. 1.1, 2.0 etc. Note that {{{ropp_bld}}} only has tags set
    37 from ROPP release version 2.0.
     33This will check out the tagged source code, documentation, and test folder, respectively to the local working directory. Here, <ver> is the tagged release version, e.g. 4.1, 5.0 etc.
    3834
    3935=== Tags ===
    4036
    41 A [http://svnbook.red-bean.com/en/1.0/ch04s06.html tag] is just [http://svnbook.red-bean.com/en/1.0/re07.html copy] or snapshot of a a particular revision of the repository. In the case of ROPP, a copy taken from the head of trunk at the time that the distribution files for a release were built. You could just as well checkout the revision number instead, but a tag is easier to remember!
     37A [http://svnbook.red-bean.com/en/1.0/ch04s06.html tag] is just [http://svnbook.red-bean.com/en/1.0/re07.html copy] or snapshot of a a particular revision of the repository. In the case of ROPP, a copy taken from the head of trunk at the time that the distribution files for a release were built. You could just as well checkout the revision number instead, but a tag is easier to remember.
    4238
    4339== Branches ==
     
    7773A number of word and latex template files are contained in the repository. To access these to your local machine, you can use:
    7874{{{
    79 svn co https://svn.grassaf.org/ropp/ropp_doc/trunk/ropp_templates
     75svn co https://svn.grassaf.org/ropp/ropp_doc/trunk/ropp_templates ./ropp_templates
    8076}}}
    8177
    8278The word/ directory contains the latest versions of the Word document templates.
    83 
    84 
    8579
    8680The 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.
     
    90841. Checkout the current GRAS SAF reports repository
    9185{{{
    92 svn co https://svn.grassaf.org/ropp/ropp_doc/trunk/grassaf_report
     86svn co https://svn.grassaf.org/ropp/ropp_doc/trunk/grassaf_report ./grassaf_report
    9387}}}
    94882. Add a new directory to contain your new GRAS SAF report, and write it! Use the existing reports for templates of setups, Makefiles etc.