~lutostag/ubuntu/utopic/maas/1.5.2

« back to all changes in this revision

Viewing changes to src/maasserver/static/jslibs/yui/3.4.1/tests/app/tests/app.html

  • Committer: Package Import Robot
  • Author(s): Andres Rodriguez
  • Date: 2012-03-15 18:14:08 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20120315181408-zgl94hzo0x4n99an
Tags: 0.1+bzr295+dfsg-0ubuntu2
* debian/patches:
  - 01-fix-database-settings.patch: Update to set PSERV_URL.
  - 02-pserv-config.patch: Set port to 8001.
* debian/maas.postinst: Run maas-import-isos on install.
* debian/control: Depends on rabbitmq-server.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!DOCTYPE html>
 
2
<html>
 
3
<head>
 
4
    <meta charset="utf-8">
 
5
    <title>Test Page</title>
 
6
</head>
 
7
<body class="yui3-skin-sam">
 
8
 
 
9
<div id="log"></div>
 
10
 
 
11
<script src="../../../build/yui/yui.js"></script>
 
12
<script>
 
13
var Y = YUI({
 
14
    allowRollup: false,
 
15
    filter: (window.location.search.match(/[?&]filter=([^&]+)/) || [])[1] || 'min',
 
16
    modules: {
 
17
        'test-console': {
 
18
            fullpath : '../../common/tests/assets/test-console.js',
 
19
            requires : ['console-filters'],
 
20
            skinnable: true
 
21
        },
 
22
 
 
23
        'skin-sam-test-console': {
 
24
            fullpath: '../../common/tests/assets/test-console.css',
 
25
            type    : 'css'
 
26
        },
 
27
 
 
28
        'app-test': {
 
29
            fullpath: 'app-test.js',
 
30
            requires: ['controller', 'model', 'model-list', 'view', 'test']
 
31
        }
 
32
    },
 
33
    useBrowserConsole: false
 
34
}).use('app-test', 'test-console', function (Y) {
 
35
    Y.Test.Runner.run();
 
36
});
 
37
</script>
 
38
 
 
39
</body>
 
40
</html>