Fixed translation tool servlet issues: got rid of title, deleted white space, dealt with UTF8 better, etc.
This commit is contained in:
parent
835e74c0cd
commit
5a0e454a2e
6 changed files with 1574 additions and 1434 deletions
|
@ -46,6 +46,7 @@ public class BasicTibetanTranscriptionConverter implements FontConverterConstant
|
||||||
private static final int WYLIE_TO_ACIP=2;
|
private static final int WYLIE_TO_ACIP=2;
|
||||||
private static final int UNICODE_TO_WYLIE=3;
|
private static final int UNICODE_TO_WYLIE=3;
|
||||||
private static final int WYLIE_TO_UNICODE=4;
|
private static final int WYLIE_TO_UNICODE=4;
|
||||||
|
private static final int TIBETAN_UNICODE_RANGE[] = {3840, 4095};
|
||||||
|
|
||||||
/** Converts from the Acip transliteration scheme to EWTS.*/
|
/** Converts from the Acip transliteration scheme to EWTS.*/
|
||||||
public static String acipToWylie(String acip)
|
public static String acipToWylie(String acip)
|
||||||
|
@ -253,6 +254,18 @@ public class BasicTibetanTranscriptionConverter implements FontConverterConstant
|
||||||
return nuevaPalabra;*/
|
return nuevaPalabra;*/
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static int getTibetanUnicodeStart(String unicode, int pos)
|
||||||
|
{
|
||||||
|
for(; pos < unicode.length(); pos++ ) if(unicode.codePointAt(pos)>=TIBETAN_UNICODE_RANGE[0] && unicode.codePointAt(pos)<=TIBETAN_UNICODE_RANGE[1]) return pos;
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static int getTibetanUnicodeEnd(String unicode, int pos)
|
||||||
|
{
|
||||||
|
for(; pos < unicode.length(); pos++ ) if(unicode.codePointAt(pos)<TIBETAN_UNICODE_RANGE[0] || unicode.codePointAt(pos)>TIBETAN_UNICODE_RANGE[1]) return pos;
|
||||||
|
return pos;
|
||||||
|
}
|
||||||
|
|
||||||
/** Converts Tibetan Unicode to EWTS. */
|
/** Converts Tibetan Unicode to EWTS. */
|
||||||
public static String unicodeToWylie(String unicode)
|
public static String unicodeToWylie(String unicode)
|
||||||
{
|
{
|
||||||
|
@ -261,9 +274,9 @@ public class BasicTibetanTranscriptionConverter implements FontConverterConstant
|
||||||
TibetanDocument tibDoc;
|
TibetanDocument tibDoc;
|
||||||
StringBuffer errors;
|
StringBuffer errors;
|
||||||
int posStart=0, posEnd;
|
int posStart=0, posEnd;
|
||||||
while((posStart = Manipulate.getTibetanUnicodeStart(unicode, posStart))>=0)
|
while((posStart = getTibetanUnicodeStart(unicode, posStart))>=0)
|
||||||
{
|
{
|
||||||
posEnd = Manipulate.getTibetanUnicodeEnd(unicode, posStart+1);
|
posEnd = getTibetanUnicodeEnd(unicode, posStart+1);
|
||||||
startString = unicode.substring(0, posStart);
|
startString = unicode.substring(0, posStart);
|
||||||
tibetanString = unicode.substring(posStart, posEnd);
|
tibetanString = unicode.substring(posStart, posEnd);
|
||||||
endString = unicode.substring(posEnd);
|
endString = unicode.substring(posEnd);
|
||||||
|
|
|
@ -24,11 +24,12 @@ package org.thdl.tib.scanner;
|
||||||
|
|
||||||
public class Manipulate
|
public class Manipulate
|
||||||
{
|
{
|
||||||
private static String endOfParagraphMarks = "/;|!:^@#$%=";
|
private static String endOfParagraphMarks = "/;|!:^@#$%=,";
|
||||||
private static String bracketMarks = "<>(){}[]";
|
private static String bracketMarks = "<>(){}[]";
|
||||||
private static String endOfSyllableMarks = " _\t";
|
private static String endOfSyllableMarks = " _\t";
|
||||||
private static String allStopMarkers = endOfSyllableMarks + endOfParagraphMarks + bracketMarks;
|
private static String allStopMarkers = endOfSyllableMarks + endOfParagraphMarks + bracketMarks;
|
||||||
private static final int TIBETAN_UNICODE_RANGE[] = {3840, 4095};
|
private static final int TIBETAN_UNICODE_RANGE[] = {3840, 4095};
|
||||||
|
private static String JSON_ESCAPABLES = "\"\\/";
|
||||||
|
|
||||||
/* public static String[] parseFields (String s, char delimiter)
|
/* public static String[] parseFields (String s, char delimiter)
|
||||||
{
|
{
|
||||||
|
@ -217,6 +218,7 @@ public class Manipulate
|
||||||
return ch>=0xF20 && ch<=0xF33;
|
return ch>=0xF20 && ch<=0xF33;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public static boolean guessIfUnicode(String line)
|
public static boolean guessIfUnicode(String line)
|
||||||
{
|
{
|
||||||
char ch;
|
char ch;
|
||||||
|
@ -256,14 +258,18 @@ public class Manipulate
|
||||||
int i=0;
|
int i=0;
|
||||||
char ch, ch2;
|
char ch, ch2;
|
||||||
|
|
||||||
while (!isVowel(sil.charAt(i))) i++;
|
while (!isVowel(sil.charAt(i)))
|
||||||
|
{
|
||||||
|
i++;
|
||||||
|
if (i>=sil.length()) return null;
|
||||||
|
}
|
||||||
if (i==0) return "";
|
if (i==0) return "";
|
||||||
|
|
||||||
i--;
|
i--;
|
||||||
if (i==-1) return "";
|
if (i==-1) return "";
|
||||||
|
|
||||||
if (sil.charAt(i)=='-') i--;
|
if (sil.charAt(i)=='-') i--;
|
||||||
|
if (i>0 && sil.charAt(i)=='w') i--;
|
||||||
ch = sil.charAt(i);
|
ch = sil.charAt(i);
|
||||||
|
|
||||||
// check to see if it is a subscript (y, r, l, w)
|
// check to see if it is a subscript (y, r, l, w)
|
||||||
|
@ -271,7 +277,7 @@ public class Manipulate
|
||||||
{
|
{
|
||||||
switch (ch)
|
switch (ch)
|
||||||
{
|
{
|
||||||
case 'r': case 'l': case 'w': i--;
|
case 'r': case 'l': i--;
|
||||||
break;
|
break;
|
||||||
case 'y':
|
case 'y':
|
||||||
ch2 = sil.charAt(i-1);
|
ch2 = sil.charAt(i-1);
|
||||||
|
@ -283,6 +289,7 @@ public class Manipulate
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (sil.charAt(i)=='+') i--;
|
||||||
if (i==0) return sil.substring(i,i+1);
|
if (i==0) return sil.substring(i,i+1);
|
||||||
ch = sil.charAt(i);
|
ch = sil.charAt(i);
|
||||||
ch2 = sil.charAt(i-1);
|
ch2 = sil.charAt(i-1);
|
||||||
|
@ -294,6 +301,8 @@ public class Manipulate
|
||||||
{
|
{
|
||||||
case 'k': case 'c': case 't': case 'p': case 'z':
|
case 'k': case 'c': case 't': case 'p': case 'z':
|
||||||
return sil.substring(i-1,i+1);
|
return sil.substring(i-1,i+1);
|
||||||
|
case '+':
|
||||||
|
return sil.substring(i-2, i-1);
|
||||||
case 's':
|
case 's':
|
||||||
if (i-2>=0 && sil.charAt(i-2)=='t') return "tsh";
|
if (i-2>=0 && sil.charAt(i-2)=='t') return "tsh";
|
||||||
else return "sh";
|
else return "sh";
|
||||||
|
@ -429,6 +438,35 @@ public class Manipulate
|
||||||
return ncr.toString();
|
return ncr.toString();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static String toJSON(String str)
|
||||||
|
{
|
||||||
|
int pos, i, len;
|
||||||
|
for (i=0; i<str.length(); i++)
|
||||||
|
{
|
||||||
|
pos = JSON_ESCAPABLES.indexOf(str.charAt(i));
|
||||||
|
if (pos>=0)
|
||||||
|
{
|
||||||
|
len = str.length();
|
||||||
|
str = str.substring(0, i) + "\\" + str.substring(i, len);
|
||||||
|
i++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
str = replace(str, "\b", "\\b");
|
||||||
|
str = replace(str, "\f", "\\f");
|
||||||
|
str = replace(str, "\n", "\\n");
|
||||||
|
str = replace(str, "\r", "\\r");
|
||||||
|
str = replace(str, "\t", "\\t");
|
||||||
|
return str;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static boolean containsLetters(String str)
|
||||||
|
{
|
||||||
|
int i=0;
|
||||||
|
if (str==null) return false;
|
||||||
|
while (i<str.length()) if (Character.isLetter(str.charAt(i++))) return true;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
public static String unescape(String s) {
|
public static String unescape(String s) {
|
||||||
int i=0,len=s.length();
|
int i=0,len=s.length();
|
||||||
char c;
|
char c;
|
||||||
|
@ -459,5 +497,4 @@ public class Manipulate
|
||||||
for(; pos < unicode.length(); pos++ ) if(unicode.codePointAt(pos)<TIBETAN_UNICODE_RANGE[0] || unicode.codePointAt(pos)>TIBETAN_UNICODE_RANGE[1]) return pos;
|
for(; pos < unicode.length(); pos++ ) if(unicode.codePointAt(pos)<TIBETAN_UNICODE_RANGE[0] || unicode.codePointAt(pos)>TIBETAN_UNICODE_RANGE[1]) return pos;
|
||||||
return pos;
|
return pos;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -42,6 +42,7 @@ public class OnLineScannerFilter extends HttpServlet
|
||||||
private final static String dictNameProperty = "onlinescannerfilter.dict-file-name";
|
private final static String dictNameProperty = "onlinescannerfilter.dict-file-name";
|
||||||
private final static String otherLinksProperty = "onlinescannerfilter.links-to-other-stuff";
|
private final static String otherLinksProperty = "onlinescannerfilter.links-to-other-stuff";
|
||||||
private final static String moreLinksProperty = "onlinescannerfilter.links-to-more-stuff";
|
private final static String moreLinksProperty = "onlinescannerfilter.links-to-more-stuff";
|
||||||
|
private final static String smallerLinksProperty = "onlinescannerfilter.links-to-smaller-stuff";
|
||||||
private final static String clearStr = "Clear";
|
private final static String clearStr = "Clear";
|
||||||
private final static String buttonStr = "button";
|
private final static String buttonStr = "button";
|
||||||
private final static String scriptStr = "script";
|
private final static String scriptStr = "script";
|
||||||
|
@ -54,6 +55,7 @@ public class OnLineScannerFilter extends HttpServlet
|
||||||
|
|
||||||
public OnLineScannerFilter() //throws Exception
|
public OnLineScannerFilter() //throws Exception
|
||||||
{
|
{
|
||||||
|
System.setProperty("java.awt.headless","true");
|
||||||
rb = ResourceBundle.getBundle(propertyFile);
|
rb = ResourceBundle.getBundle(propertyFile);
|
||||||
sl = new ScannerLogger();
|
sl = new ScannerLogger();
|
||||||
|
|
||||||
|
@ -75,7 +77,14 @@ public class OnLineScannerFilter extends HttpServlet
|
||||||
HttpServletResponse response) //throws IOException, ServletException
|
HttpServletResponse response) //throws IOException, ServletException
|
||||||
{
|
{
|
||||||
String answer, parrafo = null, checkboxName;
|
String answer, parrafo = null, checkboxName;
|
||||||
|
try
|
||||||
|
{
|
||||||
|
request.setCharacterEncoding("UTF8");
|
||||||
|
}
|
||||||
|
catch(Exception e)
|
||||||
|
{
|
||||||
|
// do nothing
|
||||||
|
}
|
||||||
// if this line is included in the constructor, it works on the orion server but not on wyllie!
|
// if this line is included in the constructor, it works on the orion server but not on wyllie!
|
||||||
ThdlOptions.setUserPreference("thdl.rely.on.system.tmw.fonts", true);
|
ThdlOptions.setUserPreference("thdl.rely.on.system.tmw.fonts", true);
|
||||||
ThdlOptions.setUserPreference("thdl.rely.on.system.tm.fonts", true);
|
ThdlOptions.setUserPreference("thdl.rely.on.system.tm.fonts", true);
|
||||||
|
@ -102,15 +111,18 @@ public class OnLineScannerFilter extends HttpServlet
|
||||||
out.println("<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">");
|
out.println("<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">");
|
||||||
out.println("<html xmlns=\"http://www.w3.org/1999/xhtml\">");
|
out.println("<html xmlns=\"http://www.w3.org/1999/xhtml\">");
|
||||||
out.println("<head>");
|
out.println("<head>");
|
||||||
|
out.println(" <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />");
|
||||||
if (useTHDLBanner)
|
if (useTHDLBanner)
|
||||||
{
|
{
|
||||||
out.println(" <title>Tibetan and Himalayan Digital Library - The Online Tibetan to English Translation/Dictionary Tool</title>");
|
out.println(" <title>Tibetan and Himalayan Digital Library - The Online Tibetan to English Dictionary and Translation Tool</title>");
|
||||||
out.println(" <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />");
|
|
||||||
out.println(" <script type=\"text/javascript\" src=\"http://www.thdl.org/scripts/thdl_scripts.js\"></script>");
|
out.println(" <script type=\"text/javascript\" src=\"http://www.thdl.org/scripts/thdl_scripts.js\"></script>");
|
||||||
out.println(" <link rel=\"stylesheet\" type=\"text/css\" href=\"http://www.thdl.org/style/thdl-styles.css\"/>");
|
out.println(" <link rel=\"stylesheet\" type=\"text/css\" href=\"http://www.thdl.org/style/thdl-styles.css\"/>");
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
out.println(" <title>The Online Tibetan to English Translation/Dictionary Tool</title>");
|
{
|
||||||
|
out.println(" <title>The Online Tibetan to English Dictionary and Translation Tool</title>");
|
||||||
|
out.println(" <link rel=\"stylesheet\" type=\"text/css\" href=\"stylesheets/base.css\"/>");
|
||||||
|
}
|
||||||
|
|
||||||
out.println(" <meta name=\"keywords\" content=\"tibetan, english, dictionary, jim valby, rangjung yeshe, jeffrey hopkins, tsig mdzod chen mo, online, translation, scanner, parser, buddhism, language, processing, font, dharma, chos, tibet\">");
|
out.println(" <meta name=\"keywords\" content=\"tibetan, english, dictionary, jim valby, rangjung yeshe, jeffrey hopkins, tsig mdzod chen mo, online, translation, scanner, parser, buddhism, language, processing, font, dharma, chos, tibet\">");
|
||||||
out.println(" <meta name=\"Description\" content=\"This Java tool takes Tibetan language passages and divides the passages up into their component phrases and words, and displays corresponding dictionary definitions.\">");
|
out.println(" <meta name=\"Description\" content=\"This Java tool takes Tibetan language passages and divides the passages up into their component phrases and words, and displays corresponding dictionary definitions.\">");
|
||||||
|
@ -158,9 +170,6 @@ public class OnLineScannerFilter extends HttpServlet
|
||||||
out.println("</div><!--END sub_banner-->");
|
out.println("</div><!--END sub_banner-->");
|
||||||
out.println("<div id=\"main\">");
|
out.println("<div id=\"main\">");
|
||||||
}
|
}
|
||||||
|
|
||||||
out.println("<h3 align=\"center\">The Online Tibetan to English Translation/Dictionary Tool</h3>");
|
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
out.println(rb.getString(otherLinksProperty));
|
out.println(rb.getString(otherLinksProperty));
|
||||||
|
@ -180,18 +189,18 @@ public class OnLineScannerFilter extends HttpServlet
|
||||||
}
|
}
|
||||||
out.println("<table border=\"0\" width=\"100%\">");
|
out.println("<table border=\"0\" width=\"100%\">");
|
||||||
out.println(" <tr>");
|
out.println(" <tr>");
|
||||||
out.println(" <td width=\"25%\">");
|
out.println(" <td width=\"18%\" align=\"left\"><strong>Display results in:</strong></td>");
|
||||||
out.println(" <p>Display results in:</td>");
|
out.println(" <td width=\"41%\" align=\"right\">");
|
||||||
out.println(" <td width=\"75%\">");
|
out.println(" <input type=\"radio\" value=\"" + tibetanStr + "\" ");
|
||||||
out.println(" <p><input type=\"radio\" value=\"" + tibetanStr + "\" ");
|
|
||||||
if (wantsTibetan) out.println("checked ");
|
if (wantsTibetan) out.println("checked ");
|
||||||
out.println("name=\"" + scriptStr + "\">Tibetan script (using <a href=\"http://www.thdl.org/xml/show.php?xml=/tools/tibfonts.xml&l=uva10928423419921\" target=\"_blank\">Tibetan Machine Uni font</a>)<br/>");
|
out.println("name=\"" + scriptStr + "\">Tibetan script (<a href=\"http://www.thlib.org/tools/#wiki=/access/wiki/site/26a34146-33a6-48ce-001e-f16ce7908a6a/tibetan%20machine%20uni.html\" target=\"_top\">Tibetan Machine Uni</a> font)</td>");
|
||||||
|
out.println(" <td width=\"16%\" align=\"left\">");
|
||||||
out.println(" <input type=\"radio\" value=\"roman\" ");
|
out.println(" <input type=\"radio\" value=\"roman\" ");
|
||||||
if (!wantsTibetan) out.println("checked ");
|
if (!wantsTibetan) out.println("checked ");
|
||||||
out.println("name=\"" + scriptStr + "\">Roman script</td>");
|
out.println("name=\"" + scriptStr + "\">Roman script</td>");
|
||||||
|
out.println(" <td width=\"25%\" align=\"right\">");
|
||||||
|
out.println("<a href=\"http://www.thlib.org/tools/#wiki=/access/wiki/site/c06fa8cf-c49c-4ebc-007f-482de5382105/tibetan%20translation%20tool.html\" target=\"_top\">Help & Offline Installation</a></td>");
|
||||||
out.println(" </tr>");
|
out.println(" </tr>");
|
||||||
out.println("</table>");
|
|
||||||
|
|
||||||
if (dictionaries!=null)
|
if (dictionaries!=null)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
@ -200,7 +209,7 @@ public class OnLineScannerFilter extends HttpServlet
|
||||||
checkedDicts = new boolean[dictionaries.length];
|
checkedDicts = new boolean[dictionaries.length];
|
||||||
/* out.println(" <tr>");
|
/* out.println(" <tr>");
|
||||||
out.println("<td width=\""+ percent +"%\">Search in dictionaries:</td>");*/
|
out.println("<td width=\""+ percent +"%\">Search in dictionaries:</td>");*/
|
||||||
out.println("<p>Search in dictionaries: ");
|
out.println("<tr><td colspan=\"4\"><strong>Search in dictionaries: </strong>");
|
||||||
allUnchecked=true;
|
allUnchecked=true;
|
||||||
for (i=0; i<dictionaries.length; i++)
|
for (i=0; i<dictionaries.length; i++)
|
||||||
{
|
{
|
||||||
|
@ -239,22 +248,43 @@ public class OnLineScannerFilter extends HttpServlet
|
||||||
out.print(">" + DictionarySource.defTags[i] + " ");
|
out.print(">" + DictionarySource.defTags[i] + " ");
|
||||||
// out.println(" + "</td>");
|
// out.println(" + "</td>");
|
||||||
}
|
}
|
||||||
// out.println(" </tr>");
|
out.println(" </td></tr>");
|
||||||
}
|
}
|
||||||
// fix for updates
|
// fix for updates
|
||||||
else ds = BitDictionarySource.getAllDictionaries();
|
else ds = BitDictionarySource.getAllDictionaries();
|
||||||
// out.println("</table>");
|
// out.println("</table>");
|
||||||
out.println("</p>");
|
// out.println("</p>");
|
||||||
out.println("<table border=\"0\" width=\"100%\">");
|
// out.println("<table border=\"0\" width=\"100%\">");
|
||||||
out.println(" <tr>");
|
out.println(" <tr>");
|
||||||
out.println(" <td width=\"35%\">");
|
out.println(" <td><strong>Input text:</strong></td>");
|
||||||
out.println(" <p><strong>Input text:</strong></p>");
|
out.println(" <td><input type=\"submit\" name=\"" + buttonStr + "\" value=\"Translate\"> <input type=\"submit\" name=\"" + buttonStr + "\" value=\"" + clearStr + "\"></td>");
|
||||||
out.println(" </td>");
|
out.println(" <td colspan\"2\"> </td");
|
||||||
out.println(" <td width=\"65%\">");
|
|
||||||
out.println(" <p> <input type=\"submit\" name=\"" + buttonStr + "\" value=\"Translate\"> <input type=\"submit\" name=\"" + buttonStr + "\" value=\"" + clearStr + "\"></p>");
|
|
||||||
out.println(" </td>");
|
|
||||||
out.println(" </tr>");
|
out.println(" </tr>");
|
||||||
out.println("</table>");
|
out.println("</table>");
|
||||||
|
answer = request.getParameter(buttonStr);
|
||||||
|
String smallerLinks=null;
|
||||||
|
if (answer == null || answer != null && !answer.equals(clearStr))
|
||||||
|
{
|
||||||
|
parrafo = request.getParameter("parrafo");
|
||||||
|
}
|
||||||
|
if (parrafo==null)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
smallerLinks = rb.getString(smallerLinksProperty);
|
||||||
|
}
|
||||||
|
catch (MissingResourceException e)
|
||||||
|
{
|
||||||
|
// do nothing
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
if (smallerLinks!=null)
|
||||||
|
{
|
||||||
|
out.println("<table width=\"100%\">");
|
||||||
|
out.println("<tr>");
|
||||||
|
out.println("<td>");
|
||||||
|
}
|
||||||
|
|
||||||
out.print("<textarea rows=\"5\" name=\"parrafo\" cols=\"40\"");
|
out.print("<textarea rows=\"5\" name=\"parrafo\" cols=\"40\"");
|
||||||
if (wantsTibetan) out.print(" class=\"tib\"");
|
if (wantsTibetan) out.print(" class=\"tib\"");
|
||||||
|
@ -262,29 +292,31 @@ public class OnLineScannerFilter extends HttpServlet
|
||||||
|
|
||||||
// Paragraph should be empty if the user just clicked the clear button
|
// Paragraph should be empty if the user just clicked the clear button
|
||||||
answer = request.getParameter(buttonStr);
|
answer = request.getParameter(buttonStr);
|
||||||
if (answer == null || answer != null && !answer.equals(clearStr))
|
if (parrafo!=null)
|
||||||
{
|
{
|
||||||
parrafo = request.getParameter("parrafo");
|
out.print(parrafo);
|
||||||
if (parrafo!=null) out.print(parrafo);
|
}
|
||||||
|
out.println("</textarea>");
|
||||||
|
if (smallerLinks!=null)
|
||||||
|
{
|
||||||
|
out.println("</td>");
|
||||||
|
out.println("<td>");
|
||||||
|
out.println(smallerLinks);
|
||||||
|
out.println("</td>");
|
||||||
|
out.println("</tr>");
|
||||||
|
out.println("</table>");
|
||||||
}
|
}
|
||||||
|
|
||||||
out.println("</textarea>");
|
|
||||||
out.println("</form>");
|
out.println("</form>");
|
||||||
try
|
|
||||||
{
|
|
||||||
out.println(rb.getString(moreLinksProperty));
|
|
||||||
}
|
|
||||||
catch (MissingResourceException e)
|
|
||||||
{
|
|
||||||
// do nothing
|
|
||||||
}
|
|
||||||
|
|
||||||
if (parrafo != null)
|
if (parrafo != null)
|
||||||
{
|
{
|
||||||
sl.writeLog("4\t1");
|
sl.writeLog("4\t1");
|
||||||
if (ds!=null && !ds.isEmpty())
|
if (ds!=null && !ds.isEmpty())
|
||||||
|
{
|
||||||
desglosar(parrafo, out, wantsTibetan);
|
desglosar(parrafo, out, wantsTibetan);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
else sl.writeLog("3\t1");
|
else sl.writeLog("3\t1");
|
||||||
|
|
||||||
out.println(TibetanScanner.copyrightHTML);
|
out.println(TibetanScanner.copyrightHTML);
|
||||||
|
@ -304,7 +336,7 @@ public class OnLineScannerFilter extends HttpServlet
|
||||||
{
|
{
|
||||||
//boolean hayMasLineas=true;
|
//boolean hayMasLineas=true;
|
||||||
//int init = 0, fin;
|
//int init = 0, fin;
|
||||||
//String linea;
|
String tmp;
|
||||||
Object words[];
|
Object words[];
|
||||||
|
|
||||||
if (!in.equals(""))
|
if (!in.equals(""))
|
||||||
|
@ -331,6 +363,17 @@ public class OnLineScannerFilter extends HttpServlet
|
||||||
scanner.scanBody(in);
|
scanner.scanBody(in);
|
||||||
scanner.finishUp();
|
scanner.finishUp();
|
||||||
printText(pw, tibetan);
|
printText(pw, tibetan);
|
||||||
|
try
|
||||||
|
{
|
||||||
|
tmp = rb.getString(moreLinksProperty);
|
||||||
|
pw.println("<p>");
|
||||||
|
pw.println(tmp);
|
||||||
|
pw.println("</p>");
|
||||||
|
}
|
||||||
|
catch (MissingResourceException e)
|
||||||
|
{
|
||||||
|
// do nothing
|
||||||
|
}
|
||||||
printAllDefs(pw, tibetan);
|
printAllDefs(pw, tibetan);
|
||||||
scanner.clearTokens();
|
scanner.clearTokens();
|
||||||
}
|
}
|
||||||
|
@ -393,8 +436,7 @@ public class OnLineScannerFilter extends HttpServlet
|
||||||
|
|
||||||
words = scanner.getWordArray(false);
|
words = scanner.getWordArray(false);
|
||||||
|
|
||||||
if (words == null)
|
if (words == null) return;
|
||||||
return;
|
|
||||||
pw.println("<table border=\"1\" width=\"100%\">");
|
pw.println("<table border=\"1\" width=\"100%\">");
|
||||||
|
|
||||||
for (j = 0; j < words.length; j++) {
|
for (j = 0; j < words.length; j++) {
|
||||||
|
|
|
@ -38,9 +38,12 @@ public class RemoteScannerFilter extends GenericServlet
|
||||||
private TibetanScanner scanner;
|
private TibetanScanner scanner;
|
||||||
private BitDictionarySource ds;
|
private BitDictionarySource ds;
|
||||||
private ScannerLogger sl;
|
private ScannerLogger sl;
|
||||||
|
private static final int INTERNAL = 1;
|
||||||
|
private static final int JSON = 2;
|
||||||
|
|
||||||
public RemoteScannerFilter()
|
public RemoteScannerFilter()
|
||||||
{
|
{
|
||||||
|
System.setProperty("java.awt.headless","true");
|
||||||
ResourceBundle rb = ResourceBundle.getBundle("dictionary");
|
ResourceBundle rb = ResourceBundle.getBundle("dictionary");
|
||||||
sl = new ScannerLogger();
|
sl = new ScannerLogger();
|
||||||
|
|
||||||
|
@ -53,6 +56,7 @@ public class RemoteScannerFilter extends GenericServlet
|
||||||
sl.writeLog("1\t2");
|
sl.writeLog("1\t2");
|
||||||
sl.writeException(e);
|
sl.writeException(e);
|
||||||
}
|
}
|
||||||
|
scanner.getDictionaryDescriptions();
|
||||||
ds = scanner.getDictionarySource();
|
ds = scanner.getDictionarySource();
|
||||||
sl.writeLog("Creation\t2");
|
sl.writeLog("Creation\t2");
|
||||||
}
|
}
|
||||||
|
@ -60,7 +64,28 @@ public class RemoteScannerFilter extends GenericServlet
|
||||||
public void service(ServletRequest req, ServletResponse res) //throws ServletException, IOException
|
public void service(ServletRequest req, ServletResponse res) //throws ServletException, IOException
|
||||||
{
|
{
|
||||||
BufferedReader br;
|
BufferedReader br;
|
||||||
|
int format, i, j, k;
|
||||||
|
try
|
||||||
|
{
|
||||||
|
req.setCharacterEncoding("UTF8");
|
||||||
|
}
|
||||||
|
catch(Exception e)
|
||||||
|
{
|
||||||
|
// do nothing
|
||||||
|
}
|
||||||
|
String linea, dicts = req.getParameter("dicts"), dicDescrip[], jwf = req.getParameter("jwf"), tag;
|
||||||
|
Definitions defs;
|
||||||
|
ByteDictionarySource dict_source;
|
||||||
|
if (jwf!=null) format = JSON;
|
||||||
|
else format = INTERNAL;
|
||||||
|
switch (format)
|
||||||
|
{
|
||||||
|
case INTERNAL:
|
||||||
res.setContentType ("text/plain");
|
res.setContentType ("text/plain");
|
||||||
|
break;
|
||||||
|
case JSON:
|
||||||
|
res.setContentType ("text/x-json");
|
||||||
|
}
|
||||||
sl.setUserIP(req.getRemoteAddr());
|
sl.setUserIP(req.getRemoteAddr());
|
||||||
|
|
||||||
Word word = null, words[] = null;
|
Word word = null, words[] = null;
|
||||||
|
@ -77,8 +102,6 @@ public class RemoteScannerFilter extends GenericServlet
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
int i;
|
|
||||||
String linea, dicts = req.getParameter("dicts"), dicDescrip[];
|
|
||||||
|
|
||||||
if (dicts!=null)
|
if (dicts!=null)
|
||||||
{
|
{
|
||||||
|
@ -105,31 +128,29 @@ public class RemoteScannerFilter extends GenericServlet
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
try
|
if (format==JSON)
|
||||||
{
|
{
|
||||||
br = new BufferedReader(new InputStreamReader(req.getInputStream()));
|
out.println(jwf + "({\"words\":{");
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
|
||||||
{
|
|
||||||
sl.writeLog("1\t2");
|
|
||||||
sl.writeException(e);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* FIXME: sometimes getDef raises a NullPointerException.
|
|
||||||
In the meantime, I'll just keep it from crashing
|
|
||||||
*/
|
|
||||||
sl.writeLog("4\t2");
|
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
scanner.clearTokens();
|
scanner.clearTokens();
|
||||||
|
switch (format)
|
||||||
|
{
|
||||||
|
case INTERNAL:
|
||||||
|
br = req.getReader();
|
||||||
|
sl.writeLog("4\t2");
|
||||||
while((linea = br.readLine())!= null)
|
while((linea = br.readLine())!= null)
|
||||||
scanner.scanLine(linea);
|
scanner.scanLine(linea);
|
||||||
|
|
||||||
br.close();
|
br.close();
|
||||||
|
break;
|
||||||
|
case JSON:
|
||||||
|
linea = req.getParameter("text");
|
||||||
|
linea = Manipulate.NCR2UnicodeString(linea);
|
||||||
|
if (Manipulate.guessIfUnicode(linea)) linea = BasicTibetanTranscriptionConverter.unicodeToWylie(linea);
|
||||||
|
else if (Manipulate.guessIfAcip(linea)) linea = BasicTibetanTranscriptionConverter.acipToWylie(linea);
|
||||||
|
scanner.scanLine(linea);
|
||||||
|
}
|
||||||
scanner.finishUp();
|
scanner.finishUp();
|
||||||
words = scanner.getWordArray();
|
words = scanner.getWordArray();
|
||||||
|
|
||||||
|
@ -137,10 +158,33 @@ public class RemoteScannerFilter extends GenericServlet
|
||||||
{
|
{
|
||||||
linea = words[i].getDef();
|
linea = words[i].getDef();
|
||||||
if (linea == null) continue;
|
if (linea == null) continue;
|
||||||
|
switch (format)
|
||||||
|
{
|
||||||
|
case INTERNAL:
|
||||||
out.println(words[i].getWylie());
|
out.println(words[i].getWylie());
|
||||||
out.println(linea);
|
out.println(linea);
|
||||||
out.println();
|
out.println();
|
||||||
|
break;
|
||||||
|
case JSON:
|
||||||
|
out.println("\"" + BasicTibetanTranscriptionConverter.wylieToHTMLUnicode(words[i].token) + "\": [");
|
||||||
|
defs = words[i].getDefs();
|
||||||
|
dict_source = (ByteDictionarySource)defs.getDictionarySource();
|
||||||
|
k=0;
|
||||||
|
for (j=0; j<defs.def.length; j++)
|
||||||
|
{
|
||||||
|
while (dict_source.isEmpty(k)) k++;
|
||||||
|
tag = dict_source.getTag(k);
|
||||||
|
k++;
|
||||||
|
out.println("\"" + tag + "\",");
|
||||||
|
out.print("\"" + Manipulate.toJSON(defs.def[j]) + "\"");
|
||||||
|
if (j==defs.def.length-1) out.println();
|
||||||
|
else out.println(",");
|
||||||
}
|
}
|
||||||
|
out.print("]");
|
||||||
|
if (i<words.length-1) out.println(",");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (format==JSON) out.println("}});");
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
|
|
|
@ -32,11 +32,16 @@ public class ScannerLogger
|
||||||
{
|
{
|
||||||
private String fileName;
|
private String fileName;
|
||||||
private String lastIP;
|
private String lastIP;
|
||||||
|
private boolean enabled;
|
||||||
|
|
||||||
public ScannerLogger()
|
public ScannerLogger()
|
||||||
{
|
{
|
||||||
|
String temp;
|
||||||
ResourceBundle rb = ResourceBundle.getBundle("dictionary");
|
ResourceBundle rb = ResourceBundle.getBundle("dictionary");
|
||||||
fileName = rb.getString("remotescannerfilter.log-file-name");
|
fileName = rb.getString("remotescannerfilter.log-file-name");
|
||||||
|
temp = rb.getString("remotescannerfilter.logging-enabled");
|
||||||
|
if (temp==null) enabled = false;
|
||||||
|
else enabled = temp.toLowerCase().equals("yes");
|
||||||
lastIP = null;
|
lastIP = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -53,6 +58,7 @@ public class ScannerLogger
|
||||||
|
|
||||||
synchronized public void writeLog(String s)
|
synchronized public void writeLog(String s)
|
||||||
{
|
{
|
||||||
|
if (!enabled) return;
|
||||||
PrintStream pw = getPrintStream();
|
PrintStream pw = getPrintStream();
|
||||||
if (lastIP!=null) pw.print(lastIP);
|
if (lastIP!=null) pw.print(lastIP);
|
||||||
else pw.print("-");
|
else pw.print("-");
|
||||||
|
@ -78,6 +84,7 @@ public class ScannerLogger
|
||||||
|
|
||||||
synchronized public void writeException(Exception e)
|
synchronized public void writeException(Exception e)
|
||||||
{
|
{
|
||||||
|
if (!enabled) return;
|
||||||
PrintStream pw = getPrintStream();
|
PrintStream pw = getPrintStream();
|
||||||
e.printStackTrace(pw);
|
e.printStackTrace(pw);
|
||||||
pw.flush();
|
pw.flush();
|
||||||
|
|
|
@ -28,9 +28,9 @@ import org.thdl.util.ThdlVersion;
|
||||||
public abstract class TibetanScanner
|
public abstract class TibetanScanner
|
||||||
{
|
{
|
||||||
public static final String version = "The Tibetan to English Translation Tool, version 3.3.0 compiled on " + ThdlVersion.getTimeOfCompilation() + ". ";
|
public static final String version = "The Tibetan to English Translation Tool, version 3.3.0 compiled on " + ThdlVersion.getTimeOfCompilation() + ". ";
|
||||||
public static final String copyrightUnicode="Copyright " + '\u00A9' + " 2000-200??6 by Andr" + '\u00E9' + "s Montano Pellegrini, all rights reserved.";
|
public static final String copyrightUnicode="Copyright " + '\u00A9' + " 2000-2009 by Andr" + '\u00E9' + "s Montano Pellegrini, all rights reserved.";
|
||||||
public static final String copyrightASCII="Copyright 2000-2006 by Andres Montano Pellegrini, all rights reserved.";
|
public static final String copyrightASCII="Copyright 2000-2009 by Andres Montano Pellegrini, all rights reserved.";
|
||||||
public static final String copyrightHTML="<hr><small><strong>" + version + "Copyright © 2000-2006 by <a href=\"http://www.people.virginia.edu/~am2zb/\" target=\"_blank\">Andrés Montano Pellegrini.</a><br/>All rights reserved.</strong></small>";
|
public static final String copyrightHTML="<hr><small><strong>" + version + "Copyright © 2000-2009 by <a href=\"http://www.gaugeus.com/ramblings\" target=\"_blank\">Andrés Montano Pellegrini.</a> All rights reserved.</strong></small>";
|
||||||
|
|
||||||
public static final int NORMAL_MODE=1;
|
public static final int NORMAL_MODE=1;
|
||||||
public static final int DEBUG_MODE=2;
|
public static final int DEBUG_MODE=2;
|
||||||
|
@ -242,9 +242,6 @@ public abstract class TibetanScanner
|
||||||
array[--n] = (Word) li.next();
|
array[--n] = (Word) li.next();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
return array;
|
return array;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue