Commit ba50a4dda4267fa0297031f51b4e0e46cb252ae2
1 parent
081ccf9e
Aggiunta pagina su home servizio
git-svn-id: http://svn.softecspa.it/desktopmate/DesktopMate%202.0/FileProxyServer/trunk@13314 edf0334f-4afc-450a-8f92-fe1409970e7d
Showing
5 changed files
with
69 additions
and
27 deletions
Show diff stats
WebContent/form/upload.jsp
| ... | ... | @@ -12,6 +12,26 @@ |
| 12 | 12 | <meta http-equiv="expires" content="-1"> |
| 13 | 13 | <meta http-equiv="pragma" content="no-cache"> |
| 14 | 14 | <meta http-equiv="cache-control" content="no-cache"> |
| 15 | + <style> | |
| 16 | + HTML,BODY { | |
| 17 | + margin-top: 5px; | |
| 18 | + margin-left: 5px; | |
| 19 | + margin-right: 5px; | |
| 20 | + margin-bottom: 5px; | |
| 21 | + /* http://www.google.com/fonts */ | |
| 22 | + font-family: 'Source Sans Pro', Frutiger, Arial, Helvetica, sans-serif; | |
| 23 | + /* font-family: Frutiger, Arial, Helvetica, sans-serif; */ | |
| 24 | + font-size: 14px; | |
| 25 | + font-weight: 400; | |
| 26 | + background-color: white; | |
| 27 | + color: black; | |
| 28 | + height: 100% | |
| 29 | + } | |
| 30 | + | |
| 31 | + .tabella {border:solid 1px #DDDDEE; color:#2b2b2b; } | |
| 32 | + .cella {padding:5px;color:#2b2b2b; background-color:#DDDDEE; font-face:verdana; font-size:14px;} | |
| 33 | + .cellaIntestazione {padding:5px;color:#2b2b2b; background-color:#DDDDEE; font-face:verdana; font-size:14px; font-weight:bold;} | |
| 34 | + </style> | |
| 15 | 35 | <script> |
| 16 | 36 | function sendData() { |
| 17 | 37 | var xmlhttp; |
| ... | ... | @@ -44,26 +64,7 @@ |
| 44 | 64 | document.dati.FIELD_RESPONSE.value=risposta; |
| 45 | 65 | } |
| 46 | 66 | </script> |
| 47 | - <style> | |
| 48 | - HTML,BODY { | |
| 49 | - margin-top: 5px; | |
| 50 | - margin-left: 5px; | |
| 51 | - margin-right: 5px; | |
| 52 | - margin-bottom: 5px; | |
| 53 | - /* http://www.google.com/fonts */ | |
| 54 | - font-family: 'Source Sans Pro', Frutiger, Arial, Helvetica, sans-serif; | |
| 55 | - /* font-family: Frutiger, Arial, Helvetica, sans-serif; */ | |
| 56 | - font-size: 14px; | |
| 57 | - font-weight: 400; | |
| 58 | - background-color: white; | |
| 59 | - color: black; | |
| 60 | - height: 100% | |
| 61 | - } | |
| 62 | - | |
| 63 | - .tabella {border:solid 1px #DDDDEE; color:#2b2b2b; } | |
| 64 | - .cella {padding:5px;color:#2b2b2b; background-color:#DDDDEE; font-face:verdana; font-size:14px;} | |
| 65 | - .cellaIntestazione {padding:5px;color:#2b2b2b; background-color:#DDDDEE; font-face:verdana; font-size:14px; font-weight:bold;} | |
| 66 | - </style> | |
| 67 | + | |
| 67 | 68 | </head> |
| 68 | 69 | <body> |
| 69 | 70 | <form name="dati"> | ... | ... |
| 1 | +<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%> | |
| 2 | +<%@ page import="it.softecspa.portal.Parameters"%> | |
| 3 | +<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> | |
| 4 | + | |
| 5 | +<html> | |
| 6 | +<% | |
| 7 | + Parameters parameters = Parameters.getInstance(); | |
| 8 | + String title = parameters.getChannelInfo().getApplicationTitle(); | |
| 9 | +%> | |
| 10 | +<head> | |
| 11 | + <title>Test page</title> | |
| 12 | + <meta http-equiv="expires" content="-1"> | |
| 13 | + <meta http-equiv="pragma" content="no-cache"> | |
| 14 | + <meta http-equiv="cache-control" content="no-cache"> | |
| 15 | + <style> | |
| 16 | + HTML,BODY { | |
| 17 | + margin-top: 5px; | |
| 18 | + margin-left: 5px; | |
| 19 | + margin-right: 5px; | |
| 20 | + margin-bottom: 5px; | |
| 21 | + /* http://www.google.com/fonts */ | |
| 22 | + font-family: 'Source Sans Pro', Frutiger, Arial, Helvetica, sans-serif; | |
| 23 | + /* font-family: Frutiger, Arial, Helvetica, sans-serif; */ | |
| 24 | + font-size: 14px; | |
| 25 | + font-weight: 400; | |
| 26 | + background-color: white; | |
| 27 | + color: black; | |
| 28 | + height: 100% | |
| 29 | + } | |
| 30 | + | |
| 31 | + .tabella {border:solid 1px #DDDDEE; color:#2b2b2b; } | |
| 32 | + .cella {padding:5px;color:#2b2b2b; background-color:#DDDDEE; font-face:verdana; font-size:14px;} | |
| 33 | + .cellaIntestazione {padding:5px;color:#2b2b2b; background-color:#DDDDEE; font-face:verdana; font-size:14px; font-weight:bold;} | |
| 34 | + </style> | |
| 35 | +</head> | |
| 36 | +<body> | |
| 37 | +<div id="main"> | |
| 38 | +<a href="proxy-services/statement">Click here</a> to check if system is working! | |
| 39 | +</div> | |
| 40 | +</body> | |
| 41 | +</html> | |
| 0 | 42 | \ No newline at end of file | ... | ... |
conf/ADT/test-liliana/WEB-INF/web.xml
| 1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | 2 | <web-app id="WebApp_ID" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"> |
| 3 | - <display-name>FileProxy 1.0.0 (6) - ADT/test-liliana [25/06/2014 14:56]</display-name> | |
| 3 | + <display-name>FileProxy 1.0.0 (7) - ADT/test-liliana [27/06/2014 17:20]</display-name> | |
| 4 | 4 | <!-- Ultime modifiche del 23/06/2014 --> |
| 5 | 5 | |
| 6 | 6 | <!-- Configurazione per New Relic --> |
| ... | ... | @@ -9,7 +9,7 @@ |
| 9 | 9 | <param-value>FileProxyServer ADT (test)</param-value> |
| 10 | 10 | </context-param> |
| 11 | 11 | |
| 12 | - <!-- ADT/test-liliana - 25/06/2014 14:56 --> | |
| 12 | + <!-- ADT/test-liliana - 27/06/2014 17:20 --> | |
| 13 | 13 | <!-- Configurazioni obbligatorie --> |
| 14 | 14 | <context-param> |
| 15 | 15 | <param-name>ErrorPage</param-name> | ... | ... |
conf/ADT/test-liliana/version.xml
| ... | ... | @@ -5,8 +5,8 @@ |
| 5 | 5 | |
| 6 | 6 | <entry key="version.number">1.0.0</entry> |
| 7 | 7 | <entry key="version.release"></entry> |
| 8 | - <entry key="build.number">6</entry> | |
| 9 | - <entry key="build.date">25/06/2014 14:56</entry> | |
| 8 | + <entry key="build.number">7</entry> | |
| 9 | + <entry key="build.date">27/06/2014 17:20</entry> | |
| 10 | 10 | <entry key="build.installation">ADT/test-liliana</entry> |
| 11 | 11 | |
| 12 | 12 | </properties> | ... | ... |
conf/version.properties