Revision: 295
Author:
joseph.r...@gmail.com
Date: Thu Nov 22 06:09:47 2012
Log: Deleted wiki page CodingConventions through web user interface.
http://code.google.com/p/jrugged/source/detail?r=295
Deleted:
/wiki/CodingConventions.wiki
=======================================
--- /wiki/CodingConventions.wiki Tue Mar 16 09:32:43 2010
+++ /dev/null
@@ -1,18 +0,0 @@
-#summary Coding conventions for the JRugged project
-
-= Basic Coding Conventions =
-
- * Unix-style (\n) line endings
- * Use tabs, not spaces for indentation
- * Format for an 80-character-wide display
- * Use curly braces for all if-then-else statements, except for a
one-liner with no "else" clause. Both of these are ok:
-
-{{{
- if (test) {
- doThingOne();
- } else {
- doThingTwo();
- }
-
- if (test) return item;
-}}}