crossley 2003/11/22 20:11:47
Modified: src/documentation/content/xdocs/community committer.xml
Log:
Link to PMC FAQ.
Show how to list only plain-text files with DOS line-endings.
Revision Changes Path
1.2 +10 -1
cocoon-site/src/documentation/content/xdocs/community/committer.xml
Index: committer.xml
===================================================================
RCS file:
/home/cvs/cocoon-site/src/documentation/content/xdocs/community/committer.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- committer.xml 18 Nov 2003 02:45:06 -0000 1.1
+++ committer.xml 23 Nov 2003 04:11:47 -0000 1.2
@@ -11,7 +11,9 @@
<p>
These are some tips to help committers to keep our CVS clean.
See also
- <link href="http://www.apache.org/dev/committers.html">Committers
FAQ</link>.
+ <link href="http://www.apache.org/dev/committers.html">Committers
FAQ</link>
+ and
+ <link href="http://www.apache.org/dev/pmc.html">PMC FAQ</link>.
</p>
</section>
@@ -86,6 +88,13 @@
Here is one way to find files that have any hidden control
characters:
<code>find . -type f | xargs grep -l '[[:cntrl:]]'</code>
+ </p>
+
+ <p>
+ There seem to be many images and jar archives that contain
+ carriage-returns, so to list only the plain-text files:
+ <code>find . -type f | xargs grep -l '^M' |
+ xargs file | grep -i text | cut -f1 -d:</code>
</p>
</section>