Definition at line 44 of file HTMLPlotWriter.java.
Public Member Functions | |
HTMLPlotWriter (PrintWriter out, String newServletPath) | |
HTMLPlotWriter (BufferedWriter out, String newServletPath) | |
HTMLPlotWriter (String filename, String newServletPath) | |
void | displaySelection (PlotSelection plotsel) throws JetWebException |
void | display (DataPlot plot) throws JetWebException |
void | display (Object object) throws JetWebException |
void | display (DataPlot plot, Fit fit) throws JetWebException |
void | setImagePath (String path) |
void | setNumberFormat (NumberFormat form) |
void | setDateFormat (SimpleDateFormat form) |
BufferedWriter | getWriter () |
void | close () |
void | setHidden (boolean hide) |
void | setModifiable (boolean mod) |
void | setVerbose (boolean verb) |
void | startControlForm () |
void | startControlForm (String message) |
void | startForm () |
void | endForm () |
void | searchByXML () |
void | makeActionButtons () |
void | makeSubmitButtons () |
void | makeRequestForm (ResultSearchPattern pattern) throws JetWebException |
void | makeControlForm () |
void | writeOkCancel () |
void | writeDirChoiceForm (String suggestion) |
void | listPendingJobs () |
void | listHiddenPars (ResultSearchPattern pattern) |
void | forwardTo (String htmlPath) |
void | writeInputId (String text, String name, String hover, Integer id) throws JetWebException |
void | makeCommonForm (ResultSearchPattern pattern) throws JetWebException |
synchronized void | displayList (List<?> list) throws JetWebException |
void | write (String str) throws JetWebException |
void | endListPage (String resultKey) |
void | writeTopMessage (String message) throws JetWebException |
void | writeTitle (String title) throws JetWebException |
Static Public Member Functions | |
void | writePlotComparison (BufferedWriter ofile, DataPlot plot1, double chi21, double chi22) |
void | writePlotText (String fitId, String plotId, PrintWriter out) throws JetWebException |
void | writeDataPointText (Vector points, String title, PrintWriter out) |
HTMLWriter | makeWriter (PrintWriter out, String newServletPath, Object o) throws JetWebException |
Protected Member Functions | |
void | openForm (String method, String action) throws IOException |
void | openForm (String method, String action, String extra) throws IOException |
void | openForm () throws IOException |
void | closeForm () throws IOException |
Protected Attributes | |
String | servletPath |
BufferedWriter | ofile |
SimpleDateFormat | dateFormat |
boolean | modifiable = false |
boolean | hidden = false |
boolean | verbose = false |
Integer | forms_ = 0 |
Static Protected Attributes | |
final int | LISTLENGTH = 10 |
NumberFormat | dform |
Private Attributes | |
String | imagePath_ |
|
Start a new html stream. This does nothing except assign the output stream and the path which will be used to refer back to the current servlet. This version writes output to the given PrintWriter.
Definition at line 57 of file HTMLPlotWriter.java. 00057 { 00058 super(out,newServletPath); 00059 }
|
|
Definition at line 61 of file HTMLPlotWriter.java. 00061 { 00062 00063 super(out,newServletPath); 00064 00065 }
|
|
Start a new html stream. This does nothing except assign the output stream and the path which will be used to refer back to the current servlet. This version writes output to the given file. (Deletes any existing file with the same name).
Definition at line 77 of file HTMLPlotWriter.java. 00077 { 00078 super(filename,newServletPath); 00079 }
|
|
Method to close the buffered writer. Definition at line 196 of file HTMLWriter.java. Referenced by HTMLUtils.displayList(), HTMLUtils.displayListContinued(), Searcher.doGet(), Maintainer.doGet(), ServletUtils.editFit(), HTMLFitWriter.endFitPage(), HTMLUtils.listPendingJobs(), FileUploader.upload(), HTMLFitWriter.writeCompareFitsPage(), HTMLUtils.writeControlScreen(), HTMLFitWriter.writeFitPage(), HTMLUtils.writeJobRequestForm(), HTMLPaperWriter.writePaperScreen(), HTMLUtils.writeParameterScreen(), HTMLUtils.writeProcScreen(), HTMLUtils.writeQueryScreen(), and HTMLUtils.writeSelectPlotsPage(). 00196 { 00197 00198 try { 00199 ofile.close(); 00200 } 00201 catch (IOException e) { 00202 System.out.println("Could not open file "+e); 00203 } 00204 System.out.println("Done"); 00205 }
|
|
closes the form tag if: number of forms we tried to open - number we tried to close = 1 Definition at line 1029 of file HTMLWriter.java. References HTMLWriter.write(). Referenced by HTMLProcessWriter.addNewProcess(), HTMLProcessWriter.display(), HTMLPlotWriter.display(), HTMLPaperWriter.display(), HTMLModelWriter.display(), HTMLFitWriter.display(), HTMLFitWriter.writeFitEditForm(), HTMLPaperWriter.writePaperForm(), and HTMLFitWriter.writeVerbose(). 01030 { 01031 if(forms_<=0) return; 01032 --forms_; 01033 if(forms_==0){ 01034 ofile.write("</form>"); 01035 formAction_ = ""; 01036 } 01037 01038 return; 01039 }
|
|
Write a fitted DataPlot to HTML. If fit is null, the real data only is written out. Definition at line 261 of file HTMLPlotWriter.java. References HTMLWriter.closeForm(), HTMLProcessWriter.display(), FittedPlot.getCompPlot(), Paper.getDirName(), PlotSelection.getSumPlots(), DataPlot.getSysScale(), HTMLPlotWriter.imagePath_, HTMLWriter.openForm(), and HTMLWriter.write(). 00261 { 00262 00263 //System.out.println("AAAAAAAAAAAAAAAAAAAAAA"); 00264 00265 00266 //System.out.println("HTMLPlotWriter: plot class is: "+ 00267 // plot.getClass().toString()); 00268 00269 00270 00271 if (imagePath_==null) { 00272 StringBuffer imagePath = new StringBuffer(JetWebConfig.plotCacheDirName); 00273 if (fit!=null) { 00274 imagePath.append("/"+fit.getId()); 00275 } 00276 Paper paper = PaperBank.getPaper(plot.getPaperId()); 00277 imagePath.append("/"+paper.getDirName()); 00278 imagePath_=imagePath.toString(); 00279 } 00280 00281 HTMLProcessWriter procWriter = new HTMLProcessWriter(ofile,servletPath); 00282 String plotLink = JetWebConfig.getHTMLRoot()+"/" 00283 +imagePath_+"/plot"+Integer.toString(plot.getNumber()) 00284 +"."+JetWebConfig.graphicsType; 00285 00286 PlotSelection selection; 00287 if (fit==null) { 00288 selection = new PlotSelection(); 00289 } else { 00290 selection = fit.getPlotSelection(); 00291 } 00292 00293 DataPlot compPlot = null; 00294 00295 if (plot instanceof PredictedPlot){ 00296 compPlot = ((PredictedPlot)plot).getCompPlot(); 00297 } else if (plot instanceof FittedPlot){ 00298 compPlot = ((FittedPlot)plot).getCompPlot(); 00299 } else if (plot instanceof RealPlot && fit!=null) { 00300 FittedPlot newPlot = new FittedPlot((RealPlot)plot,fit); 00301 compPlot = newPlot.getCompPlot(); 00302 plot = newPlot; 00303 System.out.println("new fitted plot made"); 00304 } 00305 00306 try { 00307 00308 ofile.write("<div class='jetweb-plot'>"); 00309 ofile.newLine(); 00310 00311 // Start table row & entry 00312 ofile.write("<h4>"+plot.getTitle()+"</h4>"); 00313 ofile.newLine(); 00314 00315 // include the image 00316 if (verbose) { 00317 00318 if (plot.getChi2()[1]>0 || compPlot==null) { 00319 // Link to the graphics file, unless this is a fitted plot with no data. 00320 ofile.write("<A href='"+plotLink+"'> <img src='" 00321 +plotLink+"'></a>"); 00322 ofile.newLine(); 00323 } 00324 00325 00326 if (fit!=null){ 00327 ofile.write("<p>Chi2 Contribution: (chi2 / DoF):"); 00328 ofile.newLine(); 00329 00330 ofile.write(dform.format(plot.getChi2()[0])+" / " 00331 +dform.format(plot.getChi2()[1])); 00332 ofile.write("</p>"); 00333 ofile.newLine(); 00334 ofile.write("<p>Data (black) was scaled by: " 00335 +dform.format(compPlot.getSysScale())); 00336 ofile.write("<br/>The model was scaled by " 00337 +dform.format(plot.getSysScale())+"</p>"); 00338 } else { 00339 if (verbose) { 00340 ofile.write("<P>Data was scaled by: " 00341 +dform.format(plot.getSysScale())+"</p>"); 00342 } 00343 } 00344 ofile.newLine(); 00345 00346 ofile.write("<p><form method='post' target='_blank' action='" 00347 +JetWebConfig.searchServletPath+"'>"); 00348 ofile.write("<input type='hidden' name='PLOTID' value='"+plot.getId()+"'/>"); 00349 if (fit!=null){ 00350 ofile.write("<input type='hidden' name='FITID' value='"+fit.getId()+"'/>"); 00351 } 00352 ofile.write("<input type='submit' name='PLOTTEXT' value='Vector output of plotted data'/>"); 00353 ofile.write("</form></p>"); 00354 00355 if (compPlot != null) { 00356 if (plot.getChi2()[1]>0){ 00357 ofile.write("<p>For this fit, the simulated data was generated as "); 00358 procWriter.display(plot.getMCProcessType()); 00359 } else if (fit!=null) { 00360 ofile.write("<p>There is no suitable simulated data for this plot."); 00361 ofile.write("For this fit, the required process type is "); 00362 //procWriter.display(new MCProcessType(plot.getProcIdWanted())); 00363 procWriter.display(plot.getMCProcessType()); 00364 } else if (fit==null) { 00365 ofile.write("<p>For this fit, the required process type is "); 00366 procWriter.display(plot.getMCProcessType()); 00367 } 00368 } else { 00369 ofile.write("<p>The default process type for this data is "); 00370 procWriter.display(plot.getMCProcessType()); 00371 } 00372 00373 ofile.write("</p>"); 00374 00375 00376 ofile.newLine(); 00377 if (compPlot!=null){ 00378 ofile.write("<p><b>Pull for each point:</b><br/>"); 00379 for (DataPoint point : plot.getDataPoints()){ 00380 ofile.write("<em>{"+dform.format(point.getChi2())+"}</em>"); 00381 ofile.newLine(); 00382 } 00383 if (!selection.getSumPlots().contains(compPlot)){ 00384 ofile.write("<br/>(this plot not included in the fit)"); 00385 } 00386 } 00387 ofile.write("</p>"); 00388 00389 } else { 00390 00391 openForm("post",servletPath); 00392 00393 ofile.write("<input type='hidden' name='PLOTID' value='"+plot.getId()+"'>"); 00394 ofile.write(HTMLUtils.writeSubmitButton("REALDATA", 00395 "More details on this plot.", 00396 "More")); 00397 closeForm(); 00398 00399 // Link to the graphics file, unless this is a fitted plot with no data. 00400 //ofile.write("<A href='"+plotLink+"'>Graphic</a>"); 00401 ofile.newLine(); 00402 } 00403 00404 00405 ofile.write("</div>"); 00406 00407 00408 } catch ( IOException e ) { 00409 System.out.println("problem writing plot tag"); 00410 return; 00411 } 00412 }
|
|
Override Object display. Reimplemented from HTMLWriter. Definition at line 249 of file HTMLPlotWriter.java. References HTMLPlotWriter.display(). 00249 { 00250 try { 00251 display((DataPlot)object,null); 00252 } catch (ClassCastException e) { 00253 throw new JetWebException(e); 00254 } 00255 }
|
|
Write a real DataPlot to HTML. Definition at line 242 of file HTMLPlotWriter.java. Referenced by HTMLPlotWriter.display(), and HTMLPaperWriter.display(). 00242 { 00243 display(plot,null); 00244 }
|
|
Write the first LISTLENGTH elements of a list of objects and remove them from List.
Definition at line 843 of file HTMLWriter.java. Referenced by HTMLUtils.displayList(), HTMLUtils.displayListContinued(), and Searcher.doGet(). 00844 { 00845 00846 //needs to delete them too 00847 Iterator<? extends Object> iterator = list.iterator(); 00848 int count=0; 00849 Vector<Object> deleteList = new Vector<Object>(); 00850 while (iterator.hasNext() && count<LISTLENGTH){ 00851 Object next = iterator.next(); 00852 display(next); 00853 deleteList.add(next); 00854 count++; 00855 00856 } 00857 00858 //now remove the fits that have been listed 00859 Enumeration<? extends Object> del = deleteList.elements(); 00860 while (del.hasMoreElements()){ 00861 list.remove(del.nextElement()); 00862 } 00863 00864 }
|
|
Write out HTML properties form with papers selected
Definition at line 88 of file HTMLPlotWriter.java. Referenced by Searcher.doGet(), HTMLUtils.writeQueryScreen(), and HTMLUtils.writeSelectPlotsPage(). 00088 { 00089 00090 try { 00091 00092 ofile.write("<div class='plotselection'>"); 00093 00094 if (!verbose) { 00095 00096 if (modifiable) { 00097 ofile.write(HTMLUtils.writeSubmitButton("SELECTPLOTS", 00098 "Select the plots to be included in the fit", 00099 "Select plots")); 00100 } 00101 00102 00103 } 00104 if ((plotsel==null) || (plotsel!=null && plotsel.isDefault())) { 00105 ofile.write(" Default dataset"); 00106 } else { 00107 ofile.write(" Non-default dataset"); 00108 } 00109 00110 if (verbose) { 00111 00112 if (plotsel==null) { 00113 plotsel = new PlotSelection(); 00114 } 00115 00116 ofile.newLine(); 00117 00118 ofile.write("<p>Data used in this fit.</p>"); 00119 00120 if (modifiable){ 00121 ofile.write(HTMLUtils.writeSubmitButton("RESET", 00122 "Clear the selection", 00123 "Clear")); 00124 } 00125 ofile.write("<hr/>"); 00126 ofile.newLine(); 00127 ofile.write("<table>"); 00128 00129 for (Paper paper : PaperBank.getPapers()){ 00130 00131 ofile.write("<tr><td colspan='2'> "); 00132 ofile.write(HTMLPaperWriter.getLink(paper)); 00133 ofile.write("</td>"); 00134 ofile.write("<td colspan='2'> "); 00135 ofile.write("<em> "+paper.getReference()+"</em><br/>"); 00136 ofile.write("</td></tr>"); 00137 ofile.newLine(); 00138 00139 ofile.write("<tr>"); 00140 ofile.write("<td colspan='2'>Plot title</td>"); 00141 if (modifiable) { 00142 ofile.write("<td>Use in Chi2 sum</td>"); 00143 ofile.write("<td>Use in Fit</td>"); 00144 } else { 00145 ofile.write("<td>Used in Chi2 sum</td>"); 00146 ofile.write("<td>Used in Fit</td>"); 00147 } 00148 ofile.write("</tr>"); 00149 ofile.newLine(); 00150 00151 for (DataPlot plot : paper.getPlots()){ 00152 if (modifiable || plotsel.getSumPlots().contains(plot)) { 00153 00154 ofile.write("<tr><td>-</td><td><A href='" 00155 +JetWebConfig.getHTMLRoot() 00156 +"/"+JetWebConfig.plotCacheDirName 00157 +"/"+paper.getDirName() 00158 +"/plot"+plot.getNumber()+"."+JetWebConfig.graphicsType 00159 +"'>"+plot.getTitle()+ 00160 "</a></td>"); 00161 ofile.newLine(); 00162 if (modifiable){ 00163 ofile.write("<td align='left'><input type='checkbox' "); 00164 if (plotsel.getSumPlots().contains(plot)){ 00165 ofile.write("checked "); 00166 } 00167 ofile.write("name='SUMPLOT' value='"+plot.getId()+"'>"); 00168 if (plot.isDefaultSum()) { 00169 ofile.write(" <font color=red>(Recommended)</font></td>"); 00170 } 00171 00172 ofile.newLine(); 00173 ofile.write("<td align='left'><input type='checkbox' "); 00174 if (plotsel.getFitPlots().contains(plot)){ 00175 ofile.write("checked "); 00176 } 00177 ofile.write("name='FITPLOT' value='"+plot.getId()+"'>"); 00178 if (plot.isDefaultFit()) { 00179 ofile.write(" <font color=red>(Recommended)</font></td></tr>"); 00180 } 00181 } else { 00182 ofile.write("<td align='left'>"); 00183 if (plotsel.getSumPlots().contains(plot)){ 00184 ofile.write("YES "); 00185 } else { 00186 ofile.write("NO "); 00187 } 00188 ofile.write("</td>"); 00189 ofile.newLine(); 00190 ofile.write("<td align='left'> "); 00191 if (plotsel.getFitPlots().contains(plot)){ 00192 ofile.write("YES "); 00193 } else { 00194 ofile.write("NO "); 00195 } 00196 ofile.write("</td></tr>"); 00197 00198 } 00199 00200 } 00201 00202 00203 ofile.newLine(); 00204 } 00205 ofile.write("<tr><td colspan='6'><hr/></td></tr>"); 00206 ofile.newLine(); 00207 } 00208 ofile.write("</table>"); 00209 00210 } 00211 00212 ofile.write("</div>"); 00213 00214 00215 } catch ( IOException e ) { 00216 System.out.println("HTMLPlotWriter: problem writing form"); 00217 e.printStackTrace(); 00218 return; 00219 } 00220 }
|
|
End form. Definition at line 270 of file HTMLWriter.java. Referenced by Maintainer.doGet(), HTMLUtils.listPendingJobs(), HTMLUtils.writeJobRequestForm(), HTMLUtils.writeParameterScreen(), HTMLUtils.writeProcScreen(), HTMLUtils.writeQueryScreen(), and HTMLUtils.writeSelectPlotsPage(). 00270 { 00271 try { 00272 closeForm(); 00273 //ofile.write("</form>"); 00274 } catch ( IOException e ) { 00275 System.out.println("problem writing form"); 00276 return; 00277 } 00278 }
|
|
Write footer for a list of Fits with a forward link based on the fitKey Definition at line 887 of file HTMLWriter.java. References HTMLWriter.write(). Referenced by HTMLUtils.displayList(), and HTMLUtils.displayListContinued(). 00887 { 00888 try { 00889 openForm(); 00890 //ofile.write("<form>"); 00891 ofile.write("<input type='SUBMIT' name='MORERESULTS' value='Next Results'>"); 00892 ofile.write("<input type='HIDDEN' name='RESULTKEY' value='"+resultKey+"'>"); 00893 ofile.write("<input type='HIDDEN' name='VERBOSE' value='"+verbose+"'>"); 00894 ofile.write("<input type='HIDDEN' name='MODIFIABLE' value='"+modifiable+"'>"); 00895 closeForm(); 00896 //ofile.write("</form>"); 00897 } catch ( IOException e ) { 00898 System.out.println("problem end of list page"); 00899 return; 00900 } 00901 }
|
|
Write the necessary HTML to forward to use to the page at htmlPath. Definition at line 698 of file HTMLWriter.java. References HTMLWriter.write(). 00698 { 00699 00700 try { 00701 ofile.write("<head><meta http-equiv=\"refresh\" content=\"0;URL="+ 00702 htmlPath+"\"></head>"); 00703 ofile.newLine(); 00704 close(); 00705 } catch ( IOException e ) { 00706 System.out.println("problem writing form"); 00707 return; 00708 } 00709 }
|
|
Return the buffered writer. Definition at line 190 of file HTMLWriter.java. Referenced by HTMLFitWriter.comparePlots(), HTMLFitWriter.writeCompareFitsPage(), HTMLFitWriter.writeFitPage(), and HTMLUtils.writeQueryScreen(). 00190 {
00191 return ofile;
00192 }
|
|
Add the generic parameters from the ResultSearchPattern to the HTML form as hidden inputs.
Definition at line 674 of file HTMLWriter.java. References ResultSearchPattern.getGenerator(), ResultSearchPattern.getPhotonPDF(), ResultSearchPattern.getProtonPDF(), and HTMLWriter.write(). 00674 { 00675 00676 try { 00677 ofile.write("<input type='HIDDEN' name='GENERATOR' value='"+pattern.getGenerator().getName()+"-"+pattern.getGenerator().getVersion()+"'>"); 00678 ofile.newLine(); 00679 ofile.write("<input type='HIDDEN' name='PHOTONPDF' value='"+pattern.getPhotonPDF()+"'>"); 00680 ofile.newLine(); 00681 ofile.write("<input type='HIDDEN' name='PROTONPDF' value='"+pattern.getProtonPDF()+"'>"); 00682 00683 } catch ( IOException e ) { 00684 System.out.println("problem writing form"); 00685 e.printStackTrace(); 00686 return; 00687 } catch (JetWebException jwe){ 00688 System.out.println("problem writing form"); 00689 jwe.printStackTrace(); 00690 return; 00691 } 00692 }
|
|
Write list of pending jobs. Definition at line 639 of file HTMLWriter.java. References PendingJob.getDate(), PendingJob.getName(), PendingJob.getScriptName(), and HTMLWriter.write(). Referenced by HTMLUtils.listPendingJobs(). 00639 { 00640 00641 try { 00642 Enumeration pending = JobUtils.selectPendingJobs(); 00643 00644 closeForm(); 00645 00646 //ofile.write("</FORM>"); 00647 00648 int count = 0; 00649 while (pending.hasMoreElements()){ 00650 00651 PendingJob pj = (PendingJob)pending.nextElement(); 00652 00653 count++; 00654 ofile.write("<TR><TD COLSPAN=2>"); 00655 ofile.newLine(); 00656 ofile.write("<P><B>"+count+": "+pj.getName()+"</B> :"); 00657 ofile.write(" Requested at "+pj.getDate()+". Run script is " 00658 +pj.getScriptName()+"</P>"); 00659 ofile.newLine(); 00660 } 00661 } catch (JetWebException e){ 00662 HTMLErrorWriter.write(ofile,e); 00663 } catch (Exception e) { 00664 System.out.println("error:"+e.getMessage()); 00665 } 00666 }
|
|
Write out the HTML search toolbar. Definition at line 315 of file HTMLWriter.java. Referenced by HTMLUtils.writeParameterScreen(), HTMLUtils.writeQueryScreen(), and HTMLUtils.writeSelectPlotsPage(). 00315 { 00316 try { 00317 00318 ofile.write("<div class='actionbuttons'>"); 00319 ofile.newLine(); 00320 ofile.write(HTMLUtils.writeSubmitButton("GETMODELS", 00321 "Search for models matching the criteria specified", 00322 "Get Models")); 00323 ofile.newLine(); 00324 ofile.write(HTMLUtils.writeSubmitButton("GETFITS", 00325 "Search for fits matching the specified criteria", 00326 "Get Fits")); 00327 ofile.newLine(); 00328 ofile.write(HTMLUtils.writeSubmitButton 00329 ("CLEARALL", 00330 "Clear all selections", 00331 "Reset")); 00332 ofile.newLine(); 00333 ofile.write(HTMLUtils.writeSubmitButton 00334 ("DEFAULT", 00335 "Set all parameters to their default values", 00336 "Default")); 00337 ofile.newLine(); 00338 ofile.write("<br>"); 00339 ofile.write("</div>"); 00340 00341 } catch ( IOException e ) { 00342 System.out.println("problem writing form"); 00343 return; 00344 } 00345 }
|
|
Definition at line 743 of file HTMLWriter.java. References HTMLWriter.write(). Referenced by HTMLUtils.writeParameterScreen(). 00743 { 00744 00745 try { 00746 00747 ofile.write("<table cellpadding=\"4\" rules=\"cols\">"); 00748 ofile.write("<tr><td colspan=\"8\"> <p><b>Common parameters</b></p>"); 00749 ofile.write("<tr align=\"top\">"); 00750 ofile.newLine(); 00751 ofile.write("<td align=\"top\"><table align=\"top\"><tr align=\"top\"><td colspan=\"2\"><P>Generator</P>"); 00752 ofile.newLine(); 00753 boolean none = true; 00754 Generator gen = pattern.getGenerator(); 00755 00756 for (String name : Generator.allNames() ) { 00757 ofile.write("<tr><td align='right'>"); 00758 ofile.write("<b>"+name+" </b>"); 00759 00760 TreeSet<String> allVersions = 00761 new TreeSet(Generator.allVersions(name)); 00762 00763 for (String version : allVersions ) { 00764 ofile.write("<td>" + version + 00765 "<input type='checkbox' "); 00766 ofile.write("name='GENERATOR' value='"+name+"-"+version+"'"); 00767 if (gen!=null && 00768 gen.getName().equals(name) && 00769 gen.getVersion().equals(version)){ 00770 ofile.write(" checked "); 00771 } 00772 ofile.write("/></td>"); 00773 ofile.newLine(); 00774 } 00775 } 00776 ofile.write("</table>"); 00777 00778 ofile.newLine(); 00779 ofile.write("<td align='top'><table><tr><td colspan='2'><P>Photon PDF</P>"); 00780 ofile.newLine(); 00781 none = true; 00782 00783 Vector<PDF> knownPDFs = PDF.getKnownPDFs(); 00784 00785 Vector<PDF> knownProtonPDFs = new Vector<PDF>(); 00786 Vector<PDF> knownPhotonPDFs = new Vector<PDF>(); 00787 00788 for(PDF pdf: knownPDFs){ 00789 if(pdf.isPhoton()) knownPhotonPDFs.add(pdf); 00790 if(pdf.isProton()) knownProtonPDFs.add(pdf); 00791 } 00792 00793 for(PDF pdf: knownPhotonPDFs){ 00794 ofile.write("<tr><td align='right'>"); 00795 ofile.write(pdf.getName()+"</td>"); 00796 ofile.write("<td><input type='checkbox' "); 00797 if(pattern.getPhotonPDFList().contains(pdf)&&none){ 00798 ofile.write(" checked "); 00799 none = false; 00800 } 00801 ofile.write("name='PHOTONPDF' value='"+pdf.getName()+"'>"); 00802 ofile.write("</td></tr>"); 00803 ofile.newLine(); 00804 } 00805 ofile.write("</tr>"); 00806 ofile.write("</table>"); 00807 ofile.write 00808 ("<td align='top'> <table><tr><td colspan='2'><p>Proton PDF</p>"); 00809 ofile.newLine(); 00810 none = true; 00811 00812 for(PDF pdf: knownProtonPDFs){ 00813 ofile.write("<tr><td align='RIGHT'>"); 00814 ofile.write(pdf.getName() + "</td>"); 00815 ofile.write("<td><input type='checkbox' "); 00816 if(pattern.getProtonPDFList().contains(pdf)&&none){ 00817 ofile.write(" checked "); 00818 none = false; 00819 } 00820 ofile.write("name='PROTONPDF' value='"+pdf.getName()+"'>"); 00821 ofile.write("</td></tr>"); 00822 ofile.newLine(); 00823 } 00824 00825 ofile.write("</table>"); 00826 00827 ofile.write("<tr><td colspan='8'><hr noshade size='3'>"); 00828 00829 ofile.write("</table>"); 00830 00831 } catch (IOException ioe) { 00832 ioe.printStackTrace(System.out); 00833 throw new JetWebException(ioe); 00834 } 00835 }
|
|
Write out the top-level maintenance options form. Definition at line 435 of file HTMLWriter.java. References HTMLWriter.write(). Referenced by HTMLUtils.writeControlScreen(). 00435 { 00436 00437 try { 00438 00439 ofile.write("<div class='jetweb-buttons'>"); 00440 00441 ofile.newLine(); 00442 openForm("POST", servletPath); 00443 //ofile.write("<form method='post' action='"+servletPath+"'>"); 00444 00445 ofile.write("<table><tbody>"); 00446 ofile.newLine(); 00447 /* 00448 ofile.write("<tr>"); 00449 ofile.write("<td valign='top'><p>Rewrite webpages</p></td>"); 00450 ofile.write("<td align='middle' valign='middle'>"); 00451 ofile.write("<input type='submit' name='REDO' value='GO'></td></tr>"); 00452 ofile.newLine(); 00453 */ 00454 ofile.write("<tr>"); 00455 ofile.write("<td><p>Process any new data in the input directory</p></td>"); 00456 ofile.write("<td align='right'>"); 00457 ofile.write("<INPUT TYPE=SUBMIT NAME='PROCESSNEW' VALUE=\"GO\"></TD></TR>"); 00458 ofile.newLine(); 00459 00460 ofile.write("<tr>"); 00461 ofile.write("<td><p>Manage MCProcessTypes</p></td>"); 00462 ofile.write("<td align='right'>"); 00463 ofile.write("<input type='submit' name='PROCESSTYPE' value='GO'></td></tr>"); 00464 ofile.newLine(); 00465 00466 /* 00467 ofile.write("<tr>"); 00468 ofile.write("<td><p>Search or submit new job</P></TD>"); 00469 ofile.write("<td align='right'>"); 00470 ofile.write("<input type='submit' name='SEARCH' value='GO'></td></tr>"); 00471 ofile.newLine(); 00472 */ 00473 ofile.write("<tr>"); 00474 ofile.write("<td><p>List submitted jobs which have not yet returned.</p></td>"); 00475 ofile.write("<td align='right'>"); 00476 ofile.write("<input type='submit' name='PENDING' VALUE='GO'></td></tr>"); 00477 00478 00479 ofile.write("<tr>"); 00480 ofile.write("<td><p>Edit fit with ID</P></TD><TD align='left'>"); 00481 ofile.write("<input type='text' name='FITID' width='5'></p></td>"); 00482 ofile.write("<td align='right'>"); 00483 ofile.write("<input type='submit' name='FITFIX' value='GO'></td></tr>"); 00484 00485 ofile.write("<tr>"); 00486 ofile.write("<td><p>Modify a paper (give the ID)</p></td><td align='left'>"); 00487 ofile.write("<input type='text' name='PAPERID' width='5'></p></td>"); 00488 ofile.write("<td align='right'>"); 00489 ofile.write("<input type='submit' name='PAPERMOD' value='GO'></td></tr>"); 00490 00491 ofile.write("<tr>"); 00492 ofile.write("<td><p>Add a new paper</p></td>"); 00493 ofile.write("<td align='right'>"); 00494 ofile.write("<input type='submit' name='PAPERADD' value='GO'></td></tr>"); 00495 ofile.write("<tr>"); 00496 00497 /* 00498 ofile.write("<td><p>Recalculate generated integrated luminosity</p></td>"); 00499 ofile.write("<td align='right'>"); 00500 ofile.write("<input type='submit' name='FIXLUMI' value='GO'></td></tr>"); 00501 */ 00502 00503 ofile.write("</tbody></table>"); 00504 closeForm(); 00505 //ofile.write("</form>"); 00506 openForm("POST", JetWebConfig.uploadServletPath, 00507 "enctype='multipart/form-data'"); 00508 //ofile.write 00509 //("<form enctype='multipart/form-data' method='post' action='" 00510 // + JetWebConfig.uploadServletPath + "'>"); 00511 00512 ofile.write("<table><tbody>"); 00513 ofile.write("<tr>"); 00514 ofile.write 00515 ("<td><p>Add a new generator default from an XML file</p></td>"); 00516 ofile.write("<td align='right'>"); 00517 ofile.write("<input type='hidden' name='DEFAULTSUPLOAD'>"); 00518 ofile.write("<input type='hidden' name='DIRECTORY' value=" + 00519 JetWebConfig.jobOutDirName+ "/>"); 00520 ofile.write 00521 ("<input type='file' name='XMLDEFAULTS'></p></td>"); 00522 00523 ofile.write("<td align='right'>"); 00524 ofile.write("<input type='submit' name='DEFAULTSMOD' value='GO'></TD></TR>"); 00525 ofile.write("</tbody></table>"); 00526 00527 closeForm(); 00528 //ofile.write("</form>"); 00529 ofile.write("</div>"); 00530 00531 ofile.write("<div>"); 00532 openForm("POST", servletPath); 00533 //ofile.write("<form method='post' action='"+servletPath+"'>"); 00534 ofile.newLine(); 00535 ofile.write("<table border='3'>"); 00536 00537 ofile.write("<tr><td colspan='6'>"); 00538 ofile.write("<h3>New Configuration</h3>"); 00539 00540 ofile.newLine(); 00541 ofile.write("<tr><td align='right'><p>Plot generation on:<td align=\"left\">"); 00542 ofile.write("<input type='checkbox' name='PLOTS'"); 00543 if (JetWebConfig.writePlots) { ofile.write(" checked ");} 00544 ofile.write(">"); 00545 ofile.write("<tr>"); 00546 ofile.write("<tr><td align='right'><p>Name of run subdirectory for jobs:<td align='left'>"); 00547 String dname = JetWebConfig.jobOutDirName; 00548 ofile.write("<input type='text' name='RUNSUBDIR' width='24' value='" 00549 +dname+"'>"); 00550 00551 ofile.newLine(); 00552 ofile.write("<tr><td><p>Batch facility:</p>"); 00553 00554 ofile.newLine(); 00555 ofile.write("<td><table>"); // List of batch facilities. This is a bit clumsy! 00556 ofile.newLine(); 00557 Iterator<Integer> iBatchNum = SubmitScriptHandler.batchNumbers.iterator(); 00558 Iterator<String> iBatchName = SubmitScriptHandler.batchNames.iterator(); 00559 while (iBatchNum.hasNext()&&iBatchName.hasNext()) { // Should have same number of entries 00560 Integer batchNum = iBatchNum.next(); 00561 String batchName = iBatchName.next(); 00562 ofile.write("<TR><TD>"+batchName+"<TD><INPUT TYPE=RADIO NAME=BATCHFAC VALUE=\"" 00563 +batchNum+"\""); 00564 if (SubmitScriptHandler.BATCHFACILITY==batchNum.intValue()){ 00565 ofile.write(" checked ");} 00566 ofile.write(">"); 00567 ofile.newLine(); 00568 } 00569 ofile.write("</table>"); 00570 00571 ofile.newLine(); 00572 ofile.write("<tr>"); 00573 00574 ofile.write("<td align='right' colspan='6'>"); 00575 ofile.write("<input type='submit' name='CONFIG' value='Update config'>"); 00576 00577 ofile.write("</table>"); 00578 closeForm(); 00579 //ofile.write("</form>"); 00580 ofile.write("</div>"); 00581 00582 ofile.newLine(); 00583 } catch ( IOException e ) { 00584 System.out.println("problem writing form"); 00585 return; 00586 } 00587 }
|
|
Construct an HTML request form containing the parameters of a ResultSearchPattern
Definition at line 390 of file HTMLWriter.java. References HTMLGeneratorWriter.display(), HTMLWriter.setModifiable(), HTMLWriter.setVerbose(), and HTMLWriter.write(). Referenced by HTMLUtils.writeJobRequestForm(), HTMLUtils.writeQueryScreen(), and HTMLUtils.writeSelectPlotsPage(). 00390 { 00391 00392 try { 00393 boolean oldModifiable = modifiable; 00394 modifiable = true; 00395 makeCommonForm(pattern); 00396 modifiable = oldModifiable; 00397 00398 Generator gen = pattern.getGenerator(); 00399 if (gen!=null) { 00400 ofile.write("<p>Model Description: "); 00401 ofile.write 00402 (HTMLUtils.writeInputBox 00403 ("DESCRIPTION", 00404 "Write a description of the model", 00405 pattern.getDescription())); 00406 ofile.write("</p>"); 00407 00408 ofile.write("<h4>Change the generator parameters</h4>"); 00409 HTMLGeneratorWriter genOp 00410 = new HTMLGeneratorWriter(ofile,servletPath); 00411 genOp.setModifiable(true); 00412 genOp.setVerbose(true); 00413 genOp.display(gen); 00414 ofile.newLine(); 00415 00416 } else { 00417 00418 for (String gname: Generator.allNames()){ 00419 ofile.write(HTMLUtils.writeSubmitButton("SETPARS", 00420 "Opens a form allowing " 00421 +gname+" parameters to be changed", 00422 gname)); 00423 } 00424 } 00425 } catch ( IOException e ) { 00426 System.out.println("problem writing form"); 00427 return; 00428 } 00429 }
|
|
Write out the HTML job submission toolbar. Definition at line 351 of file HTMLWriter.java. Referenced by HTMLUtils.writeJobRequestForm(), and HTMLUtils.writeParameterScreen(). 00351 { 00352 try { 00353 00354 ofile.write("<div class='actionbuttons'>"); 00355 ofile.newLine(); 00356 00357 ofile.write("Minimum PT (GeV) for generated events "); 00358 ofile.write 00359 ("<input type='text' size='3'" + 00360 " name='GENPTMIN' title='Enter the minimum PT to generate'>"); 00361 00362 ofile.write(HTMLUtils.writeSubmitButton("SUBMIT1", 00363 "Submit the simulation job request", 00364 "Submit the request")); 00365 00366 ofile.newLine(); 00367 ofile.write(HTMLUtils.writeSubmitButton("CLEARALL", 00368 "Clear all selections", 00369 "Reset")); 00370 00371 ofile.newLine(); 00372 ofile.write 00373 ("<input type='hidden' name='SUBMITTINGJOB' value='TRUE'>"); 00374 00375 ofile.write("</div>"); 00376 00377 } catch ( IOException e ) { 00378 System.out.println("problem writing form"); 00379 return; 00380 } 00381 }
|
|
Factory for making HTMLWriters. Definition at line 96 of file HTMLWriter.java. Referenced by HTMLUtils.displayList(), and HTMLUtils.displayListContinued(). 00098 { 00099 00100 if (o instanceof DataPlot) { 00101 return new HTMLPlotWriter(out,newServletPath); 00102 } else if (o instanceof MCProcessType || o instanceof Collision) { 00103 return new HTMLProcessWriter(out,newServletPath); 00104 } else if (o instanceof Paper) { 00105 return new HTMLPaperWriter(out,newServletPath); 00106 } else if (o instanceof Fit) { 00107 return new HTMLFitWriter(out,newServletPath); 00108 } else if (o instanceof Model) { 00109 return new HTMLModelWriter(out,newServletPath); 00110 } else { 00111 return new HTMLWriter(out,newServletPath); 00112 } 00113 00114 }
|
|
open a form with no attributes Definition at line 1006 of file HTMLWriter.java. References HTMLWriter.write(). Referenced by HTMLProcessWriter.addNewProcess(), HTMLProcessWriter.display(), HTMLPlotWriter.display(), HTMLPaperWriter.display(), HTMLModelWriter.display(), HTMLFitWriter.display(), HTMLFitWriter.writeFitEditForm(), HTMLPaperWriter.writePaperForm(), and HTMLFitWriter.writeVerbose(). 01007 { 01008 if(!formAction_.equals("") && 01009 !forms_.equals(0)){ 01010 forms_=1; 01011 ofile.write("</form>"); 01012 }else{ 01013 ++forms_; 01014 } 01015 01016 if(forms_==1){ 01017 ofile.write("<form>"); 01018 formAction_ = ""; 01019 } 01020 01021 return; 01022 }
|
|
Opens a form element if one is not already open closes the current form if the requested attribute is not the same as the one used by the open form
Definition at line 979 of file HTMLWriter.java. References HTMLWriter.write(). 00980 { 00981 00982 if(!action.equals(formAction_) && 00983 !forms_.equals(0)){ 00984 00985 forms_ = 1; 00986 ofile.write("</form>"); 00987 }else{ 00988 ++forms_; 00989 } 00990 00991 if(forms_==1){ 00992 ofile.write("<form method='" + 00993 method + 00994 "' action='" + 00995 action + "' " + extra + ">"); 00996 formAction_ = action; 00997 } 00998 00999 return; 01000 }
|
|
Opens a form element if one is not already open closes the current form if the requested attribute is not the same as the one used by the open form
Definition at line 947 of file HTMLWriter.java. References HTMLWriter.write(). 00948 { 00949 00950 if(!action.equals(formAction_) && 00951 !forms_.equals(0)){ 00952 forms_ = 1; 00953 ofile.write("</form>"); 00954 }else{ 00955 ++forms_; 00956 } 00957 00958 if(forms_==1){ 00959 ofile.write("<form method='" + 00960 method + 00961 "' action='" + 00962 action + "' >"); 00963 formAction_ = action; 00964 } 00965 00966 return; 00967 }
|
|
write out the search using xml file field Definition at line 284 of file HTMLWriter.java. Referenced by HTMLUtils.writeQueryScreen(). 00284 { 00285 00286 try{ 00287 // openForm 00288 //("POST", "..//mouse/JWUpload", "enctype='multipart/form-data"); 00289 openForm("POST", 00290 JetWebConfig.uploadServletPath, 00291 "enctype='multipart/form-data'"); 00292 00293 ofile.write("<div class='jetweb-buttons'>"); 00294 ofile.write("<input type='hidden' name='DIRECTORY' value='"+ 00295 JetWebConfig.jobOutDirName 00296 +"'/>"); 00297 ofile.write("<input type='hidden' name='MODELXML'/>"); 00298 ofile.write(HTMLUtils.writeInputTag 00299 ("file", 00300 "XMLFile", 00301 "Search for models matching a Hepml file", "")); 00302 ofile.write("Search for models matching HepML file "); 00303 ofile.write("<input type='SUBMIT' name='SUBMITXML' value='Go'/>"); 00304 ofile.write("</div>"); 00305 }catch ( IOException e ) { 00306 System.out.println("problem writing form"); 00307 return; 00308 } 00309 }
|
|
Set the date format. Definition at line 184 of file HTMLWriter.java. 00184 { 00185 dateFormat = form; 00186 }
|
|
Write objects as hidden parameters or not. Definition at line 210 of file HTMLWriter.java. 00210 { 00211 hidden = hide; 00212 if (hide) {modifiable = false;} 00213 }
|
|
Directory, relative to root, for the graphics file for the plot. Definition at line 417 of file HTMLPlotWriter.java. References HTMLPlotWriter.imagePath_. 00417 { 00418 imagePath_ = path; 00419 }
|
|
Write objects as modifiable parameters or not. Definition at line 217 of file HTMLWriter.java. Referenced by HTMLModelWriter.display(), HTMLUtils.displayList(), HTMLUtils.displayListContinued(), HTMLWriter.makeRequestForm(), HTMLUtils.writeParameterScreen(), HTMLUtils.writeQueryScreen(), and HTMLUtils.writeSelectPlotsPage(). 00217 { 00218 modifiable = mod; 00219 if (mod) {hidden=false;} 00220 }
|
|
Set the number format. Definition at line 178 of file HTMLWriter.java. 00178 { 00179 dform = form; 00180 }
|
|
Write verbose versions of objects Definition at line 224 of file HTMLWriter.java. Referenced by HTMLPaperWriter.display(), HTMLModelWriter.display(), HTMLUtils.displayList(), HTMLUtils.displayListContinued(), Searcher.doGet(), ServletUtils.editFit(), HTMLWriter.makeRequestForm(), HTMLUtils.writeParameterScreen(), and HTMLUtils.writeSelectPlotsPage(). 00224 { 00225 verbose = verb; 00226 }
|
|
Write out the HTML for the start of a control form with message.
Definition at line 240 of file HTMLWriter.java. 00240 { 00241 00242 try { 00243 writeTopMessage(message); 00244 00245 } catch ( JetWebException e ) { 00246 System.out.println("problem writing form"); 00247 return; 00248 } 00249 }
|
|
Write out the HTML for the start of a (no message) control form. Definition at line 231 of file HTMLWriter.java. Referenced by Maintainer.doGet(), and HTMLUtils.writeControlScreen(). 00231 { 00232 this.startControlForm(" "); 00233 }
|
|
Write out the HTML start tag for a form, with an (optional) message.
Definition at line 256 of file HTMLWriter.java. Referenced by HTMLUtils.listPendingJobs(), HTMLUtils.writeJobRequestForm(), HTMLUtils.writeParameterScreen(), HTMLUtils.writeProcScreen(), HTMLUtils.writeQueryScreen(), and HTMLUtils.writeSelectPlotsPage(). 00256 { 00257 00258 try { 00259 openForm("POST", servletPath); 00260 00261 } catch ( IOException e ) { 00262 System.out.println("problem writing form"); 00263 return; 00264 } 00265 }
|
|
|
Write out HTML text of the data points in simple table form, with an HTML title.
Definition at line 467 of file HTMLPlotWriter.java. References DataPoint.getXMax(), DataPoint.getXMin(), DataPoint.getY(), and DataPoint.getYUp(). Referenced by HTMLPlotWriter.writePlotText(). 00467 { 00468 00469 Enumeration plist = points.elements(); 00470 00471 out.println("<plaintext>"); 00472 out.println(title); 00473 out.println("xmin xmax y error"); 00474 while (plist.hasMoreElements()){ 00475 DataPoint p = (DataPoint)plist.nextElement(); 00476 out.println(p.getXMin()+" " 00477 +p.getXMax()+" "+p.getY()+" "+p.getYUp()); 00478 } 00479 00480 00481 }
|
|
Write out run directory selection screen.
Definition at line 610 of file HTMLWriter.java. References HTMLWriter.write(). 00610 { 00611 00612 try { 00613 File dir = new File(suggestion); 00614 ofile.write("<tr><td colspan=4><hr noshade size=3>"); 00615 if (dir.exists()){ 00616 File[] list = dir.listFiles(); 00617 00618 ofile.write("<tr><td><P>Choosing one of these overrides the input box</P>"); 00619 for (int i=0; i<list.length ; i++){ 00620 if (list[i].isDirectory()){ 00621 ofile.write("<TR><TD>"); 00622 ofile.write(list[i]+" <INPUT TYPE=RADIO NAME=RUNDIR1 VALUE=\""+list[i].getPath()+"\">"); 00623 ofile.newLine(); 00624 } 00625 } 00626 } 00627 ofile.write("<INPUT TYPE=TEXT SIZE=40 NAME=RUNDIR VALUE="+suggestion+">"); 00628 00629 } catch ( IOException e ) { 00630 System.out.println("problem writing form"); 00631 return; 00632 } 00633 00634 }
|
|
Write a standard form to fetch an object with an input ID.
Definition at line 719 of file HTMLWriter.java. References HTMLWriter.write(). Referenced by HTMLUtils.writeQueryScreen(). 00720 { 00721 00722 try { 00723 00724 ofile.write("<div class='idselector'>"); 00725 openForm("POST", servletPath); 00726 //ofile.write("<form method='post' action='"+servletPath+"'>"); 00727 ofile.write(HTMLUtils.writeSubmitButton(name+"GET",hover,text)); 00728 ofile.write(HTMLUtils.writeInputBox(name,"Enter the ID",id)); 00729 closeForm(); 00730 //ofile.write("</form>"); 00731 ofile.write("</div>"); 00732 00733 00734 } catch (IOException ioe) { 00735 ioe.printStackTrace(System.out); 00736 throw new JetWebException(ioe); 00737 } 00738 00739 00740 }
|
|
Write the OK and CANCEL buttons to screens. Definition at line 592 of file HTMLWriter.java. References HTMLWriter.write(). 00592 { 00593 try { 00594 ofile.newLine(); 00595 ofile.write("<TR><TD COLSPAN=3><INPUT TYPE=SUBMIT NAME=ADDTOTHESE VALUE=\"OK\">"); 00596 ofile.newLine(); 00597 ofile.write("<INPUT TYPE=SUBMIT NAME=CANCEL VALUE=\"CANCEL\">"); 00598 } catch ( IOException e ) { 00599 System.out.println("problem writing form"); 00600 return; 00601 } 00602 }
|
|
Compare 2 plots Write the crosssection Id and chi2/dof for each plot. Note: these plots may not be populated with chi2, so have to get them from the database. Definition at line 228 of file HTMLPlotWriter.java. References DataPlot.getTitle(). 00228 { 00229 00230 NumberFormat chi2format = JetWebConfig.getFormat(); 00231 00232 try { 00233 ofile.write("<TR><TD>"+plot1.getTitle()+"</TD><TD>"+chi2format.format(chi21)+"</TD><TD>"+chi2format.format(chi22)+"</TD></TR>"); 00234 } catch (IOException e){ 00235 System.out.println("problem writing form"); 00236 } 00237 }
|
|
Write out HTML text of the data points for the plot with this plotId and and fitId. Output is in simple table form, with an HTML title.
Definition at line 431 of file HTMLPlotWriter.java. References DataPlot.getDataPoints(), and HTMLPlotWriter.writeDataPointText(). 00432 { 00433 // Start new page. 00434 int fid=-1, plid=-1; 00435 try { 00436 fid= Integer.parseInt(fitId); 00437 } catch (Exception e){ 00438 out.println("Error parsing fitId "+fitId); 00439 out.println("Contact jetweb@hep.ucl.ac.uk"); 00440 } 00441 try { 00442 plid= Integer.parseInt(plotId); 00443 } catch (Exception e){ 00444 out.println("Error parsing plotId "+plotId); 00445 out.println("Contact jetweb@hep.ucl.ac.uk"); 00446 } 00447 FittedPlot plot = null; 00448 RealPlot realPlot = (RealPlot)PaperBank.getPlot(plid); 00449 00450 if (fid>=0){ 00451 plot = new FittedPlot(plid, new Fit(fid)); 00452 String title = "Text for fit "+fitId+", plot "+plid; 00453 writeDataPointText(plot.getDataPoints(),title,out); 00454 } else { 00455 String title = "Text for data plot "+plid; 00456 writeDataPointText(realPlot.getDataPoints(),title,out); 00457 } 00458 }
|
|
Write an HTML title. Definition at line 929 of file HTMLWriter.java. References HTMLWriter.write(). Referenced by Searcher.doGet(). 00929 { 00930 try { 00931 ofile.write("<h2>"+title+"</h2>"); 00932 } catch (IOException ioe){ 00933 throw new JetWebException(ioe); 00934 } 00935 }
|
|
Write an HTML message from the server at the top of the screen. Definition at line 917 of file HTMLWriter.java. References HTMLWriter.write(). 00917 { 00918 try { 00919 ofile.write("<div class=\"news\">"+message+"</div>"); 00920 } catch (IOException ioe){ 00921 throw new JetWebException(ioe); 00922 } 00923 00924 }
|
|
Standard format for dates. Definition at line 52 of file HTMLWriter.java. |
|
Standard format for decimals. Definition at line 49 of file HTMLWriter.java. |
|
Keep track of whether we are inside a form or not and how many forms we think we are inside (can only actually ever be one, but it might try to close more than 1 if we don't count!) Definition at line 68 of file HTMLWriter.java. |
|
Write objects as hidden in HTML forms. Definition at line 58 of file HTMLWriter.java. |
|
Definition at line 46 of file HTMLPlotWriter.java. Referenced by HTMLPlotWriter.display(), and HTMLPlotWriter.setImagePath(). |
|
Definition at line 40 of file HTMLWriter.java. |
|
Write objects modiable form fields. Definition at line 55 of file HTMLWriter.java. |
|
Output destinatation. Definition at line 46 of file HTMLWriter.java. |
|
The path to be used for all links to servlets. Definition at line 43 of file HTMLWriter.java. |
|
Write verbose verions of objects. Definition at line 61 of file HTMLWriter.java. |
Generated Wed Jan 17 09:14:27 GMT 2007