Files
SCM-Manager/scm-webapp/src/main/webapp/index.html

159 lines
7.7 KiB
HTML
Raw Normal View History

2010-10-31 19:22:53 +01:00
<!--
Copyright (c) 2010, Sebastian Sdorra
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
3. Neither the name of SCM-Manager; nor the names of its
contributors may be used to endorse or promote products derived from this
software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
http://bitbucket.org/sdorra/scm-manager
-->
2010-09-04 16:36:25 +02:00
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
2010-09-03 14:43:10 +02:00
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
2010-09-04 15:11:18 +02:00
2010-11-29 21:32:14 +01:00
<!--
2010-09-19 18:59:00 +02:00
<link rel="shortcut icon" type="image/vnd.microsoft.icon" href="resources/images/favicon.ico" />
<link rel="icon" type="image/png" href="resources/images/favicon.png" />
2010-11-29 21:32:14 +01:00
-->
2010-09-19 18:59:00 +02:00
2011-03-31 10:52:25 +02:00
<script type="text/javascript">
var i18n = {
locale: '${locale}',
country: '${country}'
};
</script>
2011-04-01 08:30:09 +02:00
<!--compress-->
2010-09-04 16:36:25 +02:00
<link rel="stylesheet" type="text/css" href="resources/extjs/resources/css/ext-all.css" />
<link rel="stylesheet" type="text/css" href="resources/extjs/resources/css/xtheme-gray.css" />
<link rel="stylesheet" type="text/css" href="resources/css/style.css" />
<script type="text/javascript" src="resources/extjs/adapter/ext/ext-base.js"></script>
<script type="text/javascript" src="resources/extjs/ext-all-debug.js"></script>
2011-01-18 18:30:43 +01:00
<script type="text/javascript" src="resources/extjs/util/CheckColumn.js"></script>
2010-09-04 15:11:18 +02:00
2010-11-03 18:40:43 +01:00
<script type="text/javascript" src="resources/js/sonia.global.js"></script>
2011-04-04 10:41:58 +02:00
<script type="text/javascript" src="resources/js/sonia.util.js"></script>
<script type="text/javascript" src="resources/js/sonia.override.js"></script>
2010-09-15 14:18:55 +02:00
<script type="text/javascript" src="resources/js/sonia.navigation.js"></script>
2010-09-05 13:54:49 +02:00
<script type="text/javascript" src="resources/js/sonia.login.js"></script>
<!-- sonia.rest -->
<script type="text/javascript" src="resources/js/rest/sonia.rest.js"></script>
<script type="text/javascript" src="resources/js/rest/sonia.rest.jsonstore.js"></script>
<script type="text/javascript" src="resources/js/rest/sonia.rest.grid.js"></script>
<script type="text/javascript" src="resources/js/rest/sonia.rest.formpanel.js"></script>
<!-- sonia.repository -->
<script type="text/javascript" src="resources/js/repository/sonia.repository.js"></script>
<script type="text/javascript" src="resources/js/repository/sonia.repository.grid.js"></script>
<script type="text/javascript" src="resources/js/repository/sonia.repository.infopanel.js"></script>
<script type="text/javascript" src="resources/js/repository/sonia.repository.extendedinfopanel.js"></script>
<script type="text/javascript" src="resources/js/repository/sonia.repository.formpanel.js"></script>
<script type="text/javascript" src="resources/js/repository/sonia.repository.propertiesformpanel.js"></script>
<script type="text/javascript" src="resources/js/repository/sonia.repository.permissionformpanel.js"></script>
<script type="text/javascript" src="resources/js/repository/sonia.repository.panel.js"></script>
<script type="text/javascript" src="resources/js/repository/sonia.repository.changesetviewergrid.js"></script>
<script type="text/javascript" src="resources/js/repository/sonia.repository.changesetviewerpanel.js"></script>
<!-- sonia.user -->
<script type="text/javascript" src="resources/js/user/sonia.user.js"></script>
<script type="text/javascript" src="resources/js/user/sonia.user.grid.js"></script>
<script type="text/javascript" src="resources/js/user/sonia.user.formpanel.js"></script>
<script type="text/javascript" src="resources/js/user/sonia.user.panel.js"></script>
<!-- sonia.group -->
<script type="text/javascript" src="resources/js/group/sonia.group.js"></script>
<script type="text/javascript" src="resources/js/group/sonia.group.grid.js"></script>
<script type="text/javascript" src="resources/js/group/sonia.group.formpanel.js"></script>
<script type="text/javascript" src="resources/js/group/sonia.group.propertiesformpanel.js"></script>
<script type="text/javascript" src="resources/js/group/sonia.group.memberformpanel.js"></script>
<script type="text/javascript" src="resources/js/group/sonia.group.panel.js"></script>
<!-- sonia.config -->
<script type="text/javascript" src="resources/js/config/sonia.config.js"></script>
<script type="text/javascript" src="resources/js/config/sonia.config.configpanel.js"></script>
<script type="text/javascript" src="resources/js/config/sonia.config.repositoryconfig.js"></script>
<script type="text/javascript" src="resources/js/config/sonia.config.scmconfigpanel.js"></script>
<script type="text/javascript" src="resources/js/config/sonia.config.configform.js"></script>
<script type="text/javascript" src="resources/js/config/sonia.config.simpleconfigform.js"></script>
2011-01-07 13:12:26 +01:00
<script type="text/javascript" src="resources/js/sonia.action.js"></script>
<script type="text/javascript" src="resources/js/sonia.plugin.js"></script>
2010-11-03 18:40:43 +01:00
<script type="text/javascript" src="resources/js/sonia.scm.js"></script>
2011-04-01 08:30:09 +02:00
<!--/compress-->
<script type="text/javascript" src="plugins/sonia.plugin.js"></script>
2011-03-31 10:52:25 +02:00
<#if country != 'en'>
<script type="text/javascript" src="resources/extjs/i18n/ext-lang-${country}.js"></script>
<script type="text/javascript" src="resources/js/i18n/${country}.js"></script>
2011-03-27 13:47:47 +02:00
</#if>
2010-09-04 16:36:25 +02:00
<title>SCM-WebAPP</title>
2010-09-03 14:43:10 +02:00
</head>
<body>
2010-09-04 16:36:25 +02:00
<!-- use class="x-hide-display" to prevent a brief flicker of the content -->
<div id="north" class="x-hide-display">
<div id="header" style="visibility: visible; ">
<div id="appTitle" class="left-side">
<h1>SCM Manager</h1>
<p>SCM Repository Management</p>
</div>
<div id="logo" class="right-side">
2010-11-29 21:32:14 +01:00
<!--
<img src="resources/images/logo.gif" alt="">
-->
2010-09-04 16:36:25 +02:00
</div>
</div>
</div>
<div id="west" class="x-hide-display">
</div>
<div id="repository-tab" class="x-hide-display">
<h1>SCM Managers</h1>
</div>
<div id="props-panel" class="x-hide-display" style="width:200px;height:200px;overflow:hidden;">
</div>
<div id="south" class="x-hide-display">
<div id="footer" style="visibility: visible; ">
<div class="left-side">
2011-03-27 13:49:58 +02:00
&copy; <a target="_blank" href="http://bitbucket.org/sdorra/scm-manager">SCM Manager</a>
2010-09-04 16:36:25 +02:00
</div>
<div class="right-side">
2011-03-27 13:47:47 +02:00
${version}
2010-09-04 16:36:25 +02:00
</div>
</div>
</div>
2010-09-03 14:43:10 +02:00
</body>
2010-09-04 16:36:25 +02:00
</html>