Initial commit
[clearscm.git] / cc / msl / index.php
1 <!--
2 File:           index.php,v
3 Revision:       1.1.1.1
4
5 Description:    Manage Stream Locks. This web application allows managers to manage 
6                 locks on UCM streams. Security is provided through simple Basic 
7                 Authentication provided by the web server.
8
9 Author:         Andrew@DeFaria.com
10 Created:        Fri Jul 14 09:44:04 PDT 2006
11 Modified:       2007/05/17 07:45:48
12 Language:       PHP
13
14 (c) Copyright 2006, Andrew@DeFaria.com, all rights reserved.
15 -->
16
17 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
18    "http://www.w3.org/TR/html4/strict.dtd">
19 <html>
20 <head>
21   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
22   <meta name="GENERATOR" content="Mozilla/4.61 [en] (Win98; U) [Netscape]">
23   <link rel="stylesheet" type="text/css" href="/css/default.css">
24 <?php
25 include_once ("streams.php");
26
27 $version = "1.0";
28
29 $heading = "Manage Stream Locks";
30 ?>
31   <title><?php echo $heading?></title>
32 </head>
33
34 <center><h1><?php echo $heading?></h1></center>
35
36 <p>Popular Streams:</p>
37
38 <ul>
39   <li><a href="lsnusers.php?stream=RISS15_Integration">RISS15_Integration</a></li>
40   <li><a href="lsnusers.php?stream=RISS151_Integration">RISS151_Integration</a></li>
41   <li><a href="lsnusers.php?stream=osaka_strm">osaka_strm</a></li>
42 </ul>
43
44 <center>
45 <form method="get" 
46       action="lsnusers.php"
47       name="select_stream">
48
49 <p><b>All streams:</b>&nbsp;<select name="stream" class="inputfield">
50 <?php
51 $streams = get_streams ();
52 sort ($streams);
53
54 foreach ($streams as $stream) {
55   print "<option>$stream</option>\n";
56 } // foreach
57 ?>
58 </select>
59
60 &nbsp;<input type="submit" value="Select"></p>
61 </form>
62
63 <p><small><a href="/">Back to main build page</a></small></p>
64 </center>
65 <?php copyright (null ,$version);?>
66 </body>
67 </html>