Changes between Version 14 and Version 15 of ropp_repository


Ignore:
Timestamp:
2015-10-21T14:05:27Z (9 years ago)
Author:
Dave Offiler
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ropp_repository

    v14 v15  
    88The repository for ROPP can be accessed via the Subversion server at the URL
    99{{{
    10 https://svn.grassaf.org/ropp/
     10https://svn.romsaf.org/ropp/
    1111}}}
    1212
     
    1717To [http://svnbook.red-bean.com/en/1.0/re04.html checkout] the latest development (trunk) versions:
    1818{{{
    19 svn checkout https://svn.grassaf.org/ropp/ropp_src/trunk  ./trunk
    20 svn checkout https://svn.grassaf.org/ropp/ropp_doc/trunk  ./trunk
    21 svn checkout https://svn.grassaf.org/ropp/ropp_test/trunk ./trunk
     19svn checkout https://svn.romsaf.org/ropp/ropp_src/trunk  ./trunk
     20svn checkout https://svn.romsaf.org/ropp/ropp_doc/trunk  ./trunk
     21svn checkout https://svn.romsaf.org/ropp/ropp_test/trunk ./trunk
    2222}}}
    2323This will check out the source code (with build support), documentation, and test folder, respectively to the local working directory.
     
    2727To checkout the older (tagged) release versions:
    2828{{{
    29 svn checkout https://svn.grassaf.org/ropp/ropp_src/tags/<ver>  ./<ver>
    30 svn checkout https://svn.grassaf.org/ropp/ropp_doc/tags/<ver>  ./<ver>
    31 svn checkout https://svn.grassaf.org/ropp/ropp_test/tags/<ver> ./<ver>
     29svn checkout https://svn.romsaf.org/ropp/ropp_src/tags/<ver>  ./<ver>
     30svn checkout https://svn.romsaf.org/ropp/ropp_doc/tags/<ver>  ./<ver>
     31svn checkout https://svn.romsaf.org/ropp/ropp_test/tags/<ver> ./<ver>
    3232}}}
    33 This 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.
     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. 8.0, 8.1, etc.
    3434
    3535=== Tags ===
     
    4141Developments to ROPP should be made from, and committed to, a [http://svnbook.red-bean.com/en/1.0/ch04.html#svn-ch-4-sect-1 branch] rather than directly to the latest trunk version. This allows changes to be tested before merging the required changes back into the trunk. The trunk therefore represents a stable 'next potential release' state for ROPP. Branches can be temporary and might be for working on resolving a specific Trac Ticket.
    4242
    43 Instructions for developers working with branches in ROPP are available [https://trac.grassaf.org/ropp/wiki/ropp_branches here].
     43Instructions for developers working with branches in ROPP are available [https://trac.romsaf.org/ropp/wiki/ropp_branches here].
    4444
    4545=== Preparation for building ===
     
    6565{{{
    6666autoreconf
    67 ropp_configure_<compiler>_<architecture>
     67../configure/ropp_configure_<compiler>_<os>
    6868}}}
    6969
     
    7171=== Writing documentation ===
    7272
    73 A number of word and latex template files are contained in the repository. To access these to your local machine, you can use:
     73A number of !LibreOffice, MS Word and LaTeX template files are contained in the repository. To access these to your local machine, you can use:
    7474{{{
    75 svn co https://svn.grassaf.org/ropp/ropp_doc/trunk/ropp_templates ./ropp_templates
     75svn co https://svn.romsaf.org/ropp/ropp_doc/trunk/ropp_templates ./ropp_templates
    7676}}}
     77The {{{odt/}}}, {{{tex/}} {{{word/}}} subdirectories contain the latest versions of the document templates tailored for ROPP.
    7778
    78 The word/ directory contains the latest versions of the Word document templates.
     79The {{{tex/}}} and {{{bibtex/}}} directories contain the necessary LaTeX class files and logo image files for generating documents using LaTeX. The ROM SAF report templates include versions for latex (''rsr.cls'') and {{{pdflatex}}} (''rsr_pdf.cls''). The other directories under {{{ropp_doc/trunk}}} contain example Makefiles and top level template files for reference.
    7980
    80 The 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.
     81The following illustrates how you might add new ROM SAF report document files to the repository.
    8182
    82 The following illustrates how you might add new GRAS SAF report document files to the repository.
    83 
    84 1. Checkout the current GRAS SAF reports repository
     831. Checkout the current ROM SAF reports repository
    8584{{{
    86 svn co https://svn.grassaf.org/ropp/ropp_doc/trunk/grassaf_report ./grassaf_report
     85svn co https://svn.romsaf.org/ropp/ropp_doc/trunk/romsaf_report ./romsaf_report
    8786}}}
    88 2. Add a new directory to contain your new GRAS SAF report, and write it! Use the existing reports for templates of setups, Makefiles etc.
     872. Add a new directory to contain your new ROM SAF report, and write it! Use the existing reports for templates of setups, Makefiles etc.
    8988{{{
    90 mkdir MyNewGSR/
     89mkdir MyNewRSR/
    9190...add report files, figures etc to your local working version
    9291}}}
    93923. Commit your updates back to the repository
    9493{{{
    95 svn add MyNewGSR
     94svn add MyNewRSR
    9695svn commit
    9796}}}