You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by sa...@apache.org on 2011/03/07 16:35:58 UTC

svn commit: r1078812 - /lucene/dev/trunk/solr/build.xml

Author: sarowe
Date: Mon Mar  7 15:35:58 2011
New Revision: 1078812

URL: http://svn.apache.org/viewvc?rev=1078812&view=rev
Log:
Augmented list of patterns for text files in which to convert line endings to CRLF style in the Solr source .zip package

Modified:
    lucene/dev/trunk/solr/build.xml

Modified: lucene/dev/trunk/solr/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/solr/build.xml?rev=1078812&r1=1078811&r2=1078812&view=diff
==============================================================================
--- lucene/dev/trunk/solr/build.xml (original)
+++ lucene/dev/trunk/solr/build.xml Mon Mar  7 15:35:58 2011
@@ -809,10 +809,23 @@
     <gunzip src="${dist}/${fullnamever}-src.tgz" dest="${dest}/${fullnamever}-src.tar"/>
     <untar src="${dest}/${fullnamever}-src.tar" dest="${dest}"/>
 
+    <!--
+      This is a list of text file patterns to convert to CRLF line-ending style.
+      Shell scripts and files included in shell scripts should not be converted.
+      NB: The line-ending conversion process will mangle non-UTF8-encoded files.
+     -->
     <fixcrlf srcdir="${dest}/${fullnamever}"
        encoding="UTF-8"
        eol="crlf"
-       includes="**/*.txt **/*.xml **/*.java **/*.html **/*.csv **/*.css **/*.properties **/*.jsp **/*.xsl **/*.py **/*.rb **/*.js **/*.json **/*.pl"
+       includes="**/*.alg **/*.cgi **/*.cpp **/*.css **/*.csv **/*.dtd **/*.erb
+                 **/*.fcgi **/.htaccess **/*.htm **/*.html **/*.incl **/*.java
+                 **/*.javacc **/*.jflex **/*.jflex-macro **/*.jj **/*.js
+                 **/*.json **/*.jsp **/*LICENSE **/*.pl **/*.pom
+                 **/*pom.xml.template **/*.properties **/*.py **/*.rake
+                 **/Rakefile **/*.rb **/*.rbbi **/README **/README.* **/*.rhtml
+                 **/*.rslp **/*.rxml **/*.script **/*.svg **/*.tsv **/*.txt
+                 **/UPGRADING **/USAGE **/*.uxf **/*.vm **/*.xcat **/*.xml
+                 **/*.xsl **/*.xslt **/*.yml"
        excludes="**/stopwordsWrongEncoding.txt **/gb18030-example.xml"
      />