[Geoserver-devel] Geoserver Admin webapp

Hi all,

Some proposed corrections of the admin application, typo and translation fixes
of ApplicationRessources_fr.properties (thanks to Pierrick Brihaye).

layouts/mainLayout.jsp :
- could the label.credits.url href open a new page instead of replacing the
current admin page ? (something like targe="_blank" at line 73) ;
- the "You" stuff is hard coded therefore not translatable. The "You" string
is used when clicking on the hyperlink and displayed again (property
contactPerson of bean Geoserver -- see ContactInformation.jsp, line 17)

Welcome.jsp :
- the WFS/WMS title/abstract bean property are not translated : they are not
part of the ApplicationResources.properties entries.

Login.jsp:
- the button label for submit/reset do not use the
ApplicationResources.properties entry (label.submit, label.reset) at line 22
:
<html:submit/><html:reset/> should be :
<html:submit><bean:message key="label.sumit"/></html:submit>
<html:reset><bean:message key="label.reset"/></html:reset>

wfs/WFSConfigDescription.jsp :
the keywords textarea field displays the keywords without comma separator at
line 60. I guess this output is used each time keywords list is displayed (in
the WMS file they are newline separated).

data/namespaces/Select.jsp : line 10, missing > after </td

data/namespaces/New.jsp: line 12, missing > after </td

(attachments)

ApplicationResources_fr.properties (23.8 KB)

Richard didier wrote:

Hi all,

Some proposed corrections of the admin application, typo and translation fixes 
of ApplicationRessources_fr.properties (thanks to Pierrick Brihaye).

layouts/mainLayout.jsp :
- could the label.credits.url href open a new page instead of replacing the 
current admin page ? (something like targe="_blank" at line 73) ;
- the "You" stuff is hard coded therefore not translatable. The "You" string 
is used when clicking on the hyperlink and displayed again (property 
contactPerson of bean Geoserver -- see ContactInformation.jsp, line 17)
  

Yup that can all be done … Jira task.

Welcome.jsp :
- the WFS/WMS title/abstract bean property are not translated : they are not 
part of the ApplicationResources.properties entries.

  

These are populated from the config files … system dependant.

Login.jsp:
- the button label for submit/reset do not use the 
ApplicationResources.properties entry (label.submit, label.reset) at line 22 
:
<html:submit/><html:reset/> should be :
<html:submit><bean:message key="label.sumit"/></html:submit>
<html:reset><bean:message key="label.reset"/></html:reset>
  

Yup that can all be done … Jira task.

wfs/WFSConfigDescription.jsp :
the keywords textarea field displays the keywords without comma separator at 
line 60. I guess this output is used each time keywords list is displayed (in 
the WMS file they are newline separated).

data/namespaces/Select.jsp : line 10, missing > after </td

data/namespaces/New.jsp: line 12, missing > after </td
  

Has to do with inconsistencies … should be investigated (thanks). We are storing them in a list, parsing the keywords at both sides.

David