Subversion Repositories ALCASAR

Compare Revisions

Ignore whitespace Rev 2595 → Rev 2594

/CHANGELOG
6,7 → 6,6
NEWS
- Linux kernel 4.14.62
- Introduce "Alcasar-Reconnect-Timeout" RADIUS attribute (not yet available in ACC).
- Add original "Max-All-Session" RADIUS attribute.
 
ACC
 
/conf/freeradius-web/user_edit.attrs
7,7 → 7,7
#
Expiration <a href="help/expiration_help.html" target=lt_help onclick=window.open("help/expiration_help.html","lt_help","width=600,height=250,toolbar=no,scrollbars=no,resizable=yes") title="Expiration Help Page"><font color="blue">Date d'expiration</font></a>
Alcasar-Expire-After <a href="help/max_all_session_help.html" target=st_help onclick=window.open("help/max_all_session_help.html","st_help","width=600,height=250,toolbar=no,scrollbars=no,resizable=yes") title="Max connection Time Help Page"><font color="blue">Dur&eacute;e totale de connexion autoris&eacute;e</font></a><BR>(en secondes)
Max-All-Session <a href="help/max_all_session_help.html" target=st_help onclick=window.open("help/max_all_session_help.html","st_help","width=600,height=250,toolbar=no,scrollbars=no,resizable=yes") title="Max connection Time Help Page"><font color="blue">Dur&eacute;e totale de connexion autoris&eacute;e</font></a><BR>(en secondes)
#Max-All-Session <a href="help/max_all_session_help.html" target=st_help onclick=window.open("help/max_all_session_help.html","st_help","width=600,height=250,toolbar=no,scrollbars=no,resizable=yes") title="Max connection Time Help Page"><font color="blue">Dur&eacute;e totale de connexion autoris&eacute;e</font></a><BR>(en secondes)
Session-Timeout <a href="help/session_timeout_help.html" target=st_help onclick=window.open("help/session_timeout_help.html","st_help","width=600,height=250,toolbar=no,scrollbars=no,resizable=yes") title="Session Timeout Help Page"><font color="blue">Dur&eacute;e maximale d'une session</font></a><BR>(en secondes)
Idle-Timeout <a href="help/idle_timeout_help.html" target=it_help onclick=window.open("help/idle_timeout_help.html","it_help","width=600,height=170,toolbar=no,scrollbars=no,resizable=yes") title="Idle Timeout Help Page"><font color="blue">Idle Timeout</font></a>
Max-Daily-Session <a href="help/session_timeout_help.html" target=st_help onclick=window.open("help/session_timeout_help.html","st_help","width=600,height=250,toolbar=no,scrollbars=no,resizable=yes") title="Session Timeout Help Page"><font color="blue">Dur&eacute;e limite journali&egrave;re</font></a><BR>(en secondes)
/web/acc/manager/htdocs/user_new.php
347,9 → 347,9
$desc = $l_statusOpenRequired;
break;
case 'Alcasar-Expire-After' :
$advanced = true;
$help_link = "help/expire_after_help.html";
$desc = $l_expire_after;
$advanced = false;
$help_link = "help/max_all_session_help.html";
$desc = $l_max_all_session;
break;
default:
$advanced = true;
/web/acc/manager/htdocs/group_new.php
277,9 → 277,9
$desc = $l_statusOpenRequired;
break;
case 'Alcasar-Expire-After' :
$advanced = true;
$help_link = "help/expire_after_help.html";
$desc = $l_expire_after;
$advanced = false;
$help_link = "help/max_all_session_help.html";
$desc = $l_max_all_session;
break;
default:
$advanced = true;
/web/acc/manager/htdocs/help/expire_after_help.html
File deleted
/web/acc/manager/htdocs/help/max_all_session_help.html
13,9 → 13,9
</TABLE>
<TABLE width="100%" border=1 cellspacing=0 cellpadding=1>
<tr><td valign="middle" align="center">
Cet attribut définit la période de temps autorisé<br>(non renseigné = pas de limite)
Cet attribut définit la période de temps autorisé après la première connexion<br>(non renseigné = pas de limite)
<hr>
This attribute defines the authorized period<br>(empty = no limit)
This attribute defines the authorized period after the first connection<br>(empty = no limit)
</td></tr>
</table>
<br>
/web/acc/manager/htdocs/user_edit.php
529,9 → 529,9
$desc = $l_statusOpenRequired;
break;
case 'Alcasar-Expire-After' :
$advanced = true;
$help_link = "help/expire_after_help.html";
$desc = $l_expire_after;
$advanced = false;
$help_link = "help/max_all_session_help.html";
$desc = $l_max_all_session;
break;
default:
$advanced = true;
/web/acc/manager/lib/langues.php
82,8 → 82,7
$l_mobile = "Numéro de téléphone portable";
$l_lang_ticket = "Langue du ticket";
$l_simultaneous_use = "Nombre de sessions simultanée";
$l_max_all_session = "Durée de connexion maximale";
$l_expire_after = "Période autorisée après la première connexion<br>(en secondes)";
$l_max_all_session = "Période autorisée après la première connexion<br>(en secondes)";
$l_expiration = "Date d'expiration";
$l_session_timeout = "Durée maximale d'une session<br>(en secondes)";
$l_daily_timeout = "Durée de connexion maximale journalière<br>(en secondes)";
211,8 → 210,7
$l_mobile = "Mobile phone number";
$l_lang_ticket = "Voucher language";
$l_simultaneous_use = "Number of concurent login";
$l_max_all_session = "Maximum time of connection";
$l_expire_after = "Authorized period after the first connection<br>(in seconds)";
$l_max_all_session = "Authorized period after the first connection<br>(in seconds)";
$l_expiration = "Expiration date";
$l_session_timeout = "Maximum time for a session<br>(in seconds)";
$l_daily_timeout = "Maximum time of connection per day<br>(in seconds)";