NIH | National Cancer Institute | NCI Wiki  

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • To run from the Windows GUI: Create the following folder structure: gforge<YYMMDD><VERSION>nciscn<YYMMDD><VERSION>/protegegui/. From this location, right click, select 'SVN Checkout'. A window will appear asking for the source and target of files. Protégé files are located in GForgeNCI SVN, and can be checked out from: Code Blockhttps://gforgencisvn.nci.nih.gov/svnrootsvn/protegeguiImage Added
  • To run from command prompt on the server, navigate to /app/protégé/repo, and create the following directory gforge<YYMMDD><VERSION>ncisvn<YYMMDD><VERSION>/protegegui/, and run:
    Code Block
    svn co https://gforgencisvn.nci.nih.gov/svnrootsvn/protegegui
Note
titleNote

The above target will check out the entire Protege project. This can take up a good deal of space. If you wish to only checkout the Protege source code, you can use the following target:

Code Block
https://gforgencisvn.nci.nih.gov/svnrootsvn/protegegui/collaborativedevterminologytools/scripts/trunk/
  • There may be instances where you will need to modify a few targets within the branches tag to reflect changes in other projects. In this case, you must verify that the proper 'svn-url.properties file is being referenced in the build.xml file. Each build will hold 2 separate svn-url.properties files. One is usually the default, which builds from the trunk folder. There is also a customized file that will build from the branches folders. Example code snippets are below for each file:
    Code Block
    svn-url-trunk.properties (default)
    
    'ncitab.url=$nci.base.url/protegegui/*trunk*'
     ncitab.project=$projects/ncitab
    
    nciconcepthistory.url=$nci.base.url/protegehistory/NCIConceptHistory/*trunk*
    nciconcepthistory.project=$projects/nciprojecthistory
    
    ncievshistory.url=$nci.base.url/protegehistory/NCIEVSHistory/*trunk*
    ncievshistory.project=$projects/ncievshistory
    
    classification.url=$nci.base.url/classification/*trunk*
    classification.project=$projects/classification
    
    *svn-url-1.4.properties (customized)*
    
    ncitab.url=$nci.base.url/*nci-branches/1.4*/protegegui
    ncitab.project=$projects/ncitab
    
    nciconcepthistory.url=$nci.base.url/*nci-branches/1.4*/NCIConceptHistory
     nciconcepthistory.project=$projects/nciconcepthistory
    
    ncievshistory.url=$nci.base.url*/nci-branches/1.4*/NCIEVSHistory
    ncievshistory.project=$projects/ncievshistory
    
    classification.url=$nci.base.url/*nci-branches/1.4*/classification
    classification.project=$projects/classification

...