root / trunk / buildscripts / webbuild.html

Revision 7175, 1.3 kB (checked in by jburke, 19 months ago)

(Merge from 0.4 branch) References #2366: more webbuild plumbing. Generate a tree of available modules. There is problem with modules that have same name as directory, and the tree isn't hooked up to anything, but it is a start.

  • Property svn:eol-style set to native
Line 
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
4<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5<head>
6        <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
7
8        <title>Dojo Builder Prototype</title>
9        <script type="text/javascript">
10                djConfig = {
11                        isDebug: true,
12                        baseRelativePath: "../"
13                };
14        </script>
15        <script src="../dojo.js" type="text/javascript"></script>
16        <script src="buildUtil.js" type="text/javascript"></script>
17        <script src="buildUtilXd.js" type="text/javascript"></script>
18        <script src="webbuild/webbuild.js" type="text/javascript"></script>
19        <script type="text/javascript">
20                function startBuild(depString, version, xdDojoPath){
21                        //Need a timeout here because otherwise the calling location is from the frame
22                        //that calls this page, which messes up our path building for loading files.
23                        //(at least in Firefox 2.0)
24                        setTimeout(function(){webbuild.build(depString, version, xdDojoPath);}, 100);
25                }
26        </script>
27</head>
28
29<body>
30        Hidden builder content for webbuild/index.html. See that file for the entry
31        point into the web build system. This file needs to live in the buildscripts
32        directory because of some assumptions in buildUtil.js.
33</body>
34</html>
Note: See TracBrowser for help on using the browser.