source.html 2.3 KB
Newer Older
1
<!--
2
Copyright 2004-2014 H2 Group. Multiple-Licensed under the MPL 2.0, Version 1.0,
3
and under the Eclipse Public License, Version 1.0
4 5
Initial Developer: H2 Group
-->
6
<html><head>
Thomas Mueller's avatar
Thomas Mueller committed
7
<meta name="viewport" content="width=device-width, initial-scale=1" />
8 9
<title>Source Code Viewer</title>
</head>
10 11
<script type="text/javascript">
// <!--
Thomas Mueller's avatar
Thomas Mueller committed
12 13 14

function getVersion(build) {
    if (build == 64) {
15
        return '1.0/version-1.0.' + build;
16 17
    } else if (build >= 177) {
        return '1.4.' + build;
Thomas Mueller's avatar
Thomas Mueller committed
18
    } else if (build >= 146 && build != 147) {
Thomas Mueller's avatar
Thomas Mueller committed
19
        return '1.3/version-1.3.' + build;
Thomas Mueller's avatar
Thomas Mueller committed
20
    } else if (build >= 120) {
21
        return '1.2/version-1.2.' + build;
Thomas Mueller's avatar
Thomas Mueller committed
22
    } else if (build >= 100) {
23
        return '1.1/version-1.1.' + build;
24
    }
Thomas Mueller's avatar
Thomas Mueller committed
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
    return '1.0.' + build;
}

var line = 0, file = '';
var params = location.search.substring(1).split('&');
var tag = 'trunk/h2';
for (var i = 0; i<params.length; i++) {
    var k = params[i].split('=');
    var key = k[0], value = k[1];
    if (key == 'line') {
        line = value;
    } else if (key == 'file') {
        file = value;
    } else if (key == 'build') {
        tag = 'tags/version-' + getVersion(value) + '/h2';
    }
}

43
// -->
44 45 46 47
</script>
<pre>
<table width="100%">
    <tr>
48
        <td style="width: 50px; vertical-align: top">
49
            <script type="text/javascript">
50
// <!--
51 52
                for(var i = 1; i <= 5000; i++) {
                    if (line == i) {
53
                        document.write('<b>' + i + '></b><br />');
54
                    } else if (line <= 4 || i + 4 == line) {
Thomas Mueller's avatar
Thomas Mueller committed
55
                        document.write(i + '<a id = "here"></a><br />');
56 57 58 59
                    } else {
                        document.write(i + '<br />');
                    }
                }
60
// -->
61 62
            </script>
        </td>
63
        <td style="width: 3950px; vertical-align: top">
Thomas Mueller's avatar
Thomas Mueller committed
64
            <iframe id = "source" frameborder="0" marginwidth="0" marginheight="0" width="100%" height="80000px" scrolling="no" src="">
65 66 67 68 69
            </iframe>
        </td>
    </tr>
</table>
<a href="#here"></a>
70 71
<script type="text/javascript">
// <!--
72
    var source = document.getElementById('source');
73
    source.src = 'http://h2database.googlecode.com/svn/' + tag + '/src/main/' + file;
74
    document.location = '#here';
75
// -->
76
</script>
77
<!-- analytics -->
78
</pre></html>