Remove the loading text from dialog ...

This commit is contained in:
Paulo Gustavo Veiga 2012-07-01 17:56:31 -03:00
parent 7752ac0dc1
commit 0cb142d3fd
16 changed files with 124 additions and 53 deletions

View File

@ -211,7 +211,7 @@ mindplot.widget.Menu = new Class({
{'class':'modalDialog exportModalDialog', {'class':'modalDialog exportModalDialog',
closeButton:true, closeButton:true,
destroyOnClose:true, destroyOnClose:true,
title:$msg('EXPORT') title: $msg('EXPORT')
}); });
reqDialog.setRequestOptions({ reqDialog.setRequestOptions({
onRequest:function () { onRequest:function () {

View File

@ -123,7 +123,7 @@ editor.WaitDialog = new Class({
destroyOnClose:true, destroyOnClose:true,
autoOpen:false, autoOpen:false,
useEscKey:false, useEscKey:false,
title:'Loading ...', title:'',
onInitialize:function (wrapper) { onInitialize:function (wrapper) {
wrapper.setStyle('opacity', 0); wrapper.setStyle('opacity', 0);
this.wrapper.setStyle('display', 'none'); this.wrapper.setStyle('display', 'none');

View File

@ -23,6 +23,7 @@ import com.wisemapping.exceptions.WiseMappingException;
import com.wisemapping.model.CollaborationRole; import com.wisemapping.model.CollaborationRole;
import com.wisemapping.model.MindMap; import com.wisemapping.model.MindMap;
import com.wisemapping.model.MindMapHistory; import com.wisemapping.model.MindMapHistory;
import com.wisemapping.model.User;
import com.wisemapping.security.Utils; import com.wisemapping.security.Utils;
import com.wisemapping.service.MindmapService; import com.wisemapping.service.MindmapService;
import com.wisemapping.view.MindMapBean; import com.wisemapping.view.MindMapBean;
@ -67,6 +68,7 @@ public class MindmapController {
@RequestMapping(value = "maps/{id}/print") @RequestMapping(value = "maps/{id}/print")
public String showPrintPage(@PathVariable int id, @NotNull Model model) { public String showPrintPage(@PathVariable int id, @NotNull Model model) {
final MindMapBean mindmap = findMindmapBean(id); final MindMapBean mindmap = findMindmapBean(id);
model.addAttribute("principal", Utils.getUser());
model.addAttribute("mindmap", mindmap); model.addAttribute("mindmap", mindmap);
return "mindmapPrint"; return "mindmapPrint";
} }
@ -124,7 +126,9 @@ public class MindmapController {
} }
@RequestMapping(value = "maps/") @RequestMapping(value = "maps/")
public String showListPage() { public String showListPage(@NotNull Model model) {
final Locale locale = LocaleContextHolder.getLocale();
model.addAttribute("locale", locale.getLanguage());
return "mindmapList"; return "mindmapList";
} }
@ -140,6 +144,7 @@ public class MindmapController {
// Configure default locale for the editor ... // Configure default locale for the editor ...
final Locale locale = LocaleContextHolder.getLocale(); final Locale locale = LocaleContextHolder.getLocale();
model.addAttribute("locale", locale.getLanguage()); model.addAttribute("locale", locale.getLanguage());
model.addAttribute("principal", Utils.getUser());
result = "mindmapEditor"; result = "mindmapEditor";
} else { } else {
result = "redirect:view"; result = "redirect:view";

View File

@ -32,26 +32,20 @@ CHANGE_LANGUAGE=Change Language
FAQ=Frequent Asked Questions FAQ=Frequent Asked Questions
SHORT_FAQ=FAQ SHORT_FAQ=FAQ
LOGIN=Login LOGIN=Login
MSG=Message
PROBLEM_DETAIL=Description
EXPORT=Export EXPORT=Export
SVG_EXPORT_FORMAT=Scalable Vector Graphics (SVG) SVG_EXPORT_FORMAT=Scalable Vector Graphics (SVG)
PDF_EXPORT_FORMAT=Portable Document Format (PDF) PDF_EXPORT_FORMAT=Portable Document Format (PDF)
IMG_EXPORT_FORMAT=Image File (PNG/JPEG) IMG_EXPORT_FORMAT=Image File (PNG/JPEG)
FREEMIND_EXPORT_FORMAT = Freemind (version 0.9.0) FREEMIND_EXPORT_FORMAT = Freemind (version 0.9.0)
WISEMAPPING_EXPORT_FORMAT = WiseMapping WISEMAPPING_EXPORT_FORMAT = WiseMapping
STATUS=Status
LAST_UPDATE=Last Update LAST_UPDATE=Last Update
LAST_UPDATE_BY=Last Update By LAST_UPDATE_BY=Last Update By
DELETE=Delete DELETE=Delete
EDITOR.ERROR_LOADING=An unexpected error has occurred initializing this page. <br/>We'll solve this problem as soon as possible. Please, click <a href="maps/">here</a> to return to your mindmap list.
SITE.TITLE=WiseMapping SITE.TITLE=WiseMapping
SITE.SLOGAN=Visual Thinking Evolution SITE.SLOGAN=Visual Thinking Evolution
DISCARD_CHANGES=Discard Changes
KEYBOARD=Keyboard Shortcuts KEYBOARD=Keyboard Shortcuts
KEYBOARD_MSG=These are the keyboard shortcuts you can use in the editor! KEYBOARD_MSG=These are the keyboard shortcuts you can use in the editor!
HOME=Home HOME=Homepage
LOGIN_ERROR=The email address or password you entered is incorrect. LOGIN_ERROR=The email address or password you entered is incorrect.
USER_INACTIVE=Sorry, your account has not been activated yet. You'll receive a notification email when it becomes active. Stay tuned!. USER_INACTIVE=Sorry, your account has not been activated yet. You'll receive a notification email when it becomes active. Stay tuned!.
CREW=The Crew CREW=The Crew
@ -89,7 +83,6 @@ PRIVACYPOLICY= Privacy Policy
EXPORT_DETAILS=Export this map in the format that you want and start using it in your presentations or sharing by email EXPORT_DETAILS=Export this map in the format that you want and start using it in your presentations or sharing by email
HERE=here HERE=here
WHO_ARE_WE=Who are we? WHO_ARE_WE=Who are we?
MEMBERS=Members
WELCOME=Welcome WELCOME=Welcome
RENAME=Rename RENAME=Rename
MAX_CHARACTER_SIZE= Maximum allowed message length of 512 characters. MAX_CHARACTER_SIZE= Maximum allowed message length of 512 characters.
@ -99,13 +92,6 @@ BLOG_INCLUSION=You can customize the code snippet to embed this map on your blog
BLOG_SNIPPET=Copy this snippet of code to embed in your blog or page BLOG_SNIPPET=Copy this snippet of code to embed in your blog or page
ZOOM=Zoom ZOOM=Zoom
HISTORY=History HISTORY=History
LINK=Link
TYPE=Type
SIZE=Size
BOLD=Bold
ITALIC=Italic
FONT_COLOR=Font Color
COLOR=Color
SHARE=Share SHARE=Share
UNEXPECTED_ERROR=Outch!!. An unexpected error has occurred. UNEXPECTED_ERROR=Outch!!. An unexpected error has occurred.
UNEXPECTED_ERROR_DETAILS=We're sorry, an error has occurred and we can't process your request. Please try again, or go to the home page. UNEXPECTED_ERROR_DETAILS=We're sorry, an error has occurred and we can't process your request. Please try again, or go to the home page.
@ -192,5 +178,9 @@ BROWSER_NOT_SUPPORTED_MSG=Your browser has not been fully tested and it might no
BROWSER_NOT_SUPPORTED_TRY_AGAIN=Try again with one of the browsers previously listed. BROWSER_NOT_SUPPORTED_TRY_AGAIN=Try again with one of the browsers previously listed.
INSTALL_CFG=Sorry, Microsoft Internet Explorer 8 is partially supported INSTALL_CFG=Sorry, Microsoft Internet Explorer 8 is partially supported
INSTALL_CFG_REASON = Microsoft Internet Explorer 8 does not support HTML 5 SVG. SVG is the tecgnology used be WiseMapping to render and edit mindmaps. We strongly encourage update to either Microsoft Internet Explorer 9 or use other browser such as Google Chrome, Firefox o Safari. INSTALL_CFG_REASON = Microsoft Internet Explorer 8 does not support HTML 5 SVG. SVG is the technology used be WiseMapping to render and edit mindmaps. We strongly encourage update to either Microsoft Internet Explorer 9 or use other browser such as Google Chrome, Firefox o Safari.
INSTALL_CFG_CLICK_HERE=If you still want to use Microsoft Internet Explorer 8, click here to install Google Chrome Frame Plugin. Google Chrome Frame Plugin extends Internet Explorer capabilities adding support for HTML 5. INSTALL_CFG_CLICK_HERE=If you still want to use Microsoft Internet Explorer 8, click here to install Google Chrome Frame Plugin. Google Chrome Frame Plugin extends Internet Explorer capabilities adding support for HTML 5.
SHOW_REGISTERS=Show _MENU_ entries
LOADING=Loading ...
NO_MATCHING_FOUND=No matching records found
TABLE_ROWS=\ _START_-_END_ of _TOTAL_

View File

@ -35,7 +35,6 @@ SVG_EXPORT_FORMAT=Scalable Vector Graphics (SVG)
PDF_EXPORT_FORMAT=Portable Document Format (PDF) PDF_EXPORT_FORMAT=Portable Document Format (PDF)
IMG_EXPORT_FORMAT=Imagen (PNG/JPEG) IMG_EXPORT_FORMAT=Imagen (PNG/JPEG)
FREEMIND_EXPORT_FORMAT = Freemind (version 0.9.0) FREEMIND_EXPORT_FORMAT = Freemind (version 0.9.0)
STATUS=Estado
DELETE=Borrar DELETE=Borrar
LOGIN_ERROR=El nombre de usuario o la contrase\u00f1a introducidos no son correctos. LOGIN_ERROR=El nombre de usuario o la contrase\u00f1a introducidos no son correctos.
USER_INACTIVE=Disculpe, su cuenta aun no ha sido activada. Usted recibira una notificaci&oacute;n por email tan pronto la activemos. USER_INACTIVE=Disculpe, su cuenta aun no ha sido activada. Usted recibira una notificaci&oacute;n por email tan pronto la activemos.
@ -71,7 +70,6 @@ TERMSOFUSE=T&eacute;rminos de uso
PRIVACYPOLICY= Politica de privacidad PRIVACYPOLICY= Politica de privacidad
EXPORT_DETAILS=Exporte el mapa en el formato que desee y comience a utlizarlo en sus presentaciones EXPORT_DETAILS=Exporte el mapa en el formato que desee y comience a utlizarlo en sus presentaciones
WHO_ARE_WE=Quienes somos? WHO_ARE_WE=Quienes somos?
MEMBERS=Miembros
WELCOME=Bienvenido WELCOME=Bienvenido
NO_HISTORY_RESULTS=No existen cambios registrados para el mapa seleccionado NO_HISTORY_RESULTS=No existen cambios registrados para el mapa seleccionado
RENAME=Renombrar RENAME=Renombrar
@ -89,7 +87,6 @@ NO_ENOUGH_PERMISSIONS_DETAILS=No tiene suficiente permisos de acceso para ver es
PRINT=Imprimir PRINT=Imprimir
IMPORT_MAP_ERROR=El archivo importado no parece ser un archivo FreeMind v&aacute;lido IMPORT_MAP_ERROR=El archivo importado no parece ser un archivo FreeMind v&aacute;lido
MAP_TITLE_ALREADY_EXISTS=Nombre de mapa ya existente MAP_TITLE_ALREADY_EXISTS=Nombre de mapa ya existente
COLLABORATE=Colaborar
EMBEDDED_MAP_SIZE=* Note: You can change embedded map size modifying 'height' and 'width' style properties. You can also adjust the zoom factor modifying 'zoom' parameter from the URL. EMBEDDED_MAP_SIZE=* Note: You can change embedded map size modifying 'height' and 'width' style properties. You can also adjust the zoom factor modifying 'zoom' parameter from the URL.
#FOOTER #FOOTER
@ -102,7 +99,6 @@ KEYBOARD_MSG=Estos son los atajos de teclado que puede utilizar en el editor!
REVERT=revertir REVERT=revertir
EXPORT_FORMAT_RESTRICTIONS=Important: Exporting to Image, PDF or SVG is available only in the editor toolbar. EXPORT_FORMAT_RESTRICTIONS=Important: Exporting to Image, PDF or SVG is available only in the editor toolbar.
STARRED=Importantes STARRED=Importantes
LINK=URL
ACCOUNT_ACTIVED=Su cuenta ha sido activada ACCOUNT_ACTIVED=Su cuenta ha sido activada
ACCOUNT_ACTIVED_FAIL=Falla al Activar Cuenta ACCOUNT_ACTIVED_FAIL=Falla al Activar Cuenta
WISEMAPPING_EXPORT_FORMAT=WiseMapping WISEMAPPING_EXPORT_FORMAT=WiseMapping
@ -112,7 +108,6 @@ CHANGE_PASSWORD_SUCCESS=Contrase\u00f1a cambiada exitosamente
CONFIRM_NEW_PASSWORD=Confirmar Contrase\u00f1a CONFIRM_NEW_PASSWORD=Confirmar Contrase\u00f1a
COPYRIGHT=Impulsado por WiseMapping COPYRIGHT=Impulsado por WiseMapping
UNEXPECTED_ERROR_SERVER_ERROR=Lo sentimos, un error ha ocurrido y no es posible procesar su pedido. Recargue la p\u00e1gina y intentolo nuevamente. Si el problema persiste, contactenos a support@wisemapping.com UNEXPECTED_ERROR_SERVER_ERROR=Lo sentimos, un error ha ocurrido y no es posible procesar su pedido. Recargue la p\u00e1gina y intentolo nuevamente. Si el problema persiste, contactenos a support@wisemapping.com
TYPE=Tipo
SHARE=Compartir SHARE=Compartir
SEND_ME_A_NEW_PASSWORD=Enviar Nueva Contrase\u00f1a SEND_ME_A_NEW_PASSWORD=Enviar Nueva Contrase\u00f1a
ALL_MAPS=Todos ALL_MAPS=Todos
@ -129,12 +124,9 @@ SHARED_WITH_ME=Compartidos
ACCEPT=Aceptar ACCEPT=Aceptar
IMPORT=Importar IMPORT=Importar
HISTORY=Historia HISTORY=Historia
ITALIC=Italica
INVALID_EMAIL_ERROR=El e-mail no fue verificado INVALID_EMAIL_ERROR=El e-mail no fue verificado
ICON=Icono
LAST_UPDATE=Ultima Actualizaci\u00f3n LAST_UPDATE=Ultima Actualizaci\u00f3n
LAST_UPDATE_BY=Ultima Actualizaci\u00f3n Por LAST_UPDATE_BY=Ultima Actualizaci\u00f3n Por
SIZE=Tama\u221a\u00b1o
NO_PRODUCTION_DATABASE_CONFIGURED=A pesar que la base de datos HSQLDB es distribuida por defecto durante la instalaci\u00f3n, la misma no es recomendada para el uso en entornos productivos. Se recomienda fuertemente usar MySQL 5.5 o superior. Los pasos para configurar MySQL pueden ser encontrados NO_PRODUCTION_DATABASE_CONFIGURED=A pesar que la base de datos HSQLDB es distribuida por defecto durante la instalaci\u00f3n, la misma no es recomendada para el uso en entornos productivos. Se recomienda fuertemente usar MySQL 5.5 o superior. Los pasos para configurar MySQL pueden ser encontrados
CHANGE_LANGUAGE=Cambiar Idioma CHANGE_LANGUAGE=Cambiar Idioma
FILTERS=Filtros FILTERS=Filtros
@ -187,4 +179,9 @@ INSTALL_CFG=Disculpe, Microsoft Internet Explorer 8 esta parcialmente soportado
INSTALL_CFG_REASON = Microsoft Internet Explorer 8 soporta parcialmente HTML 5 y SVG. SVG es la tecnolog\u00eda que WiseMapping usa para el editor de mapas. Le recomendamos que actualice a Microsoft Internet Explorer 9 o utilice otro navegador como ser Google Chrome, Firefox o Safari. INSTALL_CFG_REASON = Microsoft Internet Explorer 8 soporta parcialmente HTML 5 y SVG. SVG es la tecnolog\u00eda que WiseMapping usa para el editor de mapas. Le recomendamos que actualice a Microsoft Internet Explorer 9 o utilice otro navegador como ser Google Chrome, Firefox o Safari.
INSTALL_CFG_CLICK_HERE=Si desea seguir utilizando Internet Explorer 8, haga click ac\u00e1 para instalar Google Chrome Frame Plugin. Google Chrome Frame Plugin extiende las capaciadades de Internet Explorer con HTML 5. INSTALL_CFG_CLICK_HERE=Si desea seguir utilizando Internet Explorer 8, haga click ac\u00e1 para instalar Google Chrome Frame Plugin. Google Chrome Frame Plugin extiende las capaciadades de Internet Explorer con HTML 5.
HERE=aqu\u00ed HERE=aqu\u00ed
BOLD=Negrita SEARCH=Buscar
HOME=Homepage
SHOW_REGISTERS=Mostrar _MENU_ registros
LOADING=Cargando ...
NO_MATCHING_FOUND=No se encontraron resultados
TABLE_ROWS=\ _START_-_END_ de _TOTAL_

View File

@ -2,10 +2,8 @@
@import "bootstrap/css/bootstrap-responsive.min.css"; @import "bootstrap/css/bootstrap-responsive.min.css";
@import "css/pageHeaders.css"; @import "css/pageHeaders.css";
@html-background: #dedederepeat-x scroll @html-background: #dedederepeat-xscroll;
@body-width: 1050px;
;
@body-width: 956px;
@font-family: "Lucida Grande", @font-family: "Lucida Grande",
"Arial" "Arial"

View File

@ -0,0 +1,18 @@
// German
jQuery.timeago.settings.strings = {
prefixAgo: "vor",
prefixFromNow: "in",
suffixAgo: "",
suffixFromNow: "",
seconds: "wenigen Sekunden",
minute: "etwa einer Minute",
minutes: "%d Minuten",
hour: "etwa einer Stunde",
hours: "%d Stunden",
day: "etwa einem Tag",
days: "%d Tagen",
month: "etwa einem Monat",
months: "%d Monaten",
year: "etwa einem Jahr",
years: "%d Jahren"
};

View File

@ -0,0 +1,20 @@
// English (Template)
jQuery.timeago.settings.strings = {
prefixAgo: null,
prefixFromNow: null,
suffixAgo: "ago",
suffixFromNow: "from now",
seconds: "less than a minute",
minute: "about a minute",
minutes: "%d minutes",
hour: "about an hour",
hours: "about %d hours",
day: "a day",
days: "%d days",
month: "about a month",
months: "%d months",
year: "about a year",
years: "%d years",
wordSeparator: " ",
numbers: []
};

View File

@ -0,0 +1,18 @@
// Spanish
jQuery.timeago.settings.strings = {
prefixAgo: "hace",
prefixFromNow: "dentro de",
suffixAgo: "",
suffixFromNow: "",
seconds: "menos de un minuto",
minute: "un minuto",
minutes: "unos %d minutos",
hour: "una hora",
hours: "%d horas",
day: "un día",
days: "%d días",
month: "un mes",
months: "%d meses",
year: "un año",
years: "%d años"
};

View File

@ -0,0 +1,17 @@
// French
jQuery.timeago.settings.strings = {
// environ ~= about, it's optional
prefixAgo: "il y a",
prefixFromNow: "d'ici",
seconds: "moins d'une minute",
minute: "environ une minute",
minutes: "environ %d minutes",
hour: "environ une heure",
hours: "environ %d heures",
day: "environ un jour",
days: "environ %d jours",
month: "environ un mois",
months: "environ %d mois",
year: "un an",
years: "%d ans"
};

View File

@ -3,9 +3,9 @@
<div> <div>
<ul class="nav nav-tabs"> <ul class="nav nav-tabs">
<li class="active"><a href="#changeUserPanel" data-toggle="pill"><spring:message code="GENERAL"/>:</a></li> <li class="active"><a href="#changeUserPanel" data-toggle="pill"><spring:message code="GENERAL"/></a></li>
<li><a href="#changePasswordPanel" data-toggle="pill"><spring:message code="SECURITY"/>:</a></li> <li><a href="#changePasswordPanel" data-toggle="pill"><spring:message code="SECURITY"/></a></li>
<li><a href="#languagePanel" data-toggle="pill"><spring:message code="LANGUAGE"/>:</a></li> <li><a href="#languagePanel" data-toggle="pill"><spring:message code="LANGUAGE"/></a></li>
</ul> </ul>
<div class="tab-content"> <div class="tab-content">

View File

@ -1,5 +1,11 @@
<%@ page import="java.util.Locale" %>
<%@ page import="org.springframework.context.i18n.LocaleContextHolder" %>
<%@page pageEncoding="UTF-8" %> <%@page pageEncoding="UTF-8" %>
<%@include file="/jsp/init.jsp" %> <%@include file="/jsp/init.jsp" %>
<%
final Locale locale = LocaleContextHolder.getLocale();
request.setAttribute("locale", locale.getLanguage());
%>
<!DOCTYPE HTML> <!DOCTYPE HTML>
@ -19,6 +25,8 @@
<link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.min.css"/> <link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.min.css"/>
<link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap-responsive.min.css"/> <link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap-responsive.min.css"/>
<script type="text/javascript" language="javascript" src="js/jquery.timeago.js"></script> <script type="text/javascript" language="javascript" src="js/jquery.timeago.js"></script>
<script type="text/javascript" language="javascript" src="js/jquery.timeago.${locale}.js"></script>
<body> <body>
<div style="padding-top:20px"> <div style="padding-top:20px">
<tiles:insertAttribute name="body"/> <tiles:insertAttribute name="body"/>

View File

@ -6,8 +6,8 @@
<div> <div>
<iframe src='${url}' style="border: 0;width: 100%;height:100%" id="dialogContentIframe"></iframe> <iframe src='${url}' style="border: 0;width: 100%;height:100%" id="dialogContentIframe"></iframe>
<div style="float: right;margin-right: 25px"> <div style="float: right;margin-right: 25px">
<input type="button" class="btn-primary" value="Accept" id="submitBtn"/> <input type="button" class="btn-primary" value="<spring:message code="ACCEPT"/>" id="submitBtn"/>
<input type="button" class="btn-secondary" value="Cancel" id="cancelBtn"/> <input type="button" class="btn-secondary" value="<spring:message code="CANCEL"/>" id="cancelBtn"/>
</div> </div>
</div> </div>

View File

@ -9,13 +9,6 @@
<%--@elvariable id="editorTryMode" type="java.lang.Boolean"--%> <%--@elvariable id="editorTryMode" type="java.lang.Boolean"--%>
<%--@elvariable id="editorTryMode" type="java.lang.String"--%> <%--@elvariable id="editorTryMode" type="java.lang.String"--%>
<%--@elvariable id="mapXml" type="com.wisemapping.model.User"--%> <%--@elvariable id="mapXml" type="com.wisemapping.model.User"--%>
<%
User user = Utils.getUser();
if (user != null) {
request.setAttribute("principal", user);
}
%>
<html> <html>
<head> <head>
<base href="${baseURL}/"> <base href="${baseURL}/">
@ -34,7 +27,7 @@
<script type="text/javascript"> <script type="text/javascript">
$(document).addEvent('loadcomplete', function(resource) { $(document).addEvent('loadcomplete', function (resource) {
var mapId = '${mindmap.id}'; var mapId = '${mindmap.id}';
var mapXml = '${mindmap.xmlAsJsLiteral}'; var mapXml = '${mindmap.xmlAsJsLiteral}';
@ -70,13 +63,13 @@
<div id="headerInfo"> <div id="headerInfo">
<div id="headerActions"> <div id="headerActions">
<spring:message code="WELCOME"/>, ${principal.firstname}|<span><a <spring:message code="WELCOME"/>, ${principal.firstname} | <span><a href="c/maps/"><spring:message
href="c/maps/"><spring:message code="MY_WISEMAPS"/></a></span> | code="MY_WISEMAPS"/></a></span> |
<%--<span><a id="settings" href="c/settings"--%> <%--<span><a id="settings" href="c/settings"--%>
<%--title="<spring:message code="ACCOUNT_DETAIL"/>"><spring:message code="ACCOUNT"/></a></span> |--%> <%--title="<spring:message code="ACCOUNT_DETAIL"/>"><spring:message code="ACCOUNT"/></a></span> |--%>
<span><a href="c/logout" title="<spring:message code="LOGOUT"/>"> <span><a href="c/logout" title="<spring:message code="LOGOUT"/>">
<spring:message code="LOGOUT"/> <spring:message code="LOGOUT"/>
</a></span> </a></span>
</div> </div>
<a href="c/maps/"> <a href="c/maps/">
<div id="headerLogo"></div> <div id="headerLogo"></div>

View File

@ -16,8 +16,8 @@
<div id="historyContainer"> <div id="historyContainer">
<table class="table table-condensed" id="historyTable"> <table class="table table-condensed" id="historyTable">
<colgroup> <colgroup>
<col width="50%"/> <col width="40%"/>
<col width="30%"/> <col width="40%"/>
<col width="10%"/> <col width="10%"/>
<col width="10%"/> <col width="10%"/>
</colgroup> </colgroup>
@ -67,4 +67,7 @@
console.l(textStatus); console.l(textStatus);
} }
}); });
var submitDialogForm = function () {
}
</script> </script>

View File

@ -26,6 +26,7 @@
<!-- Update timer plugging --> <!-- Update timer plugging -->
<script type="text/javascript" language="javascript" src="js/jquery.timeago.js"></script> <script type="text/javascript" language="javascript" src="js/jquery.timeago.js"></script>
<script type="text/javascript" language="javascript" src="js/jquery.timeago.${locale}.js"></script>
<script type="text/javascript" language="javascript"> <script type="text/javascript" language="javascript">
@ -78,8 +79,11 @@
], ],
bAutoWidth:false, bAutoWidth:false,
oLanguage:{ oLanguage:{
"sLengthMenu":"<spring:message code="SHOW_REGISTERS"/>",
"sSearch":"", "sSearch":"",
"sInfo":"_START_-_END_ of _TOTAL_", "sZeroRecords": "<spring:message code="NO_MATCHING_FOUND"/>",
"sLoadingRecords":"<spring:message code="LOADING"/>",
"sInfo":"<spring:message code="TABLE_ROWS"/>",
"sEmptyTable":"<spring:message code="NO_SEARCH_RESULT"/>" "sEmptyTable":"<spring:message code="NO_SEARCH_RESULT"/>"
}, },
bStateSave:true bStateSave:true