7eae759590
screen. These parameters are move to include/config_default.inc.php. - new : ability to add a single picture to caddie from picture.php - new : contextual help, only a few pages are available. - new : ability to delete users from admin/user_list - modification : reorganization of configuration file - new : configuration parameter use_exif_mapping - improvement : MOD hidemail added to standard git-svn-id: http://piwigo.org/svn/trunk@858 68402e56-0260-453c-a942-63ccdbb3a9ee
42 lines
817 B
JavaScript
42 lines
817 B
JavaScript
function SelectAll( formulaire )
|
|
{
|
|
len = formulaire.elements.length;
|
|
var i=0;
|
|
for( i = 0; i < len; i++)
|
|
{
|
|
if ( formulaire.elements[i].type=='checkbox'
|
|
&& formulaire.elements[i].name != 'copie')
|
|
{
|
|
formulaire.elements[i].checked = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
function Inverser( formulaire )
|
|
{
|
|
len = formulaire.elements.length;
|
|
var i=0;
|
|
for( i=0; i<len; i++)
|
|
{
|
|
if ( formulaire.elements[i].type=='checkbox'
|
|
&& formulaire.elements[i].name != 'copie')
|
|
{
|
|
formulaire.elements[i].checked = !formulaire.elements[i].checked;
|
|
}
|
|
}
|
|
}
|
|
|
|
function phpWGOpenWindow(theURL,winName,features)
|
|
{
|
|
window.open(theURL,winName,features);
|
|
}
|
|
|
|
function popuphelp(url)
|
|
{
|
|
window.open(
|
|
url,
|
|
'dc_popup',
|
|
'alwaysRaised=yes,dependent=yes,toolbar=no,height=420,width=500,menubar=no,resizable=yes,scrollbars=yes,status=no'
|
|
);
|
|
}
|
|
|