Difference between revisions of "OntoSVN"

From CompSemWiki
Jump to navigationJump to search
 
(One intermediate revision by the same user not shown)
Line 12: Line 12:
  
 
== first time usage ==
 
== first time usage ==
 
    # make a directory for frameset files
 
    mkdir frames
 
  
 
     # checkout frameset files from the repository
 
     # checkout frameset files from the repository
    cd frames
 
 
     svn co https://verbs.colorado.edu/svn/ontonotes/corpora/on/english/metadata/frames/
 
     svn co https://verbs.colorado.edu/svn/ontonotes/corpora/on/english/metadata/frames/
  
Line 27: Line 23:
  
 
     # add/edit a frameset file (<verb>.xml) in the directory
 
     # add/edit a frameset file (<verb>.xml) in the directory
     emacs <verb>.xml
+
     /home/verbs/shared/propbank/cornerstone/cs_en.sh
  
 
     # add the frameset file (<verb>.xml) to the repository,
 
     # add the frameset file (<verb>.xml) to the repository,

Latest revision as of 13:32, 26 October 2009

How to check out English Treebank files

   # checkout frameset files from the repository (first time only) BR
   cd /home/verbs/shared/cleardata/english BR
   svn co https://verbs.colorado.edu/svn/ontonotes/corpora/english/annotations/parse/ BR
   # update frameset files from the repository BR
   cd /home/verbs/shared/cleardata/english BR
   svn update BR

How to commit English Frameset files

first time usage

   # checkout frameset files from the repository
   svn co https://verbs.colorado.edu/svn/ontonotes/corpora/on/english/metadata/frames/

regular usage

   # update frameset files from the repository 
   cd frames
   svn update 
   # add/edit a frameset file (<verb>.xml) in the directory
   /home/verbs/shared/propbank/cornerstone/cs_en.sh
   # add the frameset file (<verb>.xml) to the repository,
   svn add <verb>.xml 
   # commit the changes
   svn commit -m "added/edited <verb>.xml"