ldapsaisie/doc
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
..
conf Allow a sequence of filters in LSobjects profile configurations 2015-02-09 11:16:20 +01:00
contrib Doc : Added Contribute chapter with LSaddon write method. 2011-12-23 15:47:47 +01:00
exports Doc : add export EPUB method 2014-08-13 02:19:51 +02:00
images - Documentation : commit initial. 2009-03-17 19:21:10 +00:00
install Doc : add export EPUB method 2014-08-13 02:19:51 +02:00
intro Trad EN/Correction d'erreur et continuing 2011-05-17 17:38:54 +02:00
styles Added initial Debian packaging files 2013-03-31 05:25:54 +02:00
LdapSaisie.docbook Doc / LSauth : Updated relative to last commit 2010-11-25 11:21:43 +01:00
LS.entities.xml LSsearch : add customAction feature 2014-10-08 17:24:30 +02:00
Makefile Doc / Makefile : Added html entry 2010-04-12 12:40:14 +02:00
README Doc / README : add infos about epub export generation dependencies 2014-11-18 14:30:19 +01:00

Makefile :
##########

The root Makefile permit currently 3 actions :
 * Validation : For the xml validation of docbook files
  make validate
  
 * Export : For build the documentation exports in all available formats
  make export
  
 * Clean : Delete non-sources files
  make clean

Dependencies :
##############

For validation :
================
 * xmllint command (in debian package libxml2-utils)
 
For exports :
=============
 * in HTML :
 ~~~~~~~~~~~
   + xsltproc command (in debian package xsltproc)
   + XSL stylesheets by N.Walsh (html/docbook.xsl, htmlhelp/htmlhelp.xsl
     and xhtml/chunk.xsl) (in debian package docbook-xsl)
     
 * in PDF :
 ~~~~~~~~~~
   + jw command (in debian package docbook-utils)

 * in EPUB :
 ~~~~~~~~~~~
   + dbtoepub command ((in debian package dbtoepub)