~ubuntu-branches/ubuntu/raring/maas/raring-updates

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Andres Rodriguez
  • Date: 2012-07-03 17:42:37 UTC
  • mfrom: (1.1.13)
  • Revision ID: package-import@ubuntu.com-20120703174237-p8l0keuuznfg721k
Tags: 0.1+bzr709+dfsg-0ubuntu1
* New Upstream release
* debian/control:
  - Depends on python-celery, python-tempita, libjs-yui3-{full,min},
    libjs-raphael
* debian/maas.install:
  - Install apiclient, celeryconfig.py, maas-import-pxe-files, preseeds_v2.
  - Update to install various files from chroot, rather tha manually copy
    them from the source.
* debian/maas.links: symlink celeryconfig.py
* debian/maas.maas-celery.upstart: Add job.
* debian/rules:
  - Install celery upstart job.
  - Do not install jslibs as packages are now used.
  - Drop copying of maas_local_settings_sample.py as source now ships
    a maas_local_settings.py
* debian/patches:
  - 04-maas-http-fix.patch: Drop. Merged upstream.
  - 01-fix-database-settings.patch: Refreshed.
  - 99_enums_js.patch: Added until creation of enum.js / build process
    is fixed.
* debian/maas.postinst: Update bzr version to correctly handle upgrades.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2
 
<html>
3
 
<head>
4
 
<title>YUI Seed Tests</title>
5
 
</head>
6
 
<body class="yui3-skin-sam">
7
 
 
8
 
<div id="log"></div>
9
 
 
10
 
<script type="text/javascript" src="../../../build/yui/yui.js"></script>
11
 
<script type="text/javascript">
12
 
 
13
 
var YUI_config = {
14
 
    gconfig: true,
15
 
    gfilter: (window.location.search.match(/[?&]filter=([^&]+)/) || [])[1] || 'min'
16
 
};
17
 
 
18
 
 
19
 
YUI({
20
 
    allowRollup: false,
21
 
    logExclude: {Dom: true, Selector: true, Node: true, attribute: true, base: true, event: true, widget: true },    
22
 
    filter: YUI_config.gfilter,
23
 
    modules: {
24
 
        'seed-tests': {
25
 
            fullpath: './seed-tests.js',
26
 
            requires: [ 'test']
27
 
        },
28
 
        'core-tests': {
29
 
            fullpath: './core-tests.js',
30
 
            requires: [ 'classnamemanager']
31
 
        },
32
 
 
33
 
        'config-test': {
34
 
            fullpath: 'config-test.js'
35
 
        },
36
 
 
37
 
        'later-test': {
38
 
            fullpath: 'later-test.js'
39
 
        },
40
 
 
41
 
        'namespace-test': {
42
 
            fullpath: 'namespace-test.js'
43
 
        },
44
 
 
45
 
        'test-console': {
46
 
            fullpath : '../../common/tests/assets/test-console.js',
47
 
            requires : ['console-filters'],
48
 
            skinnable: true
49
 
        },
50
 
 
51
 
        'skin-sam-test-console': {
52
 
            fullpath: '../../common/tests/assets/test-console.css',
53
 
            type    : 'css'
54
 
        }
55
 
        
56
 
    }
57
 
}).use('seed-tests', 'core-tests', 'config-test', 'later-test', 'namespace-test', 'test-console', 'test', function(Y) {
58
 
    Y.Test.Runner.run();
59
 
});
60
 
 
61
 
</script>
62
 
</body>
63
 
</html>