source: Dev/branches/rest-dojo-ui/client/util/buildscripts/webbuild/index.html @ 257

Last change on this file since 257 was 256, checked in by hendrikvanantwerpen, 13 years ago

Reworked project structure based on REST interaction and Dojo library. As
soon as this is stable, the old jQueryUI branch can be removed (it's
kept for reference).

File size: 2.0 KB
Line 
1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
2                "http://www.w3.org/TR/html4/strict.dtd">
3<html>
4<head>
5        <title>Dojo Web Builder</title>
6        <link rel="stylesheet" type="text/css" href="http://ajax.googleapis.com/ajax/libs/dojo/1.3/dojo/resources/dojo.css"/>
7        <link rel="stylesheet" type="text/css" href="http://ajax.googleapis.com/ajax/libs/dojo/1.3/dijit/themes/tundra/tundra.css"/>
8        <style type="text/css">
9                #serverFrame {
10                        width: 1px;
11                        height: 1px;
12                        visibility: hidden;
13                }
14        </style>
15        <script type="text/javascript">
16                djConfig = {
17                       
18                };
19        </script>
20        <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/dojo/1.3/dojo/dojo.xd.js"></script>
21</head>
22<body class="tundra">
23<h1>Dojo Web Builder</h1>
24
25<form action="http://localhost:8080/dojoweb" method="POST" target="serverFrame">
26        <div class="formSection">
27                <label for="version">Version:</label>
28                <select id="version" name="version">
29                        <option value="1.3.2" selected="selected">1.3.2</option>
30                </select>
31        </div>
32        <div class="formSection">
33                <label for="cdn">CDN preference:</label>
34                <select id="cdn" name="cdn">
35                        <option value="google">Google</option>
36                        <option value="aol">AOL</option>
37                </select>
38        </div>
39        <div class="formSection">
40                <label for="optimize">Optimization:</label>
41                <select id="optimize" name="optimize">
42                        <option value="shrinksafe">ShrinkSafe minification without line returns</option>
43                        <option value="shrinksafe.keepLines">ShrinkSafe minification with line returns</option>
44                        <option value="comments">Comment removal only</option>
45                        <option value="none">None (keeps comments and line returns)</option>
46                </select>
47        </div>
48        <div class="formSection">
49                <label for="dependencies">Dependencies:</label>
50                <textarea id="dependencies" name="dependencies" cols="60" rows="20"></textarea>
51        </div>
52        <div class="formSection">
53                <button name="submit">Build It!</button>
54        </div>
55
56</form>
57
58<iframe id="serverFrame" name="serverFrame" src="http://ajax.googleapis.com/ajax/libs/dojo/1.3/dojo/resources/blank.html"></iframe>
59</body>
60</html>
Note: See TracBrowser for help on using the repository browser.