trovacap-java-loginfo Mailing List for Ricerca dei CAP d'Italia - jTrovaCAP (Page 3)
Brought to you by:
marcoratto
You can subscribe to this list here.
| 2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(57) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|---|
|
From: Marco R. <mar...@us...> - 2008-07-02 09:55:26
|
Update of /cvsroot/trovacap-java/jTrovaCap/test/uk/co In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv17535/test/uk/co Log Message: Directory /cvsroot/trovacap-java/jTrovaCap/test/uk/co added to the repository |
|
From: Marco R. <mar...@us...> - 2008-07-02 09:51:02
|
Update of /cvsroot/trovacap-java/jTrovaCap/data/hsqldb In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv12152/data/hsqldb Modified Files: trova_cap.script Log Message: Update to release 1.2 Index: trova_cap.script =================================================================== RCS file: /cvsroot/trovacap-java/jTrovaCap/data/hsqldb/trova_cap.script,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** trova_cap.script 18 Jun 2007 09:57:29 -0000 1.1 --- trova_cap.script 2 Jul 2008 09:48:51 -0000 1.2 *************** *** 1,85077 **** CREATE SCHEMA PUBLIC AUTHORIZATION DBA ! CREATE MEMORY TABLE TAB_CAP(ID_CAP INTEGER NOT NULL PRIMARY KEY,PROV_CAP VARCHAR(50),COMU_CAP VARCHAR(50),COM2_CAP VARCHAR(50),FRAZ_CAP VARCHAR(50),FRA2_CAP VARCHAR(50),TOPO_CAP VARCHAR(50),TOP2_CAP VARCHAR(50),DUGT_CAP VARCHAR(50),NCIV_CAP VARCHAR(50),CAPI_CAP VARCHAR(50)) CREATE USER SA PASSWORD "" GRANT DBA TO SA SET WRITE_DELAY 10 SET SCHEMA PUBLIC ! INSERT INTO TAB_CAP VALUES(1,'AN','ANCONA','','','','ACHILLE BARILATTI','','VIA','','60127') ! INSERT INTO TAB_CAP VALUES(2,'AN','ANCONA','','','','AD ALTO','','VIA','','60122') ! INSERT INTO TAB_CAP VALUES(3,'AN','ANCONA','','','','AGOSTINO PERUZZI','','VIA','','60128') ! INSERT INTO TAB_CAP VALUES(4,'AN','ANCONA','','','','AGRICOLTURA','','VIA DELL''','','60127') [...170125 lines suppressed...] ! INSERT INTO CAP VALUES(85052,'VV','SORIANO CALABRO','','','','','','','','89831') ! INSERT INTO CAP VALUES(85053,'VV','SPADOLA','','','','','','','','89822') ! INSERT INTO CAP VALUES(85054,'VV','SPILINGA','','','','','','','','89864') ! INSERT INTO CAP VALUES(85055,'VV','SPILINGA','','PANAIA','','','','','','89864') ! INSERT INTO CAP VALUES(85056,'VV','STEFANACONI','','','','','','','','89843') ! INSERT INTO CAP VALUES(85057,'VV','TROPEA','','','','','','','','89861') ! INSERT INTO CAP VALUES(85058,'VV','VALLELONGA','','','','','','','','89821') ! INSERT INTO CAP VALUES(85059,'VV','VAZZANO','','','','','','','','89834') ! INSERT INTO CAP VALUES(85060,'VV','VIBO VALENTIA','','','','','','','','89900') ! INSERT INTO CAP VALUES(85061,'VV','VIBO VALENTIA','','LONGOBARDI','','','','','','89900') ! INSERT INTO CAP VALUES(85062,'VV','VIBO VALENTIA','','PISCOPIO','','','','','','89900') ! INSERT INTO CAP VALUES(85063,'VV','VIBO VALENTIA','','PORTO SALVO','','','','','','89900') ! INSERT INTO CAP VALUES(85064,'VV','VIBO VALENTIA','','TRIPARNI','','','','','','89900') ! INSERT INTO CAP VALUES(85065,'VV','VIBO VALENTIA','','VENA','VENA SUPERIORE','','','','','89900') ! INSERT INTO CAP VALUES(85066,'VV','VIBO VALENTIA','','VIBO MARINA','VIBO VALENTIA MARINA','','','','','89900') ! INSERT INTO CAP VALUES(85067,'VV','ZACCANOPOLI','','','','','','','','89867') ! INSERT INTO CAP VALUES(85068,'VV','ZAMBRONE','','','','','','','','89868') ! INSERT INTO CAP VALUES(85069,'VV','ZAMBRONE','','DAFFINA''','','','','','','89868') ! INSERT INTO CAP VALUES(85070,'VV','ZAMBRONE','','SAN GIOVANNI DI ZAMBRONE','','','','','','89868') ! INSERT INTO CAP VALUES(85071,'VV','ZUNGRI','','','','','','','','89867') |
|
From: Marco R. <mar...@us...> - 2008-07-02 09:41:15
|
Update of /cvsroot/trovacap-java/jTrovaCap/web/js In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv11588/web/js Added Files: javaws.js Log Message: Update to release 1.2 --- NEW FILE: javaws.js --- var detectableWithVB = false; var pluginFound = false; function goURL(daURL) { window.location = daURL; return; } function redirectCheck(pluginFound, redirectURL, redirectIfFound) { if( redirectURL && ((pluginFound && redirectIfFound) || (!pluginFound && !redirectIfFound)) ) { goURL(redirectURL); return pluginFound; } else { return pluginFound; } } function canDetectPlugins() { if( detectableWithVB || (navigator.plugins && navigator.plugins.length > 0) ) { return true; } else { return false; } } function detectJavaWebStartWithMimeTypes() { if (navigator.mimeTypes && navigator.mimeTypes.length) { if (navigator.mimeTypes['application/x-java-jnlp-file']) { return true; } } return false; } function detectJavaWebStart(redirectURL, redirectIfFound) { pluginFound = detectJavaWebStartWithMimeTypes(); if(!pluginFound && detectableWithVB) { pluginFound = detectActiveXControl('JavaWebStart.isInstalled'); } return redirectCheck(pluginFound, redirectURL, redirectIfFound); } function detectJava(redirectURL, redirectIfFound) { pluginFound = detectPlugin('Java','Plug-in'); if(!pluginFound && detectableWithVB) { pluginFound = detectActiveXControl('JavaPlugin'); } return redirectCheck(pluginFound, redirectURL, redirectIfFound); } function detectPlugin() { var daPlugins = detectPlugin.arguments; var pluginFound = false; if (navigator.plugins && navigator.plugins.length > 0) { var pluginsArrayLength = navigator.plugins.length; for (pluginsArrayCounter=0; pluginsArrayCounter < pluginsArrayLength; pluginsArrayCounter++ ) { var numFound = 0; for(namesCounter=0; namesCounter < daPlugins.length; namesCounter++) { if( (navigator.plugins[pluginsArrayCounter].name.indexOf(daPlugins[namesCounter]) >= 0) || (navigator.plugins[pluginsArrayCounter].description.indexOf(daPlugins[namesCounter]) >= 0) ) { numFound++; } } if(numFound == daPlugins.length) { pluginFound = true; break; } } } return pluginFound; } if ((navigator.userAgent.indexOf('MSIE') != -1) && (navigator.userAgent.indexOf('Win') != -1)) { document.writeln('<script language="VBscript">'); document.writeln('\'do a one-time test for a version of VBScript that can handle this code'); document.writeln('detectableWithVB = False'); document.writeln('If ScriptEngineMajorVersion >= 2 then'); document.writeln(' detectableWithVB = True'); document.writeln('End If'); document.writeln('\'this next function will detect most plugins'); document.writeln('Function detectActiveXControl(activeXControlName)'); document.writeln(' on error resume next'); document.writeln(' detectActiveXControl = False'); document.writeln(' If detectableWithVB Then'); document.writeln(' detectActiveXControl = IsObject(CreateObject(activeXControlName))'); document.writeln(' End If'); document.writeln('End Function'); document.writeln('</scr' + 'ipt>'); } function launchJWS() { if (canDetectPlugins()) { if (detectJavaWebStart()) { location='http://trovacap-java.sourceforge.net/javaws/jTrovaCap.jnlp'; return; } else { error(); } } else { error(); } } function error() { alert("Java Web Start non disponibile!"); return; } |
|
From: Marco R. <mar...@us...> - 2008-07-02 09:40:53
|
Update of /cvsroot/trovacap-java/jTrovaCap/web/js In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv11331/web/js Log Message: Directory /cvsroot/trovacap-java/jTrovaCap/web/js added to the repository |
|
From: Marco R. <mar...@us...> - 2008-07-02 09:40:44
|
Update of /cvsroot/trovacap-java/jTrovaCap/web/images In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv11318/web/images Added Files: get_java_red_button.gif macosx.gif java.gif win.gif unix.gif linux.gif Log Message: Update to release 1.2 --- NEW FILE: linux.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: java.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: win.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: unix.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: get_java_red_button.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: macosx.gif --- (This appears to be a binary file; contents omitted.) |
|
From: Marco R. <mar...@us...> - 2008-07-02 09:40:29
|
Update of /cvsroot/trovacap-java/jTrovaCap/web/images In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv11180/web/images Log Message: Directory /cvsroot/trovacap-java/jTrovaCap/web/images added to the repository |
|
From: Marco R. <mar...@us...> - 2008-07-02 09:40:21
|
Update of /cvsroot/trovacap-java/jTrovaCap/web/css In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv11159/web/css Modified Files: styles.css Log Message: Update to release 1.2 Index: styles.css =================================================================== RCS file: /cvsroot/trovacap-java/jTrovaCap/web/css/styles.css,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** styles.css 18 Jun 2007 09:57:34 -0000 1.1 --- styles.css 2 Jul 2008 09:40:26 -0000 1.2 *************** *** 26,30 **** } - #sidebar { position: absolute; --- 26,29 ---- *************** *** 47,50 **** --- 46,53 ---- width: 70%; } + #table_title { + position: absoute; + width: 100%; + } .emphasis { |