From 1fa110cf268a6d3712ca57e77177caec6756772a Mon Sep 17 00:00:00 2001
From: floam ( This part assumes Windows users are using Cygwin. If you aren't,
+TortoiseSVN is a good client. ) Building on Windows is slightly complicated. You can either
+ use Microsoft Visual C++ or MinGW. MinGW works better currently;
+ both methods are described in the
+ readme
+ you already are supposed to have read. If you've come up with an improvement or fixed something, we'd love to hear about it!
+Firstly, try to make sure that the patch breaks less than it fixes. We don't
+require everyone to be decorated Geniuses, but do attempt to produce a patch that you've
+tested and at list sort-of understand what you're doing. The preferred way to get the ball rolling on a patch is to file a
+Bugzilla bug for your request with the patch attached
+to it and then send a notice to the mailing list about it. If you're really so lazy that
+you can't do this, we would prefer you at least mail
+it to zakk@icculus.org rather than not do anything at all. Please make it clear if the patch you're submitting for inclusion isn't yours, and point out where you found it and who authored it. This is so we know who to attribute If you know how to code, but never made a patch before, that's okay. Here's the 10¢
+survival guide to generating patches. If you checked the source code out with SVN,
+ the client makes it rather easy to generate patches. In fact it's a function
+ of the client itself. Once you've made a change in your checkout that is
+ not upstream, here is how you use it: If you didn't get the source code via SVN,
+ or for some reason that doesn't work for your situations, here's how to generate
+ them using the tried-and-trusted diff tool between
+ two files: For more information on diff, patch,
+and svn, read their respective man
+and info pages. For a more in-depth guide on Subversion take
+a look at the SVN
+Book.Check out and build from Subversion
+
+
+
+ svn co svn://svn.icculus.org/quake3/trunk quake3
+
+ (You can check out a specific revision with the -r option, like this:
+ svn co svn://svn.icculus.org/quake3/trunk quake3 -r100)
+
+
+ Linux and friends
+
+
+
+ COPYDIR="/opt/quake3" make copyfilesWindows
+ Pay your dues, contribute!
+blame to when it horribly
+breaks things credit to.Generating Patches
+
+
+From SVN
+
+
+
+ patch -p0 -i amazing_new_feature.patchFrom a tarball or other release
+
+
+
+ diff -u oldfile newfile > amazing_new_feature.patch
+ diff -Naur olddir newdir > amazing_new_features.patch
( This part assumes Windows users are using Cygwin. If you aren't, -TortoiseSVN is a good client. )
-Building on Windows is slightly complicated. You can either - use Microsoft Visual C++ or MinGW. MinGW works better currently; - both methods are described in the - readme - you already are supposed to have read.
-If you've come up with an improvement or fixed something, we'd love to hear about it! -Firstly, try to make sure that the patch breaks less than it fixes. We don't -require everyone to be decorated Geniuses, but do attempt to produce a patch that you've -tested and at list sort-of understand what you're doing.
- -The preferred way to get the ball rolling on a patch is to file a -Bugzilla bug for your request with the patch attached -to it and then send a notice to the mailing list about it. If you're really so lazy that -you can't do this, we would prefer you at least mail -it to zakk@icculus.org rather than not do anything at all.
- -Please make it clear if the patch you're submitting for inclusion isn't yours, and point out where you found it and who authored it. This is so we know who to attribute blame to when it horribly
-breaks things credit to.
If you know how to code, but never made a patch before, that's okay. Here's the 10¢ -survival guide to generating patches.
-If you checked the source code out with SVN, - the client makes it rather easy to generate patches. In fact it's a function - of the client itself. Once you've made a change in your checkout that is - not upstream, here is how you use it:
-If you didn't get the source code via SVN, - or for some reason that doesn't work for your situations, here's how to generate - them using the tried-and-trusted diff tool between - two files:
-For more information on diff, patch, -and svn, read their respective man -and info pages. For a more in-depth guide on Subversion take -a look at the SVN -Book.
diff --git a/web/include/thebrain.php b/web/include/thebrain.php index 7c19b68..791900b 100644 --- a/web/include/thebrain.php +++ b/web/include/thebrain.php @@ -17,7 +17,7 @@ header("Content-type: $content_type; charset=UTF-8"); $navlist = array( "home" => "Home", - "instruc" => "Instructions", + "help" => "Help", "status" => "Status" ); -- cgit v1.2.3