Changeset 239
- Timestamp:
- 12/31/07 13:43:02 (1 year ago)
- Files:
-
- lex/trunk/jsp/dump.jsp (modified) (2 diffs)
- lex/trunk/jsp/error.jsp (modified) (1 diff)
- lex/trunk/jsp/index.jsp (modified) (1 diff)
- lex/trunk/jsp/lsedit.jsp (modified) (3 diffs)
- lex/trunk/jsp/parse.jsp (modified) (3 diffs)
- lex/trunk/jsp/rules.jsp (modified) (3 diffs)
- lex/trunk/jsp/search.jsp (modified) (2 diffs)
- lex/trunk/jsp/style.css (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
lex/trunk/jsp/dump.jsp
r196 r239 1 <% 2 response.setContentType("text/html; charset=UTF-8"); 3 %> 1 <% String pageTitle = "Emdros Database Dump"; %> 2 <%@ include file="header2.jsp" %> 3 4 4 <%@ page import="java.util.Enumeration" %> 5 5 <%@ page import="java.util.Hashtable" %> … … 12 12 <%@ page import="com.qwirx.db.sql.*" %> 13 13 <%@ page import="com.qwirx.lex.emdros.*" %> 14 <html>15 <head>16 <title>Lex: Emdros Data Dump</title>17 <link rel="stylesheet" href="style.css" />18 <style>19 div.topmenu a.dump_jsp <%@ include file="hilite.inc" %>20 </style>21 </head>22 <body>23 14 24 <%@ include file="header.jsp" %>25 26 15 <%@ include file="auth.jsp" %> 27 16 lex/trunk/jsp/error.jsp
r159 r239 1 <% String pageTitle = "Error"; %> 2 <%@ include file="header2.jsp" %> 3 1 4 <%@ page import="java.io.PrintWriter" %> 2 5 <%@ page import="java.io.StringWriter" %> 3 <html> 4 <head> 5 <title>Lex: Error</title> 6 <body> 7 <h1>Lex: Error</h1> 8 <p> 9 <a href="http://lex.qwirx.com/lex/"><b>Lex</b></a> | 10 <a href="clause.jsp">Clause Editor</a> | 11 <a href="lsedit.jsp">Logical Structure Editor</a> 12 </p> 6 13 7 <p> 14 8 Sorry, you found a bug in Lex. Please report it 15 9 to the author by sending an email to Chris Wilson at 16 <a href="mailto: lex_error@qwirx.com">lex_error@qwirx.com</a>.10 <a href="mailto:chris-lexerror@qwirx.com">chris-lexerror@qwirx.com</a>. 17 11 </p> 12 18 13 <p><% 19 14 Throwable exception = (Throwable)( lex/trunk/jsp/index.jsp
r159 r239 1 <html> 2 <head> 3 <title>Lex: Home Page</title> 4 <link rel="stylesheet" href="style.css"/> 5 <style> 6 div.topmenu a.index_jsp <%@ include file="hilite.inc" %> 7 </style> 8 </head> 9 <body> 10 11 <%@ include file="header.jsp" %> 1 <% String pageTitle = "Home Page"; %> 2 <%@ include file="header2.jsp" %> 12 3 13 4 <p>You should really start at the <a href="clause.jsp">text browser</a>.</p> lex/trunk/jsp/lsedit.jsp
r159 r239 1 <% String pageTitle = "Edit Logical Structure"; %> 2 <%@ include file="header2.jsp" %> 3 1 4 <%@ page import="java.util.Collections" %> 2 5 <%@ page import="java.util.Map" %> … … 15 18 <%@ page import="com.qwirx.lex.lexicon.*" %> 16 19 <%@ page import="com.qwirx.lex.lexicon.Lexeme.Variable" %> 17 <html> 18 <head> 19 <title>Lex: Edit Logical Structure</title> 20 <link rel="stylesheet" href="style.css"/> 20 21 21 <style> 22 22 h4 { margin-top: 8pt; margin-bottom: 0pt; } … … 24 24 td { vertical-align: top; } 25 25 </style> 26 </head> 27 <body> 28 29 <%@ include file="header.jsp" %> 26 30 27 <%@ include file="auth.jsp" %> 31 28 lex/trunk/jsp/parse.jsp
r211 r239 1 <% String pageTitle = "Parser Testing"; %> 2 <%@ include file="header2.jsp" %> 3 1 4 <%@ page import="java.util.*" %> 2 5 <%@ page import="com.qwirx.lex.ontology.*" %> … … 5 8 <%@ page import="com.qwirx.lex.morph.*" %> 6 9 7 <html>8 <head>9 <title>Lex: Parser Testing</title>10 <link rel="stylesheet" href="style.css"/>11 <style>12 div.topmenu a.parse_jsp <%@ include file="hilite.inc" %>13 .hilite { background-color: #fdd; }14 .selected { background-color: #fee; }15 .cb { float: right; }16 </style>17 </head>18 19 10 <script language="javascript"> 20 11 <!-- … … 240 231 </script> 241 232 242 <body>243 244 <%@ include file="header.jsp" %>245 233 <%@ include file="auth.jsp" %> 234 246 235 <%@ include file="navclause.jsp" %> 247 236 lex/trunk/jsp/rules.jsp
r159 r239 1 <% String pageTitle = "Parser Rules"; %> 2 <%@ include file="header2.jsp" %> 3 1 4 <%@ page import="java.util.*" %> 2 5 <%@ page import="java.sql.ResultSet" %> … … 6 9 <%@ page import="com.qwirx.lex.morph.*" %> 7 10 8 <html>9 <head>10 <title>Lex: Parser Rules</title>11 <link rel="stylesheet" href="style.css"/>12 <style>13 div.topmenu a.rules_jsp <%@ include file="hilite.inc" %>14 .hilite { background-color: #fdd; }15 .selected { background-color: #fee; }16 .cb { float: right; }17 </style>18 19 11 <script language="javascript"> 20 12 <!-- … … 28 20 </script> 29 21 30 </head>31 <body>32 33 <%@ include file="header.jsp" %>34 22 <%@ include file="auth.jsp" %> 35 23 lex/trunk/jsp/search.jsp
r237 r239 1 1 <% String pageTitle = "Search"; %> 2 2 <%@ include file="header2.jsp" %> 3 3 4 <%@ page import="java.util.*" %> 4 5 <%@ page import="com.qwirx.lex.Search" %> … … 118 119 %> 119 120 <div class="errormsg"> 120 <%= exception.getCause().getMessage() %> 121 <%= exception.getCause().getMessage() 122 .replaceAll("\n(.)", ": $1") %> 121 123 </div> 122 124 <% lex/trunk/jsp/style.css
r237 r239 101 101 color: red; 102 102 } 103 104 .hilite 105 { 106 background-color: #fdd; 107 } 108 109 .selected 110 { 111 background-color: #fee; 112 } 113 114 .cb 115 { 116 float: right; 117 }
