~ubuntu-branches/ubuntu/precise/maas/precise-updates

« back to all changes in this revision

Viewing changes to src/maasserver/static/jslibs/yui/3.4.1/tests/datasource/tests/datasource-local.html

Tags: 1.2+bzr1373+dfsg-0ubuntu1~12.04.4
* SECURITY UPDATE: failure to authenticate downloaded content (LP: #1039513)
  - debian/patches/CVE-2013-1058.patch: Authenticate downloaded files with
    GnuPG and MD5SUM files. Thanks to Julian Edwards.
  - CVE-2013-1058
* SECURITY UPDATE: configuration options may be loaded from current working
  directory (LP: #1158425)
  - debian/patches/CVE-2013-1057-1-2.patch: Do not load configuration
    options from the current working directory. Thanks to Julian Edwards.
  - CVE-2013-1057

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<!DOCTYPE HTML>
2
 
<html>
3
 
<head>
4
 
<title>DataSource Tests</title>
5
 
<script src="../../../build/yui/yui.js"></script>
6
 
</head>
7
 
 
8
 
<body class="yui3-skin-sam">
9
 
<script src="datasource-local-tests.js"></script>
10
 
<script>
11
 
YUI({
12
 
    filter: (window.location.search.match(/[?&]filter=([^&]+)/) || [])[1] || 'min',
13
 
    allowRollup: false,
14
 
    useBrowserConsole: true
15
 
}).use("datasource-local-tests", "console", function (Y) {
16
 
    new Y.Console().render();
17
 
 
18
 
    Y.Test.Runner.run();
19
 
});
20
 
</script>
21
 
</body>
22
 
</html>