Author: sebb
Date: Sat Mar 20 13:40:03 2010
New Revision: 925608
URL: http://svn.apache.org/viewvc?rev=925608&view=rev
Log:
Remove incorrect usages of Jakarta
Remove contentious "standards"
Modified:
commons/proper/net/branches/NET_2_0/src/site/xdoc/code-standards.xml
Modified: commons/proper/net/branches/NET_2_0/src/site/xdoc/code-standards.xml
URL:
http://svn.apache.org/viewvc/commons/proper/net/branches/NET_2_0/src/site/xdoc/code-standards.xml?rev=925608&r1=925607&r2=925608&view=diff
==============================================================================
--- commons/proper/net/branches/NET_2_0/src/site/xdoc/code-standards.xml
(original)
+++ commons/proper/net/branches/NET_2_0/src/site/xdoc/code-standards.xml Sat
Mar 20 13:40:03 2010
@@ -43,7 +43,7 @@ are responsible for also fixing your own
</p>
<p>
-Below is a list of coding conventions that are specific to Jakarta Commons/Net
+Below is a list of coding conventions that are specific to Apache Commons Net
everything else not specificially mentioned here should follow the official
<a href="http://java.sun.com/docs/codeconv/html/CodeConvTOC.doc.html">Sun
Java Coding Conventions</a>.
@@ -110,8 +110,8 @@ In Emacs-speak, this translates to the f
]]></source>
<p>
-4. Unix linefeeds for all .java source code files. Other platform specific
-files should have the platform specific linefeeds.
+4. Native linefeeds (svn:eol-style native) for all .java source code and text
files.
+Platform specific files should have the platform specific linefeeds.
</p>
<p>
@@ -123,29 +123,11 @@ project as a whole.
</p>
<p>
-6. The Jakarta License <strong>MUST</strong> be placed at the top
+6. The Apache License header <strong>MUST</strong> be placed at the top
of each and every file.
</p>
<p>
-7. If you contribute to a file (code or documentation), add yourself to the
-authors list at the top of the file. For java files the
-preferred Javadoc format is:
-</p>
-
-<source><![CDATA[
-...@author <a href="mailto:[email protected]">John Doe</a>
-]]></source>
-
-<p>
-8. All .java files should have a @version tag like the one below.
-</p>
-
-<source><![CDATA[
-...@version $Id$
-]]></source>
-
-<p>
9. Import statements must be fully qualified for clarity.
</p>