source: trunk/greenstone3-extensions/gsdl-as/web/test.html@ 8720

Last change on this file since 8720 was 8720, checked in by schweer, 19 years ago

worked on web interface

  • Property svn:keywords set to Author Date Id Revision
File size: 1.8 KB
Line 
1<?xml version="1.0"?>
2<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
4<html xmlns="http://www.w3.org/1999/xhtml">
5 <head>
6 <title>Alerting Service for Greenstone</title>
7 <link href="default.css" rel="stylesheet" type="text/css"/>
8 <style type="text/css">
9 <!--
10 table { border:1pt solid black; padding:2px; background:#F0F0F0; }
11 th { text-align:left; background:lightblue; }
12 th,td { border-width:0px; }
13 -->
14 </style>
15 </head>
16 <body>
17 <div id="content">
18 <!-- <h1>Test</h1>
19 <form action="/alerting/service?test" method="post">
20 <input type="text" name="text"/><br/>
21 <input type="submit" value="submit"/>
22 </form>
23 <hr/> -->
24
25 <h3>Subscribe</h3>
26 <form action="/alerting/service" method="post" name="subscribe">
27 <input type="hidden" name="action" value="subscribe"/>
28 <table border="1">
29 <tr>
30 <th>Event Type</th>
31 <td>
32 <input type="radio" name="type" value="new_document" checked="checked"/> new document
33 <input type="radio" name="type" value="document_deleted"/> document deleted
34 <input type="radio" name="type" value="document_content_changed" /> content changed
35 <input type="radio" name="type" value="document_md_changed"/> metadata changed
36 </td>
37 </tr>
38 <tr>
39 <th>Document ID</th>
40 <td>
41 <input type="text" name="documentID"/>
42 </td>
43 </tr>
44 <tr>
45 <th>Document Title</th>
46 <td>
47 <input type="text" name="document_title"/>
48 </td>
49 </tr>
50 <tr>
51 <th>Document Content</th>
52 <td>
53 <input type="text" name="document_content"/>
54 </td>
55 </tr>
56 <tr>
57 <th>Collection ID</th>
58 <td>
59 <input type="text" name="collectionID"/>
60 </td>
61 </tr>
62 </table>
63 <br/>
64 <input type="submit" value="submit"/>
65 </form>
66 </div>
67 </body>
68</html>
Note: See TracBrowser for help on using the repository browser.