Skip to content
Snippets Groups Projects
Commit 4ac986d8 authored by buczekp's avatar buczekp
Browse files

[LMS-2233] changes in screening & phosphonetx to make debug-panel work

SVN: 21172
parent 7343e211
No related branches found
No related tags found
No related merge requests found
......@@ -5,26 +5,28 @@
<!-- force IE to go to document mode IE8 standards (and avoid the dreadful quirks-mode) -->
<meta http-equiv="X-UA-Compatible" content="IE=edge" >
<link rel="shortcut icon" href="images/favicon.ico" />
<link rel="icon" type="image/png" href="images/favicon.png" />
<link rel="stylesheet" type="text/css" href="resources/css/gxt-all.css" />
<link rel="stylesheet" type="text/css" href="resources/css/debug-panel.css" />
<!--
// This script loads your compiled module. If you add any GWT meta tags, they must be added before this line.
-->
<script language="javascript"
src="ch.systemsx.cisd.openbis.plugin.phosphonetx.OpenBIS.nocache.js"></script>
<script language="JavaScript">
// confirmation on exit depends on whether user is logged in
var allowConfirmOnExit = false;
window.onbeforeunload = confirmExit;
function confirmExit()
{
if (allowConfirmOnExit) {
return "WARNING: By doing this you will in fact leave openBIS!";
<!-- This snippet should be automatically included in all the HTML that wishes to use the debug panel. -->
<script type="text/javascript" language="javascript">
var stats = window.__stats = [];
window.__gwtStatsEvent = function(evt) {
stats[stats.length] = evt;
var listener = window.__stats_listener;
listener && listener(evt);
return true;
}
}
</script>
<link rel="shortcut icon" href="images/favicon.ico" />
<link rel="icon" type="image/png" href="images/favicon.png" />
<link rel="stylesheet" type="text/css" href="resources/css/gxt-all.css" />
</head>
<!--
// The body can have arbitrary html, or you can leave the body empty if you want to create a completely dynamic ui.
......
......@@ -473,7 +473,7 @@
-->
<target name="screening-compile-module-test" description="Compile the module test mode">
<delete dir="${targets.www}/${module-test.path}" />
<java classpath="${ecp}:${ecp.gwt}:${gwt.lib}/gwt-dev.jar:${gwt.user.lib}:../openbis/${sources}:${sources}:../common/${sources}"
<java classpath="${ecp}:${ecp.gwt}:${gwt.lib}/gwt-dev.jar:${gwt.user.lib}:${gwt.debugpanel.lib}:../openbis/${sources}:${sources}:../common/${sources}"
classname="com.google.gwt.dev.Compiler" fork="true">
<jvmarg value="-Xmx512M" />
<arg value="-war" />
......
......@@ -5,34 +5,34 @@
<!-- force IE to go to document mode IE8 standards (and avoid the dreadful quirks-mode) -->
<meta http-equiv="X-UA-Compatible" content="IE=edge" >
<link rel="shortcut icon" href="images/favicon.ico" />
<link rel="icon" type="image/png" href="images/favicon.png" />
<link rel="stylesheet" type="text/css" href="resources/css/gxt-all.css" />
<link rel="stylesheet" type="text/css" href="resources/css/debug-panel.css" />
<!--
// This script loads your compiled module. If you add any GWT meta tags, they must be added before this line.
-->
<script language="javascript" src="ch.systemsx.cisd.openbis.plugin.screening.OpenBIS.nocache.js"></script>
<script language="JavaScript">
// confirmation on exit depends on whether user is logged in
var allowConfirmOnExit = false;
window.onbeforeunload = confirmExit;
function confirmExit()
{
if (allowConfirmOnExit) {
return "WARNING: By doing this you will in fact leave openBIS!";
}
<!-- This snippet should be automatically included in all the HTML that wishes to use the debug panel. -->
<script type="text/javascript" language="javascript">
var stats = window.__stats = [];
window.__gwtStatsEvent = function(evt) {
stats[stats.length] = evt;
var listener = window.__stats_listener;
listener && listener(evt);
return true;
}
</script>
<!-- Required by IE (GWT 1.7) -->
<iframe id="__gwt_historyFrame" style="width:0;height:0;border:0"></iframe>
<link rel="shortcut icon" href="images/favicon.ico" />
<link rel="icon" type="image/png" href="images/favicon.png" />
<link rel="stylesheet" type="text/css" href="resources/css/gxt-all.css" />
</head>
<!--
// The body can have arbitrary html, or you can leave the body empty if you want to create a completely dynamic ui.
-->
<body>
<!-- Required by IE (GWT 1.7) -->
<iframe id="__gwt_historyFrame" style="width:0;height:0;border:0"></iframe>
<div id="openbis_login_div" style="visibility: hidden">
<form id="openbis_login_form" method="post" action="javascript:;">
<table cellspacing="5">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment