Author: vanto
Date: Fri Nov 23 13:21:59 2012
New Revision: 1412878

URL: http://svn.apache.org/viewvc?rev=1412878&view=rev
Log:
no syntax hightlighting here please.

Modified:
    ode/site/trunk/content/source-code.mdtext

Modified: ode/site/trunk/content/source-code.mdtext
URL: 
http://svn.apache.org/viewvc/ode/site/trunk/content/source-code.mdtext?rev=1412878&r1=1412877&r2=1412878&view=diff
==============================================================================
--- ode/site/trunk/content/source-code.mdtext (original)
+++ ode/site/trunk/content/source-code.mdtext Fri Nov 23 13:21:59 2012
@@ -24,10 +24,12 @@ or via [Fisheye](http://fisheye6.cenqua.
 
 ODE source can be checked out anonymously with this command:
 
+    :::text
     $> svn checkout http://svn.apache.org/repos/asf/ode/trunk ode
 
 Once you have ODE checked out you can update the source by executing the 
following command from within the *ode* directory.
 
+    :::text
     $> svn update
 
 Once you've got the code you'll probably want to build it; for instructions 
see [Building ODE](building-ode.html).
@@ -37,6 +39,7 @@ Once you've got the code you'll probably
 
 For those users who are stuck behind a corporate firewall which is blocking 
http access to the Subversion repository, you can try to access it via HTTPS:
 
+    :::text
     $> svn checkout https://svn.apache.org/repos/asf/ode/trunk ode
 
 
@@ -59,6 +62,7 @@ Example : Edit the 'servers' file and ad
 
 If you make changes to ODE, and would like to contribute the to the project, 
you should create a patch and post it to the [ODE JIRA issue 
tracker](http://issues.apache.org/jira/browse/ODE).  To create a patch, simply 
execute the following command:
 
+    :::text
     $> svn diff > your-changes.patch
 
 
@@ -67,16 +71,19 @@ If you make changes to ODE, and would li
 
 Everyone can access the ODE Subversion repository via HTTPS, but ODE 
Committers must checkout the Subversion repository via HTTPS.
 
+    :::text
     $> svn checkout https://svn.apache.org/repos/asf/ode/trunk ode
 
 To commit changes to the repository, you must set your password on the Apache 
Subversion server.  To set your password, use ssh to connect to svn.apache.org, 
and enter the command '''svnpasswd'''. This will prompt you to enter a svn 
password of your choice (pick a safe password).  Now, now your are ready to 
commit changes using your username/password.  Execute the following command to 
commit your changes (svn will prompt you for your password)
 
+    :::text
     $> svn commit --username your-username
     Authentication realm: <https://svn.apache.org:443> ASF Committers
     Password for 'your-username': your-password
 
 You can also pass your password on the command line directly, but this is a 
security problem on multiuser unix computers (the command line arguments are 
available via the ps command).  Here is the command if you are Windows or a 
single user unix computer:
 
+    :::text
     $> svn commit --username your-username --password your-password
 
 Remember to replace 'your-username' and 'your-password' with your actual 
username and password on svn.apache.org.
@@ -147,6 +154,7 @@ Possible locations of your subversion cl
 
 To verify the auto-props processing is working you can test adding a file 
without committing it (Windows example):
 
+    :::text
     C:\projects\Ode>echo testdata>test-auto-props.xml
     
     C:\projects\Ode>svn add test-auto-props.xml
@@ -174,5 +182,5 @@ To verify the auto-props processing is w
 
 If you didn't get the results above, double check that the following line in 
the miscellany section is set and not commented out or set elsewhere.
 
+    :::ini
     enable-auto-props = yes
-


Reply via email to