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/06 19:53:38 UTC

svn commit: r1078547 - /lucene/dev/branches/branch_3x/solr/build.xml

Author: sarowe
Date: Sun Mar  6 18:53:38 2011
New Revision: 1078547

URL: http://svn.apache.org/viewvc?rev=1078547&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/branches/branch_3x/solr/build.xml

Modified: lucene/dev/branches/branch_3x/solr/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_3x/solr/build.xml?rev=1078547&r1=1078546&r2=1078547&view=diff
==============================================================================
--- lucene/dev/branches/branch_3x/solr/build.xml (original)
+++ lucene/dev/branches/branch_3x/solr/build.xml Sun Mar  6 18:53:38 2011
@@ -863,10 +863,23 @@
     <gunzip src="${dist}/${fullnamever}.tgz" dest="${dest}/${fullnamever}.tar"/>
     <untar src="${dest}/${fullnamever}.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"
      />