Commit graph

937 commits

Author SHA1 Message Date
Benjamin Renard bc572c3f02 Update fr_FR.UTF8 translation 2015-08-21 13:12:56 +02:00
Benjamin Renard 0f2a51a69d generate_lang_file.php : fix lang files inclusion 2015-08-21 13:12:35 +02:00
Benjamin Renard bba6466eed generate_lang_file.php : fix back-slash character handling in parse_addon_file() function 2015-08-21 13:04:28 +02:00
Benjamin Renard 6f6c6ecfec generate_lang_file.php : only ask translation for strings translated with __() function in LSaddons 2015-08-21 13:03:37 +02:00
Benjamin Renard b4a6243625 generate_lang_file.php : add --lang parameter to manage existing lang files loading 2015-08-21 13:02:20 +02:00
Benjamin Renard 15298feec8 generate_lang_file.php : make script callable from anywhere 2015-08-21 13:01:37 +02:00
Benjamin Renard 3239559128 LSsession : permit to pass lang and encoding to initialize() and setLocale() methods 2015-08-21 12:58:50 +02:00
Benjamin Renard 742a5e74da generate_lang_file.php : manage addons files 2015-08-21 12:10:44 +02:00
Benjamin Renard 397048793e generate_lang_file.php : do not ask translation of already gettext translated strings 2015-08-21 12:10:23 +02:00
Benjamin Renard 24aa3412a7 LSsearch : add cssStyle extraDisplayedColumns's parameter 2015-08-12 14:26:50 +02:00
Benjamin Renard 3f350d331c LSsearch : improve and add doc for formaterLSformat extraDisplayedColumns's parameter 2015-08-12 14:26:21 +02:00
Benjamin Renard 9a09cf491e Permit LSaddon to provide ajax callable function 2015-08-12 14:16:25 +02:00
Benjamin Renard b4105c04d6 Add new form element type for telephone number 2015-08-12 12:21:20 +02:00
Benjamin Renard f313b2e1d3 LSldapObject : Add except_current_object option on attribute validation test 2015-08-10 10:16:32 +02:00
Benjamin Renard 5ec0f7d210 generate_lang_file.php : initialize LSsession before parsing for messages 2015-08-10 10:15:33 +02:00
Benjamin Renard 12f71e0303 Doc : Fix compatibility with old version of Docbook DTD 2015-08-04 16:35:26 +02:00
Benjamin Renard af218ee71f Fix CSS vertical alignment of #status 2015-08-03 17:55:23 +02:00
Benjamin Renard 1b00ccd36d Release 1.2-1 Debian package 2015-07-30 18:20:32 +02:00
Benjamin Renard 0efde556ad Fix last commit to be compliant also with php 5.4 2015-07-30 18:19:28 +02:00
Benjamin Renard d7ca2eea75 Display import button only for LSobject type with configured ioFormat 2015-07-30 18:13:07 +02:00
Benjamin Renard 939863465f Doc : add some important details on import feature 2015-07-30 18:09:14 +02:00
Benjamin Renard 0625e38f80 LSimport : also display error on other attributes 2015-07-30 18:08:45 +02:00
Benjamin Renard 8dcccee200 LSformElement_mailQuota : little fix to permit import 2015-07-30 17:57:09 +02:00
Benjamin Renard 70b767655e Update french translation 2015-07-30 16:46:29 +02:00
Benjamin Renard ddf474d6fe generate_lang_file.php : manage messages string in templates files 2015-07-30 16:40:26 +02:00
Benjamin Renard 0055ea1d7a Add import feature 2015-07-30 16:40:16 +02:00
Benjamin Renard 303702a4ee Add LSformRule_callable 2015-07-30 11:40:07 +02:00
Benjamin Renard 40b8be065b LSsession : Catch initialization exceptions 2015-07-25 18:24:03 +02:00
Benjamin Renard 772cd8b0da LSformElement :: select_list / select_box : permit to put possible values in labelled group 2015-07-25 18:23:06 +02:00
Benjamin Renard a2218dc59a Update Smarty path to default smarty3 path of Debian package 2015-04-28 12:00:20 +02:00
Benjamin Renard 6220c3e6d6 Fix reference allocation in variable 2015-04-14 15:10:40 +02:00
Benjamin Renard dfafd88159 LSformElement :: valueWithUnit : improve floatint number display and add parameter for formatting control 2015-04-07 20:34:18 +02:00
Benjamin Renard 91dbcf4a6e LSldapObject : Fix method to get rdn value 2015-02-13 13:55:28 +01:00
Benjamin Renard e494784859 Release 1.1-6 Debian package 2015-02-09 11:28:27 +01:00
Benjamin Dauvergne 9add9c3321 Allow a sequence of filters in LSobjects profile configurations
It's now possible for example to define a profile on an LSobject whose
attribute would contain the DN of a group the user is member of instead
of directly the dn of the user. A possible configuation using this new feature:

  'LSprofile' => array(
    'admin' => array(
      'LSobjects' => array(
        'LSsupannGroupAdminByGroup' => array(
          'filters' => array(
            array(
              'basedn' => $basedn,
              'attr' => 'member',
              'attr_value' => '%{dn}',
              'LSobject' => 'LSsupannGroup',
            ),
            array(
              'basedn' => $basedn,
              'attr' => 'supannGroupeAdminDN',
              'attr_value' => '%{dn}',
              'LSobject' => 'LSsupannGroup',
            )
          ),
        ),
      ),
    ),
  )

Signed-off-by: Benjamin Renard <brenard@easter-eggs.com>
2015-02-09 11:16:20 +01:00
Benjamin Dauvergne 10019fc9fe Convert all supann addon defines to globals
Signed-off-by: Benjamin Renard <brenard@easter-eggs.com>
2015-02-09 10:55:17 +01:00
Benjamin Dauvergne 12014b5bf4 Redefine globals on per LDAP server basic
Signed-off-by: Benjamin Renard <brenard@easter-eggs.com>
2015-02-09 10:39:39 +01:00
Benjamin Renard ba611b784a Update French translation 2015-02-05 10:33:37 +01:00
Benjamin Renard 27b56ef505 LSattr_html :: password : Add possibility to generate password using pwgen command 2015-02-05 10:33:14 +01:00
Benjamin Renard 8313191f54 LSformElement :: select_object : Add ordered feature 2015-01-21 16:35:23 +01:00
Benjamin Renard 3a6bd1ea06 Add global parameter defaultCSSfiles 2015-01-08 15:15:40 +01:00
Benjamin Renard bee41b3d9d LSattr_ldap_boolean : Add default TRUE/FALSE values 2015-01-08 15:00:56 +01:00
Benjamin Renard c801b09ada view.tpl : use double quotes instead of simple in HTML 2015-01-06 18:00:41 +01:00
Benjamin Renard 3d5d471d4b Release 1.1-5 Debian package 2015-01-06 17:57:41 +01:00
Benjamin Dauvergne 5c8844563b Maintainer is not part of binary package metadata
Signed-off-by: Benjamin Renard <brenard@easter-eggs.com>
2014-11-28 16:48:05 +01:00
Benjamin Renard 906ca99488 Fix 'Mrs' translation in fr_FR.UTF8 lang file 2014-11-28 16:24:45 +01:00
Benjamin Renard 072acf21f7 LSldapObject getObjectFilter() : return filter Net_LDAP2_Filter object instead of string and fix resulting filter usage in validateAttrData() method 2014-11-28 16:19:01 +01:00
Benjamin Renard 1518888efa LSldap : combineFilters() : fix parameter support when array contain only one filter 2014-11-28 16:16:30 +01:00
Benjamin Dauvergne 9aa48000e5 SUPANN: ajout du support de l'attribute supannActivite
Signed-off-by: Benjamin Renard <brenard@easter-eggs.com>
2014-11-28 15:20:36 +01:00
Benjamin Renard 065484fb4c generate_lang_file.php : Add 'no_value_label' attribute configuration field 2014-11-28 12:31:25 +01:00