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 2013/12/06 17:51:45 UTC

svn commit: r1548595 [6/6] - in /lucene/dev/trunk/lucene: ./ analysis/common/ analysis/common/src/java/org/apache/lucene/analysis/charfilter/ analysis/common/src/java/org/apache/lucene/analysis/standard/ analysis/common/src/java/org/apache/lucene/analy...

Modified: lucene/dev/trunk/lucene/analysis/common/src/test/org/apache/lucene/analysis/core/email.addresses.from.random.text.with.email.addresses.txt
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/analysis/common/src/test/org/apache/lucene/analysis/core/email.addresses.from.random.text.with.email.addresses.txt?rev=1548595&r1=1548594&r2=1548595&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/analysis/common/src/test/org/apache/lucene/analysis/core/email.addresses.from.random.text.with.email.addresses.txt (original)
+++ lucene/dev/trunk/lucene/analysis/common/src/test/org/apache/lucene/analysis/core/email.addresses.from.random.text.with.email.addresses.txt Fri Dec  6 16:51:43 2013
@@ -78,13 +78,13 @@ LTLNFsgB@[191.56.104.113]
 iT0LOq.jtPW=G06~cETxl2ge@Ah0.4hn72v.tQ.LU
 VGLn@z3E2.3an2.MM
 TWmfsxn@[112.192.017.029]
-2tP07A@2twe6u0d6uw6o.sed7n.109mx.XN--KGBECHTV
+2tP07A@2twe6u0d6uw6o.sed7n.109mx.XN--KPRW13D
 CjaPC63@['\RDrwk]
 Ayydpdoa@tdgypppmen.wf
 "gfKP9"@jo3-r0.mz
-aTMgDW4@t5gax.XN--0ZWM56D
+aTMgDW4@t5gax.XN--3E0B707E
 mcDrMO3FQ@nwc21.y5qd45lesryrp.IL
-NZqj@v50egeveepk.z290kk.Bc3.xn--jxalpdlp
+NZqj@v50egeveepk.z290kk.Bc3.xn--kprw13d
 XtAhFnq@[218.214.251.103]
 x0S8uos@[109.82.126.233]
 ALB4KFavj16pODdd@i206d6s.MM

Modified: lucene/dev/trunk/lucene/analysis/common/src/test/org/apache/lucene/analysis/core/generateJavaUnicodeWordBreakTest.pl
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/analysis/common/src/test/org/apache/lucene/analysis/core/generateJavaUnicodeWordBreakTest.pl?rev=1548595&r1=1548594&r2=1548595&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/analysis/common/src/test/org/apache/lucene/analysis/core/generateJavaUnicodeWordBreakTest.pl (original)
+++ lucene/dev/trunk/lucene/analysis/common/src/test/org/apache/lucene/analysis/core/generateJavaUnicodeWordBreakTest.pl Fri Dec  6 16:51:43 2013
@@ -78,9 +78,10 @@ import org.junit.Ignore;
  *    \\p{Script = Hiragana}
  *    \\p{LineBreak = Complex_Context} (From $line_break_url)
  *    \\p{WordBreak = ALetter}         (From $word_break_url)
+ *    \\p{WordBreak = Hebrew_Letter}
  *    \\p{WordBreak = Katakana}
  *    \\p{WordBreak = Numeric}         (Excludes full-width Arabic digits)
- *    [\\uFF10-\\uFF19]                 (Full-width Arabic digits)
+ *    [\\uFF10-\\uFF19]                (Full-width Arabic digits)
  */
 \@Ignore
 public class ${class_name} extends BaseTokenStreamTestCase {
@@ -97,7 +98,7 @@ parse_Unicode_data_file($line_break_url,
 parse_Unicode_data_file($scripts_url, $codepoints, 
                         {'han' => 1, 'hiragana' => 1});
 parse_Unicode_data_file($word_break_url, $codepoints,
-                        {'aletter' => 1, 'katakana' => 1, 'numeric' => 1});
+                        {'aletter' => 1, 'hebrew_letter' => 1, 'katakana' => 1, 'numeric' => 1});
 my @tests = split /\r?\n/, get_URL_content($word_break_test_url);
 
 my $output_path = File::Spec->catpath($volume, $directory, $output_filename);
@@ -109,25 +110,33 @@ print STDERR "Writing '$output_path'..."
 print OUT $header;
 
 for my $line (@tests) {
-  next if ($line =~ /^\s*\#/);
-  # ÷ 0001 × 0300 ÷  #  ÷ [0.2] <START OF HEADING> (Other) × [4.0] COMBINING GRAVE ACCENT (Extend_FE) ÷ [0.3]
+  next if ($line =~ /^\s*(?:|\#.*)$/); # Skip blank or comment-only lines
+  # Example line: ÷ 0001 × 0300 ÷  #  ÷ [0.2] <START OF HEADING> (Other) × [4.0] COMBINING GRAVE ACCENT (Extend_FE) ÷ [0.3]
   my ($sequence) = $line =~ /^(.*?)\s*\#/;
+  $line =~ s/\t/  /g; # Convert tabs to two spaces (no tabs allowed in Lucene source)
   print OUT "    // $line\n";
   $sequence =~ s/\s*÷\s*$//; # Trim trailing break character
   my $test_string = $sequence;
   $test_string =~ s/\s*÷\s*/\\u/g;
   $test_string =~ s/\s*×\s*/\\u/g;
+  $test_string =~ s/\\u([0-9A-F]{5,})/join('', map { "\\u$_" } above_BMP_char_to_surrogates($1))/ge;
   $test_string =~ s/\\u000A/\\n/g;
   $test_string =~ s/\\u000D/\\r/g;
+  $test_string =~ s/\\u0022/\\\"/g;
   $sequence =~ s/^\s*÷\s*//; # Trim leading break character
   my @tokens = ();
   for my $candidate (split /\s*÷\s*/, $sequence) {
     my @chars = ();
     my $has_wanted_char = 0;
     while ($candidate =~ /([0-9A-F]+)/gi) {
-      push @chars, $1;
+      my $hexchar = $1;
+      if (4 == length($hexchar)) {
+        push @chars, $hexchar;
+      } else {
+        push @chars, above_BMP_char_to_surrogates($hexchar);
+      }
       unless ($has_wanted_char) {
-        $has_wanted_char = 1 if (defined($codepoints->[hex($1)]));
+        $has_wanted_char = 1 if (defined($codepoints->[hex($hexchar)]));
       }
     }
     if ($has_wanted_char) {
@@ -144,6 +153,21 @@ close OUT;
 print STDERR "done.\n";
 
 
+# sub above_BMP_char_to_surrogates
+#
+# Converts hex references to chars above the BMP (i.e., greater than 0xFFFF)
+# to the corresponding UTF-16 surrogate pair
+#
+# Assumption: input string is a sequence more than four hex digits
+#
+sub above_BMP_char_to_surrogates {
+  my $ch = hex(shift);
+  my $high_surrogate = 0xD800 + (($ch - 0x10000) >> 10);
+  my $low_surrogate  = 0xDC00 + ($ch & 0x3FF);
+  return map { sprintf("%04X", $_) } ($high_surrogate, $low_surrogate);
+}
+
+
 # sub parse_Unicode_data_file
 #
 # Downloads and parses the specified Unicode data file, parses it, and

Modified: lucene/dev/trunk/lucene/analysis/common/src/test/org/apache/lucene/analysis/core/random.text.with.email.addresses.txt
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/analysis/common/src/test/org/apache/lucene/analysis/core/random.text.with.email.addresses.txt?rev=1548595&r1=1548594&r2=1548595&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/analysis/common/src/test/org/apache/lucene/analysis/core/random.text.with.email.addresses.txt (original)
+++ lucene/dev/trunk/lucene/analysis/common/src/test/org/apache/lucene/analysis/core/random.text.with.email.addresses.txt Fri Dec  6 16:51:43 2013
@@ -121,14 +121,14 @@ Bzzzzzzzz! Bzzzzzzzzzzzzzzz! Tell them "
 of LTLNFsgB@[191.56.104.113] all, until it has read it is
 iT0LOq.jtPW=G06~cETxl2ge@Ah0.4hn72v.tQ.LU there. <VG...@z3E2.3an2.MM> Once
 TWmfsxn@[112.192.017.029] Spiros under the place
-2tP07A@2twe6u0d6uw6o.sed7n.109mx.XN--KGBECHTV as were not a house of the
+2tP07A@2twe6u0d6uw6o.sed7n.109mx.XN--KPRW13D as were not a house of the
 rosebushes and the whateverend, feel her waist. She changes everything. We had
 decided to do you know CjaPC63@['\RDrwk] this, is what did leave, pray; let us
 come to, <Ay...@tdgypppmen.wf> what history as died. Strange, Spiros with
 delight: That night "gfKP9"@jo3-r0.mz and gold case
-<aT...@t5gax.XN--0ZWM56D> is spring: the aeon arising, wherein he returned,
+<aT...@t5gax.XN--3E0B707E> is spring: the aeon arising, wherein he returned,
 retraversing the mcDrMO3FQ@nwc21.y5qd45lesryrp.IL gates, first
-<NZ...@v50egeveepk.z290kk.Bc3.xn--jxalpdlp> to reach session. Initiating first
+<NZ...@v50egeveepk.z290kk.Bc3.xn--kprw13d> to reach session. Initiating first
 part of the main hall toward his own spurs. Hes an <XtAhFnq@[218.214.251.103]>
 Irifix And older ones who wins? ADAM: x0S8uos@[109.82.126.233] The violin and
 reality. The hidden set up to come. ROSE WAKINS: No answer. The

Modified: lucene/dev/trunk/lucene/analysis/common/src/test/org/apache/lucene/analysis/core/random.text.with.urls.txt
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/analysis/common/src/test/org/apache/lucene/analysis/core/random.text.with.urls.txt?rev=1548595&r1=1548594&r2=1548595&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/analysis/common/src/test/org/apache/lucene/analysis/core/random.text.with.urls.txt (original)
+++ lucene/dev/trunk/lucene/analysis/common/src/test/org/apache/lucene/analysis/core/random.text.with.urls.txt Fri Dec  6 16:51:43 2013
@@ -24,7 +24,7 @@ and Joe recited this iron bars with thei
 almost drove me towards evening. At
 HTTP://173.202.175.16/Md7tF6lj7r/oioJ9TpL8/x%03PjXgMMBC7C3%BDWzoVMzH the
 sergeant and then on the raw
-<Https://yu7v33rbt.vC6U3.XN--JXALPDLP/y%4fMSzkGFlm/wbDF4m> afternoon towards
+<Https://yu7v33rbt.vC6U3.XN--KPRW13D/y%4fMSzkGFlm/wbDF4m> afternoon towards
 the terror, merely wished him as biled
 M19nq.0URV4A.Me.CC/mj0kgt6hue/dRXv8YVLOw9v/CIOqb -- a conciliatory air on in
 <ftp://evzed8zvv.l2xkky.Dq85qcl1.eu:1184/07eY0/3X1OB7gPUk/J8la5OPUY3/y1oTItIs1HFPPp/5Q02N0cPyDH87hSy/jheYGF8s%F3P/%86PmYhi/ViKHoxsHqM8J>
@@ -47,7 +47,7 @@ to live. You didn't know nothing could a
 behind the answer those aids, I saw him in the same appearance of the convict's
 file:///%C5=.%8by/uuFXEaW8.%7E4/DRM%33Kh2xb8u%7FHizfLn/aoF06#7srWW%2EKoFf
 confession, and bring you see? '
-HTTP://yA2O3F.XN--0ZWM56D/qPDTt/MwMXGQq2S7JT/TJ2iCND said my limbs. Joe in an
+HTTP://yA2O3F.XN--3E0B707E/qPDTt/MwMXGQq2S7JT/TJ2iCND said my limbs. Joe in an
 accusatory manner as well known that Joe Gargery marry her cup. `I wonder and
 there was publicly made it was,
 <file:///Gdx5CDZYW%6cnzMJ/7HJ/J%63BSZDXtS/yfWXqq6#> as lookers on; me, I
@@ -63,7 +63,7 @@ again
 FTP://Hi144dz6hctql2n3uom.GE/%1A4OBV%63h/DoA4hpXFmqldOw-MB/PNYoaSDJB2F1k5/Nx%BBEDhrHhcMB
 towards evening. At last, and kneaded, and a dead man taking any. There was
 publicly made out there?' said I,
-ftp://w0yaysrl.XN--9T4B11YI5A/y4FFU%c4F0B/Dh9%D1dGK3bN/EqxueQEsX2p5/xgf4Jxr%D9q/2ubmieRM
+ftp://w0yaysrl.XN--CLCHC0EA0B2G2A9GCD/y4FFU%c4F0B/Dh9%D1dGK3bN/EqxueQEsX2p5/xgf4Jxr%D9q/2ubmieRM
 glancing http://t9wa4.rjcahbc06qmyk9jkhu3f.ZA/vIwW3sc3Pg/Bwmeo6KAjkRY at the
 N54l6e.vu/1m2%8bMFjv/oBdy%36.eL;33/N%d21Qvm/ river wound, twenty miles of the
 number called, hears the awful it lights; here and trimmings of Caesar. This
@@ -155,7 +155,7 @@ ftp://E1cdf-p.XN--MGBERP4A5D4AR:60510/qM
 at me, and that her walking z3ymb.KM/DdnrqoBz=YtxSB away so much of the
 grievous circumstances foreshadowed. After receiving the way, that I thought,
 if she should go to?' `Good again!' cried the
-FTP://7kgip3z.XN--HGBK6AJ7F53BBA:15983/OYEQzIA0 society of a savoury pork pie,
+FTP://7kgip3z.XN--KPRY57D:15983/OYEQzIA0 society of a savoury pork pie,
 and nezt6awdc.lSZDSU14B1OH.4n6nkmjyyj.cc they challenged, hears nothin' all my
 hands in herself, and bring him by hand. `This,' ftp://085.062.055.011/bopfVV/
 said he wore ftp://Mbbn8n.6ge03fiivyc7of.PS/mvb/X8VNt/5WrMZpw/flC6Rs a dog of
@@ -191,7 +191,7 @@ and tingling, and that I had won of the 
 from Richard the furthest end of
 http://ch43n.51rkj.rze.mq/pJjrSAiuSv/3x/EK%59ReZM9w both imp and stung by the
 bright fire, another look
-zQFC1SPO96J.Jy20d8.xn--0zwm56d:863/0OWpT4dpkMURAGe/nFg/LQBUr%3E/af7dO1 over her
+zQFC1SPO96J.Jy20d8.xn--3e0b707e:863/0OWpT4dpkMURAGe/nFg/LQBUr%3E/af7dO1 over her
 best use asking questions, and feet,
 <ftp://Xctk9iigg.cat/u3cX1d/Sx6m3dql/d%46;type=d#0i%3cT1yMkZQ> hanging to try
 back was the poker. `It was not warmly. `Seems
@@ -204,7 +204,7 @@ kitchen wall,
 Ftp://2gifamku.jqv10es.MX/yJ0rhtMYX/Y1Wq%F90RYO1F/NT0%aeAG3/r3Act1 he ate the
 house, end with the Ghost in order): Forty-three pence?' To five hundred
 Gargerys.' `I say, Pip; stay
-7WO6F.XN--11B5BS3A9AJ6G/1L%f9G0NEu/L2lD/mQGNS9UhgCEb out with
+7WO6F.XN--45BRJ9C/1L%f9G0NEu/L2lD/mQGNS9UhgCEb out with
 ftp://mIMU.t4d24n4lyx39.zURN708MCNGK-TJ42GLLBQRJHVENGPO.bw:59930/KmBYQKHfcjNRe/rK3fUjg%0Ad/.zHeVoCaC5/w%A2%F7up9o7J0Eq/ySBVhB
 his shot, and reposing no help to my seat. It was in the kitchen wall, because
 I calculated the sounds by giving me by the name for a rush of Joe's forge
@@ -299,7 +299,7 @@ She drew the kitchen, carrying file:///Y
 wooden hut
 ftp://7vl2w.jp/b%a5fBYyDR/ZN%62LG9aYpjSwn0yWg/nG97gndK%69XZ#fet%55XXZhslTNrq5T
 where it seemed to give Pirrip as
-<79wvzk3.24dyfkxg0f4z-hsqgqqzj2p9n59el0a.XN--DEBA0AD/:8epfLrewivg%488s/2ORX8M3/B0KpeeB/2rbuCnnBF/4P6%1cU6fTGNj/o%3aZMIHdO>
+<79wvzk3.24dyfkxg0f4z-hsqgqqzj2p9n59el0a.XN--FIQS8S/:8epfLrewivg%488s/2ORX8M3/B0KpeeB/2rbuCnnBF/4P6%1cU6fTGNj/o%3aZMIHdO>
 to say, on the guiltily coarse his head, he tried to the
 Uow9.sF.GP/sF3FCFSbCRWGNJY%aaU/DVXA5nIOWmjc6S/FQXdiBw/Y7~cVmpypgft/vU1%D4z
 remark. `There's one sprinkled all I was possible she beggared me. All these
@@ -311,7 +311,7 @@ Http://Ed095eimjy.rlb5698d.kp/_l5uoOO/aA
 he shook her veil so thick nor my milk and would impart all had returned, with
 soap-suds, I had FILE:///#F9Bgl just like thin snow. `Enough of his right side
 of thenceforth sitting
-jyia054.l814D9SNHRRA5RJCCW.kvxga.XN--0ZWM56D/sBbx24%f2Tw2/Sd0Lul0Vg1bbIqW~/lveEw
+jyia054.l814D9SNHRRA5RJCCW.kvxga.XN--3E0B707E/sBbx24%f2Tw2/Sd0Lul0Vg1bbIqW~/lveEw
 in File:///KKfIe63z/BETB.T%C6sG/RcYgnOycg my soul. I sat down on it, I have
 been a spoon that the pie, blacksmith?' asked Estella of it made a mouth wide
 open, and so
@@ -324,7 +324,7 @@ FTP://7qf.hlj.TN/IXOeaf/t%c52Jxwy#YkcAy2
 pointed to Ftp://Gbu5t.HT/xad4fgjaN#GLpU3XQd6%7F(cHIz himself. No glimpse of
 file:///A1omJiPzafgAm/addqzG%dc%62/Lw1mamTg herself, I saw that he would have
 been there, I was too far and uncomfortable by it.
-http://89qw34ksf0qf6iq264of-1nya4ds7qvpixw8c951aw8wcm3.qxk7usa.N8j1frzfgnkbi9y2.XN--9T4B11YI5A/Unwn3/%97gnj0/GQgJC~OFxsdE8ubC7/IWy450/8%7CQVgdI8/soi0BviZt/Zjs%10i5Xh?qi8t9=rBbPok,Si&*Xl=Q+fT&Hx4%D70=84+8W%18+sV2BU6xCDP%47M&Usbms=
+http://89qw34ksf0qf6iq264of-1nya4ds7qvpixw8c951aw8wcm3.qxk7usa.N8j1frzfgnkbi9y2.XN--CLCHC0EA0B2G2A9GCD/Unwn3/%97gnj0/GQgJC~OFxsdE8ubC7/IWy450/8%7CQVgdI8/soi0BviZt/Zjs%10i5Xh?qi8t9=rBbPok,Si&*Xl=Q+fT&Hx4%D70=84+8W%18+sV2BU6xCDP%47M&Usbms=
 Under the Above,' I rather to become transfixed -- he gave me out of the
 kitchen empty-handed, to keep him, I had made a
 Z7tid0uh.eZMOI-M1.umlsyksuzovqdw6wozbd.BW/m%e684OhC/ErAhpGiG subject, if he had
@@ -468,7 +468,7 @@ hard twist upon his -- `Well, boy,' Uncl
 had heard it had hesitated as little window, violently plunging and she had
 committed, and had all about the present calling, which the fingers of tea on
 Saturdays than this country, gentlemen, but I could see those,
-https://nWC9-RIA00RPVL4SSWRICWWX3NH5SMQIA7IPMCK174T30VQBL-M6.XN--0ZWM56D/CwE%e2rWaYZmE?X_coOVl=kqGQ&Pli=MjKg-+wO6Eh+lbbcN&x3M=3kQh99m92mRdf&iiO2wXgQ=qyWVG9G
+https://nWC9-RIA00RPVL4SSWRICWWX3NH5SMQIA7IPMCK174T30VQBL-M6.XN--3E0B707E/CwE%e2rWaYZmE?X_coOVl=kqGQ&Pli=MjKg-+wO6Eh+lbbcN&x3M=3kQh99m92mRdf&iiO2wXgQ=qyWVG9G
 too, if you remember what stock she told me again. `But I know what
 file:///enqvF%EFLOBsZhl8h2z wittles is?' `Yes, ma'am.' `Estella, take me again
 and ftp://133.4.130.192/p%b1LgcONfo%bc&kmH/Ibh6Lq%DCJhnswT%1A refractory
@@ -493,7 +493,7 @@ right-side
 ftp://zxmv98m49669kfvf24o12w3u93wbovfp-1smo6y90e27n133okplcjqrmv-a.CD/JM5RAAY/sJdBntYWuEY4uB7hz/ozRSmFJD/#Xv22:Xvg
 flaxen curls and tables, and a foot of the blacksmith's.' `Halloa!' said Joe,
 staring at that it had withered like a infunt, and took another look about the
-rum <6S8.Crwllo5e3.jmtz.XN--G6W251D/6InlQn/hnhu2f%ac8tX/apq%0D6o/> out at once.
+rum <6S8.Crwllo5e3.jmtz.XN--GECRJ9C/6InlQn/hnhu2f%ac8tX/apq%0D6o/> out at once.
 Three Jolly Bargemen to think she seemed to tell you were. When we saw the file
 coming at my slice. I have mentioned it with the wooden hut where we had got up
 trying to file:///gVW/nnRNxPfMXKb%72Aq%4A hand. If ever grateful for. If a
@@ -662,7 +662,7 @@ open,' he
 https://227.086.128.010:64985/MDKuFInA86qto5/_cK=4S%49Ic/SPp76/TlV%0Arlwfx/
 wiped the liquor. He was the bad; and some one
 Ftp://171.160.94.43/ALTgS46I4VM/55PbbK/5N%faTSE another
-Ftp://3zd7z.etw.XN--JXALPDLP/4UztCuTbW2z/LL%2cDI/dTYSi9 turned to put straws
+Ftp://3zd7z.etw.XN--KPRW13D/4UztCuTbW2z/LL%2cDI/dTYSi9 turned to put straws
 down by a most powerfully down
 t6xfr.wxjz5p2t5.zl8m4.MN/2cbpjk/gsdm/5Mvc-j3rc/16Wb65&c7x to me, and all that
 know the window,
@@ -993,7 +993,7 @@ upon a door, which was gobbling mincemea
 that Joe's blue file:///EYS2nDf%9671qsm34OZeB%e5lUA/rYBDn0DKs0/ eyes, had an
 hour longer than at me, and dismal, and gloves, and that's further than I
 mpuwl0.BA/MkvAvc?j%11K4=9gE%613&qOOEP0t=g7EXs looked on. `Now, boy!
-g6tylc0.daeczh.4q.XN--9T4B11YI5A/1SbCR9cX1%3D/YfP8CpLKn5KzTL8/Kj11z%B7OuqJU;qM4P
+g6tylc0.daeczh.4q.XN--CLCHC0EA0B2G2A9GCD/1SbCR9cX1%3D/YfP8CpLKn5KzTL8/Kj11z%B7OuqJU;qM4P
 Why, here's a ridiculous old chap. And looked up by hand. `Why don't like
 `sulks.' Therefore, I was in such game?' Everybody, myself drifting down his
 chest and he had made me worse by-and-by. I was a
@@ -1035,7 +1035,7 @@ in every word out again. `You are prison
 <HTTPS://bF2RA.kw/1TA9pTTBg/nM/VSRo%85Kt?%62mxNfo=HDowgwkM3&9oPOLH2=yKOxIe+YNtt>
 for us heavy. `I Bolted, myself, 5.Piba4ac.JE/55M1H/AZXdj and thread, and we
 after him, or to inspire confidence. This was brought you spoke all the act, he
-couldn't m-k6-ej7x.XN--HLCJ6AYA9ESC7A/suVrNQSIj9/TmRhHbe/o&0dbqR/ keep the fire
+couldn't m-k6-ej7x.XN--J6W193G/suVrNQSIj9/TmRhHbe/o&0dbqR/ keep the fire
 between the forge was <ftp://242.228.138.8/o%CC_QjILS%17aYH/%caw8CcVZyPRZ/>
 busy in it. Until
 hGE9YH3D6.SD/m%1EpDJrzO/Tf2Xxqq8L/YJT7BTEY%661PvcMgOr/29ZbuJuWl6q/ she jammed
@@ -1329,7 +1329,7 @@ sort Http://w9ys35.wb55p6l.hxl.rs/Y97%58
 FILE://155.24.106.255/3VEZIT7 if it was to him, I might not do not afraid of
 report, and looking rather to make nothing of a confidential voice,
 d1y8zvhwq40bi3tom.hPCZ.gJ-286X.TG/ayWKrgAvF6tn/L4SgquZT6C/1DmNe/CI69rJ/%f6QrzZGkSQ
-as lda5l5wc.XN--HGBK6AJ7F53BBA/pr80SSZ/eNM1%D50lp/Rc%8EimOET if he would be
+as lda5l5wc.XN--KPRY57D/pr80SSZ/eNM1%D50lp/Rc%8EimOET if he would be
 supposed,' said the wind and so we were read the conversation consisted of it
 had so that we saw some bread, some
 l13t2t.sk/O%2BmRkw/@0AgGL@NX/wgt&aggDcp#0IYe'C brandy out: no black velvet

Modified: lucene/dev/trunk/lucene/analysis/common/src/test/org/apache/lucene/analysis/core/urls.from.random.text.with.urls.txt
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/analysis/common/src/test/org/apache/lucene/analysis/core/urls.from.random.text.with.urls.txt?rev=1548595&r1=1548594&r2=1548595&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/analysis/common/src/test/org/apache/lucene/analysis/core/urls.from.random.text.with.urls.txt (original)
+++ lucene/dev/trunk/lucene/analysis/common/src/test/org/apache/lucene/analysis/core/urls.from.random.text.with.urls.txt Fri Dec  6 16:51:43 2013
@@ -10,7 +10,7 @@ http://Rcbu6/Oxc%C0IkGSZ8rO9IUpd/BEvkvw3
 file:///2CdsP/U2GCLT
 Http://Pzw978uzb.ai/yB;mt/o8hVKG/%231Y/Xb1%bb6v1fhjfdkfkBvxed?8mq~=OvF&STpJJk=ws0ZO&0DRA=
 HTTP://173.202.175.16/Md7tF6lj7r/oioJ9TpL8/x%03PjXgMMBC7C3%BDWzoVMzH
-Https://yu7v33rbt.vC6U3.XN--JXALPDLP/y%4fMSzkGFlm/wbDF4m
+Https://yu7v33rbt.vC6U3.XN--KPRW13D/y%4fMSzkGFlm/wbDF4m
 M19nq.0URV4A.Me.CC/mj0kgt6hue/dRXv8YVLOw9v/CIOqb
 ftp://evzed8zvv.l2xkky.Dq85qcl1.eu:1184/07eY0/3X1OB7gPUk/J8la5OPUY3/y1oTItIs1HFPPp/5Q02N0cPyDH87hSy/jheYGF8s%F3P/%86PmYhi/ViKHoxsHqM8J
 ftp://213.7.210.47/%e5pFkj6e6Jczc/ypJGG/z%663jYR/37IxLQBPr/Ciq50EUIdueyj
@@ -23,13 +23,13 @@ Ftp://Xmswrxn8d-1s.pe.gm/dB6C3xTk%D3x/EK
 FILE:///rKnQkS0MAF#tM%53_2%03%d6ZICH
 ftp://R5ecjkf1yx4wpskfh.tv0y3m90ak.0R605.se:51297/zpWcRRcG/1woSqw7ZUko/
 file:///%C5=.%8by/uuFXEaW8.%7E4/DRM%33Kh2xb8u%7FHizfLn/aoF06#7srWW%2EKoFf
-HTTP://yA2O3F.XN--0ZWM56D/qPDTt/MwMXGQq2S7JT/TJ2iCND
+HTTP://yA2O3F.XN--3E0B707E/qPDTt/MwMXGQq2S7JT/TJ2iCND
 file:///Gdx5CDZYW%6cnzMJ/7HJ/J%63BSZDXtS/yfWXqq6#
 http://1qvgjd1.TP/7oq5gWW/Gwqf8fxBXR4/?Br,q=ayMz0&1IO%370N7=;Sl1czc2L+5bRISfD+w&ygP3FhV%E1w36=2Rx
 ftp://5SCC6BUYP.Knf1cvlc22z9.1dc3rixt5ugyq4/5OnYTSN/QpCdo/t3zqkI/pn5skT/oJgrGy7
 http://2dkbeuwsto3i3e8jaxi6su9wjlmwygtpdp7g65611z-2bbr82uhjqkdv2jrh7.KZ/FiSvI/aaB&dPQ%42kLdM
 FTP://Hi144dz6hctql2n3uom.GE/%1A4OBV%63h/DoA4hpXFmqldOw-MB/PNYoaSDJB2F1k5/Nx%BBEDhrHhcMB
-ftp://w0yaysrl.XN--9T4B11YI5A/y4FFU%c4F0B/Dh9%D1dGK3bN/EqxueQEsX2p5/xgf4Jxr%D9q/2ubmieRM
+ftp://w0yaysrl.XN--CLCHC0EA0B2G2A9GCD/y4FFU%c4F0B/Dh9%D1dGK3bN/EqxueQEsX2p5/xgf4Jxr%D9q/2ubmieRM
 http://t9wa4.rjcahbc06qmyk9jkhu3f.ZA/vIwW3sc3Pg/Bwmeo6KAjkRY
 N54l6e.vu/1m2%8bMFjv/oBdy%36.eL;33/N%d21Qvm/
 http://ah-2d4.ASIA/qmp
@@ -75,7 +75,7 @@ http://4u3o/BKdhwRyzG
 file:///LdsHfPABFz1vRD1OB6Yl/RS6&1Gmz/mfYul/
 ftp://E1cdf-p.XN--MGBERP4A5D4AR:60510/qMaw4kSSgYM/7jgIuL/gSVW6O91/2bhnsj/kl7R5sgn6&X5EiZdZ0WhTX3T/fa%f3Azz
 z3ymb.KM/DdnrqoBz=YtxSB
-FTP://7kgip3z.XN--HGBK6AJ7F53BBA:15983/OYEQzIA0
+FTP://7kgip3z.XN--KPRY57D:15983/OYEQzIA0
 nezt6awdc.lSZDSU14B1OH.4n6nkmjyyj.cc
 ftp://085.062.055.011/bopfVV/
 ftp://Mbbn8n.6ge03fiivyc7of.PS/mvb/X8VNt/5WrMZpw/flC6Rs
@@ -93,12 +93,12 @@ https://[3790:ad57:0B63::e5f7:f6ac:164C]
 bl60k0jqkc9.oow84o1.BF/Xly5cTna/BzoQuHi3r8e/o5BDNrvT/=6HRdBjH/Mrp5%02/p%e9pT2Ae
 ftp://Bs3ceuxd8ii66gt.X8wwdpt.BB:27095/3BfkvfzcmTS/FTffh&S/gIWvJ5Kd/AlOQ%3EnO
 http://ch43n.51rkj.rze.mq/pJjrSAiuSv/3x/EK%59ReZM9w
-zQFC1SPO96J.Jy20d8.xn--0zwm56d:863/0OWpT4dpkMURAGe/nFg/LQBUr%3E/af7dO1
+zQFC1SPO96J.Jy20d8.xn--3e0b707e:863/0OWpT4dpkMURAGe/nFg/LQBUr%3E/af7dO1
 ftp://Xctk9iigg.cat/u3cX1d/Sx6m3dql/d%46;type=d#0i%3cT1yMkZQ
 HTTPS://56aderic0knmip9lkqdqag14.uk:45885/lELiK:/vF%4C5Enwqy/P5NGJ2b/dD6sg1yMV
 ftp://vlt.3g45k63viz2.tcnm3.UA:60664/AJ9iqYk%c1/uKbohn2/K%D1kequ4z8rxFpJ
 Ftp://2gifamku.jqv10es.MX/yJ0rhtMYX/Y1Wq%F90RYO1F/NT0%aeAG3/r3Act1
-7WO6F.XN--11B5BS3A9AJ6G/1L%f9G0NEu/L2lD/mQGNS9UhgCEb
+7WO6F.XN--45BRJ9C/1L%f9G0NEu/L2lD/mQGNS9UhgCEb
 ftp://mIMU.t4d24n4lyx39.zURN708MCNGK-TJ42GLLBQRJHVENGPO.bw:59930/KmBYQKHfcjNRe/rK3fUjg%0Ad/.zHeVoCaC5/w%A2%F7up9o7J0Eq/ySBVhB
 ftp://lv56pdepzu0b0fo-04qtxv5tt2jc0nsaukrhtz5-e3u1vcb517y3b135zl.e0r1hson.dk/3TVoqjp6%1FCFSkt/006VZfho/gxrWxgDawM3Uk
 Ftp://7n977.Niyt.2fgkzfhj.q7-DJ.Ow7a.it/5zfRi3PO8/1zfKT9%421tP/?SazEijJq%710COQKWeLE/TdUc%b2u/2AxBw9%4BUN6Zp4Z/KfUZd1MTdPv/L4m1tI3/WJvcK1
@@ -147,20 +147,20 @@ ftp://Lq.es/%B1ZPdTZgB2mNFW/qre92rM
 file:///IZ47ESCtX%aatQab1/V553gjR?Me/#9%68qPw
 file:///Y?GG/BBqMPBJ/nsxX3qP/8P24WdqBxH
 ftp://7vl2w.jp/b%a5fBYyDR/ZN%62LG9aYpjSwn0yWg/nG97gndK%69XZ#fet%55XXZhslTNrq5T
-79wvzk3.24dyfkxg0f4z-hsqgqqzj2p9n59el0a.XN--DEBA0AD/:8epfLrewivg%488s/2ORX8M3/B0KpeeB/2rbuCnnBF/4P6%1cU6fTGNj/o%3aZMIHdO
+79wvzk3.24dyfkxg0f4z-hsqgqqzj2p9n59el0a.XN--FIQS8S/:8epfLrewivg%488s/2ORX8M3/B0KpeeB/2rbuCnnBF/4P6%1cU6fTGNj/o%3aZMIHdO
 Uow9.sF.GP/sF3FCFSbCRWGNJY%aaU/DVXA5nIOWmjc6S/FQXdiBw/Y7~cVmpypgft/vU1%D4z
 ftp://[fd77:4982:C37F:a0a1:7651:E09C:117.093.145.017]/2l91g/s%79lJmUiZ/%A5R2qsJ
 [62c0::]/d1lmSzoB/5OBVnzn/kOXW%D23
 Http://Ed095eimjy.rlb5698d.kp/_l5uoOO/aA494s?3nSxdIpE=y%79qu+2un1hGR&J%76=8&L%bed=uY5hO+s+IKk1S&Q=HHXEC+Gof86QIRHy&35QY5=
 FILE:///#F9Bgl
-jyia054.l814D9SNHRRA5RJCCW.kvxga.XN--0ZWM56D/sBbx24%f2Tw2/Sd0Lul0Vg1bbIqW~/lveEw
+jyia054.l814D9SNHRRA5RJCCW.kvxga.XN--3E0B707E/sBbx24%f2Tw2/Sd0Lul0Vg1bbIqW~/lveEw
 File:///KKfIe63z/BETB.T%C6sG/RcYgnOycg
 ftp://892f7.oel50j.32.9qj1p-g7lgw.MR:48021/XNKbk2PZQXSvOuGnOAnATDt3/XfHyJtvoC/PW7YrSgf#LmGWJgPw
 http://sisas.ua/4CU60ZLK4VgY8AR89
 FTP://7qf.hlj.TN/IXOeaf/t%c52Jxwy#YkcAy2
 Ftp://Gbu5t.HT/xad4fgjaN#GLpU3XQd6%7F(cHIz
 file:///A1omJiPzafgAm/addqzG%dc%62/Lw1mamTg
-http://89qw34ksf0qf6iq264of-1nya4ds7qvpixw8c951aw8wcm3.qxk7usa.N8j1frzfgnkbi9y2.XN--9T4B11YI5A/Unwn3/%97gnj0/GQgJC~OFxsdE8ubC7/IWy450/8%7CQVgdI8/soi0BviZt/Zjs%10i5Xh?qi8t9=rBbPok,Si&*Xl=Q+fT&Hx4%D70=84+8W%18+sV2BU6xCDP%47M&Usbms=
+http://89qw34ksf0qf6iq264of-1nya4ds7qvpixw8c951aw8wcm3.qxk7usa.N8j1frzfgnkbi9y2.XN--CLCHC0EA0B2G2A9GCD/Unwn3/%97gnj0/GQgJC~OFxsdE8ubC7/IWy450/8%7CQVgdI8/soi0BviZt/Zjs%10i5Xh?qi8t9=rBbPok,Si&*Xl=Q+fT&Hx4%D70=84+8W%18+sV2BU6xCDP%47M&Usbms=
 Z7tid0uh.eZMOI-M1.umlsyksuzovqdw6wozbd.BW/m%e684OhC/ErAhpGiG
 ftp://tw7d-6yu.im:2055/%66qbqzss/OmPGW;type=d
 FTP://zst.tn/QcUpaA/VKvJ2/JN6AKew/iXYIiHm7mfPFmD%21E5/yTQpoiqdbaaS1/LnzOX#VqsobH
@@ -228,7 +228,7 @@ file:///UIIGOxv6jvF2%c0/%A8J3%677Gmq8im1
 http://Qhk9z.zm/cOGBen/mBsDycEI5V7L1s%84WUj7863/p%5f~okuRD51b0M?b%F2d%67ujGr=oh8PWUtK&j6uX7baX=&sg3RUocA9W=m5IaF&JWH9G=fyiOtnC3+7RJA+ippw96rvu+BxtGg&F6f1=jmPS&3PE0xX5=TGV%5c5J&%fc@NSEynhuvb=&MkRIt33=
 Http://[98cc:433d:2C25:62dd:54ba:d10b:63d3:4C40]/YlbNrJod/fdjuN/qYqSdqr5/KAbXYHO%F0m7Ws9
 file:///ywFY5HK/XAv@v%66o/M2O4Wlny50hypf5%02A8
-https://nWC9-RIA00RPVL4SSWRICWWX3NH5SMQIA7IPMCK174T30VQBL-M6.XN--0ZWM56D/CwE%e2rWaYZmE?X_coOVl=kqGQ&Pli=MjKg-+wO6Eh+lbbcN&x3M=3kQh99m92mRdf&iiO2wXgQ=qyWVG9G
+https://nWC9-RIA00RPVL4SSWRICWWX3NH5SMQIA7IPMCK174T30VQBL-M6.XN--3E0B707E/CwE%e2rWaYZmE?X_coOVl=kqGQ&Pli=MjKg-+wO6Eh+lbbcN&x3M=3kQh99m92mRdf&iiO2wXgQ=qyWVG9G
 file:///enqvF%EFLOBsZhl8h2z
 ftp://133.4.130.192/p%b1LgcONfo%bc&kmH/Ibh6Lq%DCJhnswT%1A
 ftp://1xf.ipl4f0y6c4.VA/LHuq~/p2nPbE/0YGGNJB%DEje2psef_B/aKOuMl1Q9
@@ -240,7 +240,7 @@ http://nEN5ZN.EG/%0efsf4v30L
 file:///19%9947/ksd3Sq7W78%27/2K_Ylzcu2q
 r8sht9qzsc1e2wp.ci/8SbPwlW%5ac/qKEqFi0Q
 ftp://zxmv98m49669kfvf24o12w3u93wbovfp-1smo6y90e27n133okplcjqrmv-a.CD/JM5RAAY/sJdBntYWuEY4uB7hz/ozRSmFJD/#Xv22:Xvg
-6S8.Crwllo5e3.jmtz.XN--G6W251D/6InlQn/hnhu2f%ac8tX/apq%0D6o/
+6S8.Crwllo5e3.jmtz.XN--GECRJ9C/6InlQn/hnhu2f%ac8tX/apq%0D6o/
 file:///gVW/nnRNxPfMXKb%72Aq%4A
 file:///Fzza388TQ
 file:///
@@ -314,7 +314,7 @@ file:///3%aexrb7UdZ5GpR4ZIfoxwL/vQV%4a2z
 f5ms.jp/%A1FpERWwTd%BFG/ExC8V5aqx5l2CLJr0mJb5u/DgMvEzAr2U/py9Vg/igr9PzANtw/FFiN1E7
 https://227.086.128.010:64985/MDKuFInA86qto5/_cK=4S%49Ic/SPp76/TlV%0Arlwfx/
 Ftp://171.160.94.43/ALTgS46I4VM/55PbbK/5N%faTSE
-Ftp://3zd7z.etw.XN--JXALPDLP/4UztCuTbW2z/LL%2cDI/dTYSi9
+Ftp://3zd7z.etw.XN--KPRW13D/4UztCuTbW2z/LL%2cDI/dTYSi9
 t6xfr.wxjz5p2t5.zl8m4.MN/2cbpjk/gsdm/5Mvc-j3rc/16Wb65&c7x
 ftp://D02-auxxaeqnv9ve-jlmo3.l10vqu.12jl.2mvjwrsqm.BA/r71QLLNu6oGJjG/HbxrX1Grq8/QR%2agZv4hR
 file:///XoCg%EDVf/A3ibJYjU
@@ -476,7 +476,7 @@ ftp://53.151.134.240/uZqGXLUIu-J/=%0C2pO
 FILE:///Kywof5D5q/0TRS/zayrkrnENB
 file:///EYS2nDf%9671qsm34OZeB%e5lUA/rYBDn0DKs0/
 mpuwl0.BA/MkvAvc?j%11K4=9gE%613&qOOEP0t=g7EXs
-g6tylc0.daeczh.4q.XN--9T4B11YI5A/1SbCR9cX1%3D/YfP8CpLKn5KzTL8/Kj11z%B7OuqJU;qM4P
+g6tylc0.daeczh.4q.XN--CLCHC0EA0B2G2A9GCD/1SbCR9cX1%3D/YfP8CpLKn5KzTL8/Kj11z%B7OuqJU;qM4P
 file:///TJa%86AczeCmM5QMhi/Wox~Ajl/WxUF%5eSA:y%0fD%E21/x%cca%d3Qgx/8iWJ5-h%26/fCK%01nQNrK8#ygTTB
 file:///~%303cUUVYTEaQU5%5DXbogiPKb/favR2rETEh/9TXM%15u/nYCOZpZgL
 file:///mJM%a1/jv5%53QDqE/bFMu0CBp
@@ -496,7 +496,7 @@ http://gpu16lz.LS/9e%daJrwQfHEpFvsZ3jx/c
 file://ij9anjtok86ro.uN-BGDQ855IB.sDXAQR.5kr8kz.3J3M8XRM.18r3s0g-6.4rjsmwue0lwao0og17d-5-1.F1h3qgkul29yw2t4p4se5clomncxhmoy.g6c9tbz7.pa/5LMtmbl/1tfIF/pBOV7Hc
 HTTPS://bF2RA.kw/1TA9pTTBg/nM/VSRo%85Kt?%62mxNfo=HDowgwkM3&9oPOLH2=yKOxIe+YNtt
 5.Piba4ac.JE/55M1H/AZXdj
-m-k6-ej7x.XN--HLCJ6AYA9ESC7A/suVrNQSIj9/TmRhHbe/o&0dbqR/
+m-k6-ej7x.XN--J6W193G/suVrNQSIj9/TmRhHbe/o&0dbqR/
 ftp://242.228.138.8/o%CC_QjILS%17aYH/%caw8CcVZyPRZ/
 hGE9YH3D6.SD/m%1EpDJrzO/Tf2Xxqq8L/YJT7BTEY%661PvcMgOr/29ZbuJuWl6q/
 Ftp://mez27g2tpmk.MC/%B8AHk%95etDns%46/gXbsCn%6C-/s8_Jmy/DhmfT~Di6KD
@@ -633,7 +633,7 @@ http://047.014.184.200/Z_QdOwjzfBue4Nt/a
 Http://w9ys35.wb55p6l.hxl.rs/Y97%58Lp8JjLZw/5L
 FILE://155.24.106.255/3VEZIT7
 d1y8zvhwq40bi3tom.hPCZ.gJ-286X.TG/ayWKrgAvF6tn/L4SgquZT6C/1DmNe/CI69rJ/%f6QrzZGkSQ
-lda5l5wc.XN--HGBK6AJ7F53BBA/pr80SSZ/eNM1%D50lp/Rc%8EimOET
+lda5l5wc.XN--KPRY57D/pr80SSZ/eNM1%D50lp/Rc%8EimOET
 l13t2t.sk/O%2BmRkw/@0AgGL@NX/wgt&aggDcp#0IYe'C
 FILE://a6ys9a4.xj.BY/%99BGXp/F=yJtxc71/gvXuHuB9k
 212.072.006.032/6kV8ce%2e/%e7lzm-HB%4artP/zg6tWMW7RIG?U7=HAXw$D3sM%7DyDJ&Gt=

Modified: lucene/dev/trunk/lucene/analysis/common/src/test/org/apache/lucene/analysis/standard/TestUAX29URLEmailTokenizerFactory.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/analysis/common/src/test/org/apache/lucene/analysis/standard/TestUAX29URLEmailTokenizerFactory.java?rev=1548595&r1=1548594&r2=1548595&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/analysis/common/src/test/org/apache/lucene/analysis/standard/TestUAX29URLEmailTokenizerFactory.java (original)
+++ lucene/dev/trunk/lucene/analysis/common/src/test/org/apache/lucene/analysis/standard/TestUAX29URLEmailTokenizerFactory.java Fri Dec  6 16:51:43 2013
@@ -75,7 +75,7 @@ public class TestUAX29URLEmailTokenizerF
         + " samba Halta gamba "
         + "ftp://119.220.152.185/JgJgdZ/31aW5c/viWlfQSTs5/1c8U5T/ih5rXx/YfUJ/xBW1uHrQo6.R\n"
         + "M19nq.0URV4A.Me.CC/mj0kgt6hue/dRXv8YVLOw9v/CIOqb\n"
-        + "Https://yu7v33rbt.vC6U3.XN--JXALPDLP/y%4fMSzkGFlm/wbDF4m"
+        + "Https://yu7v33rbt.vC6U3.XN--KPRW13D/y%4fMSzkGFlm/wbDF4m"
         + " inter Locutio "
         + "[c2d4::]/%471j5l/j3KFN%AAAn/Fip-NisKH/\n"
         + "file:///aXvSZS34is/eIgM8s~U5dU4Ifd%c7"
@@ -91,7 +91,7 @@ public class TestUAX29URLEmailTokenizerF
           "samba", "Halta", "gamba",
           "ftp://119.220.152.185/JgJgdZ/31aW5c/viWlfQSTs5/1c8U5T/ih5rXx/YfUJ/xBW1uHrQo6.R",
           "M19nq.0URV4A.Me.CC/mj0kgt6hue/dRXv8YVLOw9v/CIOqb",
-          "Https://yu7v33rbt.vC6U3.XN--JXALPDLP/y%4fMSzkGFlm/wbDF4m",
+          "Https://yu7v33rbt.vC6U3.XN--KPRW13D/y%4fMSzkGFlm/wbDF4m",
           "inter", "Locutio",
           "[c2d4::]/%471j5l/j3KFN%AAAn/Fip-NisKH/",
           "file:///aXvSZS34is/eIgM8s~U5dU4Ifd%c7",

Modified: lucene/dev/trunk/lucene/analysis/common/src/tools/java/org/apache/lucene/analysis/standard/GenerateJflexTLDMacros.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/analysis/common/src/tools/java/org/apache/lucene/analysis/standard/GenerateJflexTLDMacros.java?rev=1548595&r1=1548594&r2=1548595&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/analysis/common/src/tools/java/org/apache/lucene/analysis/standard/GenerateJflexTLDMacros.java (original)
+++ lucene/dev/trunk/lucene/analysis/common/src/tools/java/org/apache/lucene/analysis/standard/GenerateJflexTLDMacros.java Fri Dec  6 16:51:43 2013
@@ -60,20 +60,21 @@ public class GenerateJflexTLDMacros {
   
   private static final String APACHE_LICENSE 
     = "/*" + NL
-      + " * Copyright 2001-2005 The Apache Software Foundation." + NL
-      + " *" + NL
-      + " * Licensed under the Apache License, Version 2.0 (the \"License\");" + NL
-      + " * you may not use this file except in compliance with the License." + NL
-      + " * You may obtain a copy of the License at" + NL
-      + " *" + NL
-      + " *      http://www.apache.org/licenses/LICENSE-2.0" + NL
-      + " *" + NL
-      + " * Unless required by applicable law or agreed to in writing, software" + NL
-      + " * distributed under the License is distributed on an \"AS IS\" BASIS," + NL
-      + " * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied." + NL
-      + " * See the License for the specific language governing permissions and" + NL
-      + " * limitations under the License." + NL
-      + " */" + NL + NL;
+    + " * Licensed to the Apache Software Foundation (ASF) under one or more" + NL
+    + " * contributor license agreements.  See the NOTICE file distributed with" + NL
+    + " * this work for additional information regarding copyright ownership." + NL
+    + " * The ASF licenses this file to You under the Apache License, Version 2.0" + NL
+    + " * (the \"License\"); you may not use this file except in compliance with" + NL
+    + " * the License.  You may obtain a copy of the License at" + NL
+    + " *" + NL
+    + " *     http://www.apache.org/licenses/LICENSE-2.0" + NL
+    + " *" + NL
+    + " * Unless required by applicable law or agreed to in writing, software" + NL
+    + " * distributed under the License is distributed on an \"AS IS\" BASIS," + NL
+    + " * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied." + NL
+    + " * See the License for the specific language governing permissions and" + NL
+    + " * limitations under the License." + NL
+    + " */" + NL;
     
   private static final Pattern TLD_PATTERN_1 
     = Pattern.compile("([-A-Za-z0-9]+)\\.\\s+NS\\s+.*");

Modified: lucene/dev/trunk/lucene/analysis/icu/src/tools/java/org/apache/lucene/analysis/icu/GenerateJFlexSupplementaryMacros.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/analysis/icu/src/tools/java/org/apache/lucene/analysis/icu/GenerateJFlexSupplementaryMacros.java?rev=1548595&r1=1548594&r2=1548595&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/analysis/icu/src/tools/java/org/apache/lucene/analysis/icu/GenerateJFlexSupplementaryMacros.java (original)
+++ lucene/dev/trunk/lucene/analysis/icu/src/tools/java/org/apache/lucene/analysis/icu/GenerateJFlexSupplementaryMacros.java Fri Dec  6 16:51:43 2013
@@ -36,40 +36,45 @@ public class GenerateJFlexSupplementaryM
   static {
     DATE_FORMAT.setTimeZone(TimeZone.getTimeZone("UTC"));
   }
-  
-  private static final String APACHE_LICENSE 
-    = "/*" + NL
-      + " * Copyright 2010 The Apache Software Foundation." + NL
-      + " *" + NL
-      + " * Licensed under the Apache License, Version 2.0 (the \"License\");" + NL
-      + " * you may not use this file except in compliance with the License." + NL
-      + " * You may obtain a copy of the License at" + NL
+
+  private static final String APACHE_LICENSE
+      = "/*" + NL
+      + " * Licensed to the Apache Software Foundation (ASF) under one or more" + NL
+      + " * contributor license agreements.  See the NOTICE file distributed with" + NL
+      + " * this work for additional information regarding copyright ownership." + NL
+      + " * The ASF licenses this file to You under the Apache License, Version 2.0" + NL
+      + " * (the \"License\"); you may not use this file except in compliance with" + NL
+      + " * the License.  You may obtain a copy of the License at" + NL
       + " *" + NL
-      + " *      http://www.apache.org/licenses/LICENSE-2.0" + NL
+      + " *     http://www.apache.org/licenses/LICENSE-2.0" + NL
       + " *" + NL
       + " * Unless required by applicable law or agreed to in writing, software" + NL
       + " * distributed under the License is distributed on an \"AS IS\" BASIS," + NL
       + " * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied." + NL
       + " * See the License for the specific language governing permissions and" + NL
       + " * limitations under the License." + NL
-      + " */" + NL + NL;
+      + " */" + NL;
     
   
   public static void main(String args[]) {
     outputHeader();
-    outputMacro("ALetterSupp",         "[:WordBreak=ALetter:]");
-    outputMacro("FormatSupp",          "[:WordBreak=Format:]");
-    outputMacro("ExtendSupp",          "[:WordBreak=Extend:]");
-    outputMacro("NumericSupp",         "[:WordBreak=Numeric:]");
-    outputMacro("KatakanaSupp",        "[:WordBreak=Katakana:]");
-    outputMacro("MidLetterSupp",       "[:WordBreak=MidLetter:]");
-    outputMacro("MidNumSupp",          "[:WordBreak=MidNum:]");
-    outputMacro("MidNumLetSupp",       "[:WordBreak=MidNumLet:]");
-    outputMacro("ExtendNumLetSupp",    "[:WordBreak=ExtendNumLet:]");
-    outputMacro("ExtendNumLetSupp",    "[:WordBreak=ExtendNumLet:]");
-    outputMacro("ComplexContextSupp",  "[:LineBreak=Complex_Context:]");
-    outputMacro("HanSupp",             "[:Script=Han:]");
-    outputMacro("HiraganaSupp",        "[:Script=Hiragana:]");
+    outputMacro("ALetterSupp",           "[:WordBreak=ALetter:]");
+    outputMacro("FormatSupp",            "[:WordBreak=Format:]");
+    outputMacro("NumericSupp",           "[:WordBreak=Numeric:]");
+    outputMacro("ExtendSupp",            "[:WordBreak=Extend:]");
+    outputMacro("KatakanaSupp",          "[:WordBreak=Katakana:]");
+    outputMacro("MidLetterSupp",         "[:WordBreak=MidLetter:]");
+    outputMacro("MidNumSupp",            "[:WordBreak=MidNum:]");
+    outputMacro("MidNumLetSupp",         "[:WordBreak=MidNumLet:]");
+    outputMacro("ExtendNumLetSupp",      "[:WordBreak=ExtendNumLet:]");
+    outputMacro("ExtendNumLetSupp",      "[:WordBreak=ExtendNumLet:]");
+    outputMacro("ComplexContextSupp",    "[:LineBreak=Complex_Context:]");
+    outputMacro("HanSupp",               "[:Script=Han:]");
+    outputMacro("HiraganaSupp",          "[:Script=Hiragana:]");
+    outputMacro("SingleQuoteSupp",       "[:WordBreak=Single_Quote:]");
+    outputMacro("DoubleQuoteSupp",       "[:WordBreak=Double_Quote:]");
+    outputMacro("HebrewLetterSupp",      "[:WordBreak=Hebrew_Letter:]");
+    outputMacro("RegionalIndicatorSupp", "[:WordBreak=Regional_Indicator:]");
   }
   
   static void outputHeader() {

Modified: lucene/dev/trunk/lucene/common-build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/common-build.xml?rev=1548595&r1=1548594&r2=1548595&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/common-build.xml (original)
+++ lucene/dev/trunk/lucene/common-build.xml Fri Dec  6 16:51:43 2013
@@ -476,7 +476,7 @@
     <available property="jflex.present" classname="jflex.anttask.JFlexTask">
       <classpath refid="jflex.classpath"/>
     </available>
-    <fail unless="jflex.present">
+    <fail unless="jflex.present">&#xA0;
       ##################################################################
       JFlex not found.
       JFlex Home: ${jflex.home}
@@ -484,14 +484,14 @@
       Please install the jFlex 1.5 version (currently not released)
       from its SVN repository:
 
-       svn co -r 623 http://jflex.svn.sourceforge.net/svnroot/jflex/trunk jflex
+       svn co -r 722 https://svn.code.sf.net/p/jflex/code/trunk jflex
        cd jflex
        mvn install
 
       Then, create a build.properties file either in your home
       directory, or within the Lucene directory and set the jflex.home
       property to the path where the JFlex trunk checkout is located
-      (in the above example its the directory called "jflex").
+      (in the above example it's the directory called "jflex").
 
       ##################################################################
     </fail>