Hi !
I've had some new settings to my site. For that, I've edit the file include/site_settings.inc.
Now, I want to group some fields together, but it seems that all settings fields are displayed automaticaly in the alphabeticaly order.
How can I group my fields within particulars groups with a special name for each groups ? Is it really possible or not ?
I've defined differents containers but nothing has change...
You can look at the join piece.
Please help me.
Ghislain CUSSONNEAU
CRIL Technology
Technoparc de l'Aubini�re
44000 Nantes
02 51 89 64 50
Acc�dez au courrier �lectronique de La Poste : www.laposte.net ;
3615 LAPOSTENET (0,34 /mn) ; t�l : 08 92 68 13 50 (0,34/mn)
<!-- PARAMETRAGE GENERAL DU SITE --> <bean:define id="pageWidth" value="771"/> <bean:define id="titlePrefix" value=""/> <bean:define id="defaultMetaDescription" value=""/> <bean:define id="defaultMetaKeyword" value=""/> <bean:define id="defaultColorSet" value="#006699"/> <bean:define id="defaultBackgroundColor" value="#000000"/> <bean:define id="leftMenuMaxDepth" value="2"/> <bean:define id="displayDropMenu" value="true"/> <bean:define id="footerText" value="© 2002-2004, Jahia Ltd - All rights reserved"/> <bean:define id="isSiteSettingAvaliable" value="false" scope="request"/>
<!-- PARAMETRAGE DU BANDEAU --> <!-- Param�tres globaux --> <bean:define id="headerBackgroundRepeat" value="repeat"/> <bean:define id="headerBackgroundHorizontalPosition" value="left"/> <bean:define id="headerBackgroundVerticalPosition" value="top"/> <bean:define id="headerBackgroundAttachment" value="fixed"/> <bean:define id="headerBackgroundColor" value="#000000"/> <bean:define id="headerWidth" value="771"/> <bean:define id="headerHeight" value="80"/> <bean:define id="headerZone1Height" value="50"/> <bean:define id="headerZone1Width" value="25%"/> <bean:define id="headerZone2Height" value="50"/> <bean:define id="headerZone2Width" value="25%"/> <bean:define id="headerZone3Height" value="50"/> <bean:define id="headerZone3Width" value="25%"/> <bean:define id="headerZone4Height" value="50"/> <bean:define id="headerZone4Width" value="25%"/> <bean:define id="headerZone5Height" value="30"/> <bean:define id="headerZone5Width" value="100%"/> <!-- Param�tres du logo de La Poste --> <bean:define id="headerPosteLogoZone" value="1"/> <bean:define id="headerPosteLogoHorizontalAlign" value="left"/> <bean:define id="headerPosteLogoVerticalAlign" value="middle"/> <bean:define id="headerPosteLogoLink" value="http://www.i-poste.log.intra.laposte.fr"/> <bean:define id="headerPosteLogoLinkTarget" value="_blank"/> <!-- Param�tres du logo du site --> <bean:define id="headerSiteLogoZone" value="2"/> <bean:define id="headerSiteLogoHorizontalAlign" value="left"/> <bean:define id="headerSiteLogoVerticalAlign" value="middle"/> <bean:define id="headerSiteLogoLink" value="http://www.i-Site.log.intra.laSite.fr"/> <bean:define id="headerSiteLogoLinkTarget" value="_blank"/> <!-- Param�tres de la zone de texte --> <bean:define id="headerText" value=""/> <bean:define id="headerTextZone" value="3"/> <bean:define id="headerTextHorizontalAlign" value="left"/> <bean:define id="headerTextVerticalAlign" value="middle"/> <!-- Param�tres du formulaire de recherche --> <bean:define id="headerSearchZone" value="4"/> <bean:define id="headerSearchHorizontalAlign" value="left"/> <bean:define id="headerSearchVerticalAlign" value="middle"/> <!-- Param�tres de la barre de liens --> <bean:define id="headerQuickLinkZone" value="5"/> <bean:define id="headerQuickLinkHorizontalAlign" value="left"/> <bean:define id="headerQuickLinkVerticalAlign" value="middle"/> <bean:define id="headerQuickLinkRenderingMode" value="horizontal"/> <bean:define id="headerQuickLinkIPosteUrl" value="http://www.i-poste.log.intra.laposte.fr"/> <!-- PARAMETRAGE DU FIL D ARIANE --> <bean:define id="breadcrumbHorizontalAlign" value="left"/> <bean:define id="breadcrumbBackgroundColor" value="#000000"/> <bean:define id="breadcrumbBackgroundRepeat" value="repeat"/> <bean:define id="breadcrumbBackgroundHorizontalPosition" value="left"/> <bean:define id="breadcrumbBackgroundVerticalPosition" value="top"/> <bean:define id="breadcrumbBackgroundAttachment" value="scroll"/> <!-- Declaration des champs de saisies --> <content:declareContainerList name="siteSettings" title="Site Settings"> <% /****************************************************************** * PARAMETRAGE GENERAL DU SITE */ %> <content:declareContainer> <% /******************************************************************** * pageWidth is the site of the main table. can be in percenr (eg. 100%) * or in pixel (eg. 771) */ %> <content:declareField name="pageWidth" title="Page Width" type="SharedSmallText" value="771" titleKey="pageWidth" bundleKey="<%=resBundleID%>" /> <% /******************************************************************** * titlePrefix is the text you can display befor a page title * For exemple, if titlePrefix value is "my company site", the value * of title wille be <title>my company site - home</title> */ %> <content:declareField name="titlePrefix" title="Title Prefix" type="SmallText" titleKey="titlePrefix" bundleKey="<%=resBundleID%>" /> <% /******************************************************************** * defaultMetaDescription is the default value for a MetaDescription. * This mean that if you don't put any content in the MetaDescription * of a page, the defaultMetaDescription will be display. */ %> <content:declareField name="defaultMetaDescription" title="Default Meta Description" type="SmallText" titleKey="defaultMetaDescription" bundleKey="<%=resBundleID%>" /> <% /******************************************************************** * defaultMetaKeyword is the default value for a MetaKeyword. * This mean that if you don't put any content in the MetaKeyword * of a page, the defaultMetaKeyword will be display. */ %> <content:declareField name="defaultMetaKeyword" title="Default Meta Keyword" type="SmallText" titleKey="defaultMetaKeyword" bundleKey="<%=resBundleID%>" /> <% /******************************************************************** * defaultColorSet is the default color your website. This mean that * The home page and the main sections (as defined on main menu) will * use this color. The different colors are defined on file * colors_declaration.jsp */ %> <content:declareField name="defaultColorSet" title="Default Color Set" type="SharedSmallText" value="<%=getMultivalues(colors, (String) pageContext.findAttribute("defaultColorSet"))%>" titleKey="defaultColorSet" bundleKey="<%=resBundleID%>" /> <% /******************************************************************** * defaultBackgroundColor est la couleur par d�faut des fonds de page. * C'est-�-dire cette couleur sera utilis�e comme couleur de fond du * site. Les differentes couleurs sont d�finies dans le fichier * colors_declaration.jsp */ %> <content:declareField name="defaultBackgroundColor" title="Default Background Color" type="SharedSmallText" value="<%=getMultivalues(colors, (String) pageContext.findAttribute("defaultBackgroundColor"))%>" titleKey="defaultBackgroundColor" bundleKey="<%=resBundleID%>" /> <% /******************************************************************** * leftMenuMaxDepth is maximum number of level to expand on the * left menu. */ %> <content:declareField name="leftMenuMaxDepth" title="Left Menu Max Depth" type="Integer" value="<jahia_multivalue[1:2:3:4:5:6]>3" titleKey="leftMenuMaxDepth" bundleKey="<%=resBundleID%>" /> <% /******************************************************************** * displayDropMenu allow to display or not the drop menu of the main menu. */ %> <content:declareField name="displayDropMenu" title="Display Drop Down Menu" type="Boolean" value="true" titleKey="displayDropMenu" bundleKey="<%=resBundleID%>" /> <% /******************************************************************** * footerText is the text you will find at the htmk footer. This text * is different to all languages. */ %> <content:declareField name="footerText" title="Footer Text" type="BigText" value="© 2002-2004, Jahia Ltd - All rights reserved" titleKey="footerText" bundleKey="<%=resBundleID%>" /> <% /****************************************************************** * PARAMETRAGE DU BANDEAU ****************************************************************** * Le bandeau est s�par� en 5 zones organis� de la mani�re suivante : * ------------------------------------- * | Zone 1 | Zone 2 | Zone 3 | Zone 4 | * ------------------------------------- * | Zone 5 | * ------------------------------------- * Elles permettent de r�partir les �l�ments suivants : * - Logo La Poste (param�tre headerPosteLogo) * - Logo du site (param�tre headerSiteLogo) * - Zone de texte (champ de saisie TEXTE) * - Formulaire de recherche (contenu du fichier search.inc) * - Barre de liens (contenu du fichier quicklinks.inc) * %> <!-- Param�tres globaux --> <% /** * headerBackgroundImage : image de fond de tout le bandeau */ %> <content:declareField name="headerBackgroundImage" title="headerBackgroundImage" type="File" titleKey="headerBackgroundImage" bundleKey="<%=resBundleID%>" /> <% /** * headerBackgroundRepeat : mode de repetition de l'image de * fond du bandeau */ %> <content:declareField name="headerBackgroundRepeat" title="headerBackgroundRepeat" type="SharedSmallText" value="<jahia_multivalue[repeat:no-repeat]>repeat" titleKey="headerBackgroundRepeat" bundleKey="<%=resBundleID%>" /> <% /** * headerBackgroundHorizontalPosition : position horizontale de * l'image de fond du bandeau */ %> <content:declareField name="headerBackgroundHorizontalPosition" title="headerBackgroundHorizontalPosition" type="SharedSmallText" value="<jahia_multivalue[left:center:right]>left" titleKey="headerBackgroundHorizontalPosition" bundleKey="<%=resBundleID%>" /> <% /** * headerBackgroundVerticalPosition : position verticale de * l'image de fond du bandeau */ %> <content:declareField name="headerBackgroundVerticalPosition" title="headerBackgroundVerticalPosition" type="SharedSmallText" value="<jahia_multivalue[top:center:bottom]>top" titleKey="headerBackgroundVerticalPosition" bundleKey="<%=resBundleID%>" /> <% /** * headerBackgroundAttachment : mode d'attachement de l'image de * fond du bandeau */ %> <content:declareField name="headerBackgroundAttachment" title="headerBackgroundAttachment" type="SharedSmallText" value="<jahia_multivalue[scroll:fixed]>fixed" titleKey="headerBackgroundAttachment" bundleKey="<%=resBundleID%>" /> <% /** * headerBackgroundColor : couleur de fond du bandeau */ %> <content:declareField name="headerBackgroundColor" title="headerBackgroundColor" type="SharedSmallText" value="<%=getMultivalues(colors, (String) pageContext.findAttribute("headerBackgroundColor"))%>" titleKey="headerBackgroundColor" bundleKey="<%=resBundleID%>" /> <% /** * headerWidth : largeur globale du bandeau */ %> <content:declareField name="headerWidth" title="headerWidth" type="SharedSmallText" value="771" titleKey="headerWidth" bundleKey="<%=resBundleID%>" /> <% /** * headerHeight : hauteur globale du bandeau */ %> <content:declareField name="headerHeight" title="headerHeight" type="SharedSmallText" value="80" titleKey="headerHeight" bundleKey="<%=resBundleID%>" /> <% /** * headerZone1Height : hauteur de la zone 1 */ %> <content:declareField name="headerZone1Height" title="headerZone1Height" type="SharedSmallText" value="50" titleKey="headerZone1Height" bundleKey="<%=resBundleID%>" /> <% /** * headerZone1Width : largeur de la zone 1 */ %> <content:declareField name="headerZone1Width" title="headerZone1Width" type="SharedSmallText" value="25%" titleKey="headerZone1Width" bundleKey="<%=resBundleID%>" /> <% /** * headerZone2Height : hauteur de la zone 2 */ %> <content:declareField name="headerZone2Height" title="headerZone2Height" type="SharedSmallText" value="50" titleKey="headerZone2Height" bundleKey="<%=resBundleID%>" /> <% /** * headerZone2Width : largeur de la zone 2 */ %> <content:declareField name="headerZone2Width" title="headerZone2Width" type="SharedSmallText" value="25%" titleKey="headerZone2Width" bundleKey="<%=resBundleID%>" /> <% /** * headerZone3Height : hauteur de la zone 3 */ %> <content:declareField name="headerZone3Height" title="headerZone3Height" type="SharedSmallText" value="50" titleKey="headerZone3Height" bundleKey="<%=resBundleID%>" /> <% /** * headerZone3Width : largeur de la zone 3 */ %> <content:declareField name="headerZone3Width" title="headerZone3Width" type="SharedSmallText" value="25%" titleKey="headerZone3Width" bundleKey="<%=resBundleID%>" /> <% /** * headerZone4Height : hauteur de la zone 4 */ %> <content:declareField name="headerZone4Height" title="headerZone4Height" type="SharedSmallText" value="50" titleKey="headerZone4Height" bundleKey="<%=resBundleID%>" /> <% /** * headerZone4Width : largeur de la zone 4 */ %> <content:declareField name="headerZone4Width" title="headerZone4Width" type="SharedSmallText" value="25%" titleKey="headerZone4Width" bundleKey="<%=resBundleID%>" /> <% /** * headerZone5Height : hauteur de la zone 5 */ %> <content:declareField name="headerZone5Height" title="headerZone5Height" type="SharedSmallText" value="30" titleKey="headerZone5Height" bundleKey="<%=resBundleID%>" /> <% /** * headerZone5Width : largeur de la zone 5 */ %> <content:declareField name="headerZone5Width" title="headerZone5Width" type="SharedSmallText" value="100%" titleKey="headerZone5Width" bundleKey="<%=resBundleID%>" /> <!-- Param�tres du logo de La Poste --> <% /** * headerPosteLogo est le logo de La Poste */ %> <content:declareField name="headerPosteLogo" title="headerPosteLogo" type="File" titleKey="headerPosteLogo" bundleKey="<%=resBundleID%>" /> <% /** * headerPosteLogoZone est le numero de la zone devant contenir * le logo de La Poste */ %> <content:declareField name="headerPosteLogoZone" title="headerPosteLogoZone" type="Integer" value="<jahia_multivalue[1:2:3:4:5]>1" titleKey="headerPosteLogoZone" bundleKey="<%=resBundleID%>" /> <% /** * headerPosteLogoHorizontalAlign est l'alignement horizontal * du logo de La Poste */ %> <content:declareField name="headerPosteLogoHorizontalAlign" title="headerPosteLogoHorizontalAlign" type="SharedSmallText" value="<jahia_multivalue[left:center:right]>left" titleKey="headerPosteLogoHorizontalAlign" bundleKey="<%=resBundleID%>" /> <% /** * headerPosteLogoVerticalAlign est l'alignement vertical * du logo de La Poste */ %> <content:declareField name="headerPosteLogoVerticalAlign" title="headerPosteLogoVerticalAlign" type="SharedSmallText" value="<jahia_multivalue[top:baseline:middle:bottom]>middle" titleKey="headerPosteLogoVerticalAlign" bundleKey="<%=resBundleID%>" /> <% /** * headerPosteLogoLink est le lien accessible en cliquant sur * le logo de La Poste */ %> <content:declareField name="headerPosteLogoLink" title="headerPosteLogoLink" type="SharedSmallText" value="http://www.i-poste.log.intra.laposte.fr" titleKey="headerPosteLogoLink" bundleKey="<%=resBundleID%>" /> <% /** * headerPosteLogoLinkTarget est le nom de la fenetre cibl�e par le * lien accessible en cliquant sur le logo de La Poste */ %> <content:declareField name="headerPosteLogoLinkTarget" title="headerPosteLogoLinkTarget" type="SharedSmallText" value="<jahia_multivalue[_self:_blank]>_blank" titleKey="headerPosteLogoLinkTarget" bundleKey="<%=resBundleID%>" /> <!-- Param�tres du logo du site --> <% /** * headerSiteLogo est le logo du site */ %> <content:declareField name="headerSiteLogo" title="headerSiteLogo" type="File" titleKey="headerSiteLogo" bundleKey="<%=resBundleID%>" /> <% /** * headerSiteLogoZone est le numero de la zone devant contenir * le logo du site */ %> <content:declareField name="headerSiteLogoZone" title="headerSiteLogoZone" type="Integer" value="<jahia_multivalue[1:2:3:4:5]>1" titleKey="headerSiteLogoZone" bundleKey="<%=resBundleID%>" /> <% /** * headerSiteLogoHorizontalAlign est l'alignement horizontal * du logo du site */ %> <content:declareField name="headerSiteLogoHorizontalAlign" title="headerSiteLogoHorizontalAlign" type="SharedSmallText" value="<jahia_multivalue[left:center:right]>left" titleKey="headerSiteLogoHorizontalAlign" bundleKey="<%=resBundleID%>" /> <% /** * headerSiteLogoVerticalAlign est l'alignement vertical * du logo du site */ %> <content:declareField name="headerSiteLogoVerticalAlign" title="headerSiteLogoVerticalAlign" type="SharedSmallText" value="<jahia_multivalue[top:baseline:middle:bottom]>middle" titleKey="headerSiteLogoVerticalAlign" bundleKey="<%=resBundleID%>" /> <% /** * headerSiteLogoLink est le lien accessible en cliquant sur * le logo du site */ %> <content:declareField name="headerSiteLogoLink" title="headerSiteLogoLink" type="SharedSmallText" value="http://www.i-Site.log.intra.laSite.fr" titleKey="headerSiteLogoLink" bundleKey="<%=resBundleID%>" /> <% /** * headerSiteLogoLinkTarget est le nom de la fenetre cibl�e par le * lien accessible en cliquant sur le logo du site */ %> <content:declareField name="headerSiteLogoLinkTarget" title="headerSiteLogoLinkTarget" type="SharedSmallText" value="<jahia_multivalue[_self:_blank]>_blank" titleKey="headerSiteLogoLinkTarget" bundleKey="<%=resBundleID%>" /> <!-- Param�tres de la zone de texte --> <% /** * headerText est le contenu de la zone de texte */ %> <content:declareField name="headerText" title="headerText" type="BigText" value="" titleKey="headerText" bundleKey="<%=resBundleID%>" /> <% /** * headerQuickLinkZone est le numero de la zone devant contenir * le logo du site */ %> <content:declareField name="headerTextZone" title="headerTextZone" type="Integer" value="<jahia_multivalue[1:2:3:4:5]>1" titleKey="headerTextZone" bundleKey="<%=resBundleID%>" /> <% /** * headerTextHorizontalAlign est l'alignement horizontal * de la zone de texte */ %> <content:declareField name="headerTextHorizontalAlign" title="headerTextHorizontalAlign" type="SharedSmallText" value="<jahia_multivalue[left:center:right:justify]>left" titleKey="headerTextHorizontalAlign" bundleKey="<%=resBundleID%>" /> <% /** * headerTextVerticalAlign est l'alignement vertical * du la zone de texte */ %> <content:declareField name="headerTextVerticalAlign" title="headerTextVerticalAlign" type="SharedSmallText" value="<jahia_multivalue[top:middle:bottom]>middle" titleKey="headerTextVerticalAlign" bundleKey="<%=resBundleID%>" /> <!-- Param�tres du formulaire de recherche --> <% /** * headerSearchZone est le numero de la zone devant contenir * le formulaire de recherche */ %> <content:declareField name="headerSearchZone" title="headerSearchZone" type="Integer" value="<jahia_multivalue[1:2:3:4:5]>1" titleKey="headerSearchZone" bundleKey="<%=resBundleID%>" /> <% /** * headerSearchHorizontalAlign est l'alignement horizontal * de la zone de texte */ %> <content:declareField name="headerSearchHorizontalAlign" title="headerSearchHorizontalAlign" type="SharedSmallText" value="<jahia_multivalue[left:center:right:justify]>left" titleKey="headerSearchHorizontalAlign" bundleKey="<%=resBundleID%>" /> <% /** * headerSearchVerticalAlign est l'alignement vertical * du la zone de texte */ %> <content:declareField name="headerSearchVerticalAlign" title="headerSearchVerticalAlign" type="SharedSmallText" value="<jahia_multivalue[top:middle:bottom]>middle" titleKey="headerSearchVerticalAlign" bundleKey="<%=resBundleID%>" /> <!-- Param�tres de la barre de liens --> <% /** * headerQuickLinkZone est le numero de la zone devant contenir * le logo du site */ %> <content:declareField name="headerQuickLinkZone" title="headerQuickLinkZone" type="Integer" value="<jahia_multivalue[1:2:3:4:5]>1" titleKey="headerQuickLinkZone" bundleKey="<%=resBundleID%>" /> <% /** * headerQuickLinkHorizontalAlign est l'alignement horizontal * de la barre de liens */ %> <content:declareField name="headerQuickLinkHorizontalAlign" title="headerQuickLinkHorizontalAlign" type="SharedSmallText" value="<jahia_multivalue[left:center:right:justify]>left" titleKey="headerQuickLinkHorizontalAlign" bundleKey="<%=resBundleID%>" /> <% /** * headerQuickLinkVerticalAlign est l'alignement vertical * du logo du site */ %> <content:declareField name="headerQuickLinkVerticalAlign" title="headerQuickLinkVerticalAlign" type="SharedSmallText" value="<jahia_multivalue[top:middle:bottom]>middle" titleKey="headerQuickLinkVerticalAlign" bundleKey="<%=resBundleID%>" /> <% /** * headerQuickLinkRenderingMode est le mode de rendu de la barre de lien * les liens sont affich�s horizontalement, verticalement ou comme une * liste d�roulante. */ %> <content:declareField name="headerQuickLinkRenderingMode" title="headerQuickLinkRenderingMode" type="SharedSmallText" value="<jahia_multivalue[horizontal:vertical:dropdownbox]>horizontal" titleKey="headerQuickLinkRenderingMode" bundleKey="<%=resBundleID%>" /> <% /** * headerQuickLinkIPosteUrl est l'URL du site i-Poste accessible via cette * barre de lien */ %> <content:declareField name="headerQuickLinkIPosteUrl" title="headerQuickLinkIPosteUrl" type="SharedSmallText" value="http://www.i-poste.log.intra.laposte.fr" titleKey="headerQuickLinkIPosteUrl" bundleKey="<%=resBundleID%>" /> <% /****************************************************************** * PARAMETRAGE DU FIL D ARIANE * %> <% /** * breadcrumbHorizontalAlign est l'alignement du texte du fil d'Ariane */ %> <content:declareField name="breadcrumbHorizontalAlign" title="breadcrumbHorizontalAlign" type="SharedSmallText" value="<jahia_multivalue[left:center:right:justify]>left" titleKey="breadcrumbHorizontalAlign" bundleKey="<%=resBundleID%>" /> <% /** * breadcrumbBackgroundColor est la couleur de fond du fil d'Ariane */ %> <content:declareField name="breadcrumbBackgroundColor" title="breadcrumbBackgroundColor" type="SharedSmallText" value="<%=getMultivalues(colors, (String) pageContext.findAttribute("breadcrumbBackgroundColor"))%>" titleKey="breadcrumbBackgroundColor" bundleKey="<%=resBundleID%>" /> <% /** * breadcrumbBackgroundImage est l'image de fond du fil d'Ariane */ %> <content:declareField name="breadcrumbBackgroundImage" title="breadcrumbBackgroundImage" type="File" titleKey="breadcrumbBackgroundImage" bundleKey="<%=resBundleID%>" /> <% /** * breadcrumbBackgroundRepeat : mode de repetition de l'image * de fond du fil d'Ariane */ %> <content:declareField name="breadcrumbBackgroundRepeat" title="breadcrumbBackgroundRepeat" type="SharedSmallText" value="<jahia_multivalue[repeat:no-repeat]>repeat" titleKey="breadcrumbBackgroundRepeat" bundleKey="<%=resBundleID%>" /> <% /** * breadcrumbBackgroundHorizontalPosition : positionnement horizontal * de l'image de fond du fil d'Ariane */ %> <content:declareField name="breadcrumbBackgroundHorizontalPosition" title="breadcrumbBackgroundHorizontalPosition" type="SharedSmallText" value="<jahia_multivalue[left:center:right]>left" titleKey="breadcrumbBackgroundHorizontalPosition" bundleKey="<%=resBundleID%>" /> <% /** * breadcrumbBackgroundVerticalPosition : positionnement vertical de * l'image de fond du fil d'Ariane */ %> <content:declareField name="breadcrumbBackgroundVerticalPosition" title="breadcrumbBackgroundVerticalPosition" type="SharedSmallText" value="<jahia_multivalue[top:center:bottom]>top" titleKey="breadcrumbBackgroundVerticalPosition" bundleKey="<%=resBundleID%>" /> <% /** * breadcrumbBackgroundAttachment : mode d'attachement de l'image * de fond du fil d'Ariane */ %> <content:declareField name="breadcrumbBackgroundAttachment" title="breadcrumbBackgroundAttachment" type="SharedSmallText" value="<jahia_multivalue[scroll:fixed]>scroll" titleKey="breadcrumbBackgroundAttachment" bundleKey="<%=resBundleID%>" /> </content:declareContainer> </content:declareContainerList> <content:absoluteContainerList id="siteSettingsList" name="siteSettings" pageLevel="1"> <content:container id="siteSettings"> <!-- PARAMETRAGE GENERAL DU SITE --> <content:textField valueId="pageWidth" name="pageWidth" display="false" defaultValue="771"/> <content:textField valueId="titlePrefix" name="titlePrefix" display="false" defaultValue=""/> <content:textField valueId="defaultMetaDescription" name="defaultMetaDescription" display="false" defaultValue=""/> <content:textField valueId="defaultMetaKeyword" name="defaultMetaKeyword" display="false" defaultValue=""/> <content:textField valueId="defaultColorSet" name="defaultColorSet" display="false" defaultValue="#006699"/> <content:textField valueId="defaultBackgroundColor" name="defaultBackgroundColor" display="false" defaultValue="#000000"/> <content:integerField valueId="leftMenuMaxDepth" name="leftMenuMaxDepth" display="false" defaultValue="2"/> <content:booleanField valueId="displayDropMenu" name="displayDropMenu" display="false" defaultValue="true"/> <content:textField valueId="footerText" name="footerText" diffActive="true" display="false" defaultValue="© 2002-2003, Jahia Ltd - All rights reserved"/> <% isSiteSettingAvaliable="true"; %> </content:container> <content:container id="headerGlobalSettings"> <!-- PARAMETRAGE DU BANDEAU : PARAMETRAGE GENERAL --> <content:textField valueId="headerBackgroundRepeat" name="headerBackgroundRepeat" display="false" defaultValue="repeat"/> <content:textField valueId="headerBackgroundHorizontalPosition" name="headerBackgroundHorizontalPosition" display="false" defaultValue="left"/> <content:textField valueId="headerBackgroundVerticalPosition" name="headerBackgroundVerticalPosition" display="false" defaultValue="top"/> <content:textField valueId="headerBackgroundAttachment" name="headerBackgroundAttachment" display="false" defaultValue="fixed"/> <content:textField valueId="headerBackgroundColor" name="headerBackgroundColor" display="false" defaultValue="#000000"/> <content:integerField valueId="headerWidth" name="headerWidth" display="false" defaultValue="771"/> <content:integerField valueId="headerHeight" name="headerHeight" display="false" defaultValue="80"/> <content:integerField valueId="headerZone1Height" name="headerZone1Height" display="false" defaultValue="50"/> <content:integerField valueId="headerZone1Width" name="headerZone1Width" display="false" defaultValue="25%"/> <content:integerField valueId="headerZone2Height" name="headerZone2Height" display="false" defaultValue="50"/> <content:integerField valueId="headerZone2Width" name="headerZone2Width" display="false" defaultValue="25%"/> <content:integerField valueId="headerZone3Height" name="headerZone3Height" display="false" defaultValue="50"/> <content:integerField valueId="headerZone3Width" name="headerZone3Width" display="false" defaultValue="25%"/> <content:integerField valueId="headerZone4Height" name="headerZone4Height" display="false" defaultValue="50"/> <content:integerField valueId="headerZone4Width" name="headerZone4Width" display="false" defaultValue="25%"/> <content:integerField valueId="headerZone5Height" name="headerZone5Height" display="false" defaultValue="30"/> <content:integerField valueId="headerZone5Width" name="headerZone5Width" display="false" defaultValue="100%"/> <logic:present name="siteSettings" property="field(headerBackgroundImage)"> <bean:define id="headerBackgroundImage" name="siteSettings" property="field(headerBackgroundImage).object"/> </logic:present> </content:container> <content:container id="headerLogoPosteSettings"> <!-- PARAMETRAGE DU BANDEAU : PARAMETRAGE DU LOGO DE LA POSTE --> <content:integerField valueId="headerPosteLogoZone" name="headerPosteLogoZone" display="false" defaultValue="1"/> <content:textField valueId="headerPosteLogoHorizontalAlign" name="headerPosteLogoHorizontalAlign" display="false" defaultValue="left"/> <content:textField valueId="headerPosteLogoVerticalAlign" name="headerPosteLogoVerticalAlign" display="false" defaultValue="middle"/> <content:textField valueId="headerPosteLogoLink" name="headerPosteLogoLink" display="false" defaultValue="http://www.i-poste.log.intra.laposte.fr"/> <content:textField valueId="headerPosteLogoLinkTarget" name="headerPosteLogoLinkTarget" display="false" defaultValue="_blank"/> <logic:present name="siteSettings" property="field(headerPosteLogo)"> <bean:define id="headerPosteLogo" name="siteSettings" property="field(headerPosteLogo).object"/> </logic:present> </content:container> <content:container id="headerLogoSiteSettings"> <!-- PARAMETRAGE DU BANDEAU : PARAMETRAGE DU LOGO DU SITE --> <content:integerField valueId="headerSiteLogoZone" name="headerSiteLogoZone" display="false" defaultValue="2"/> <content:textField valueId="headerSiteLogoHorizontalAlign" name="headerSiteLogoHorizontalAlign" display="false" defaultValue="left"/> <content:textField valueId="headerSiteLogoVerticalAlign" name="headerSiteLogoVerticalAlign" display="false" defaultValue="middle"/> <content:textField valueId="headerSiteLogoLink" name="headerSiteLogoLink" display="false" defaultValue="http://www.i-Site.log.intra.laSite.fr"/> <content:textField valueId="headerSiteLogoLinkTarget" name="headerSiteLogoLinkTarget" display="false" defaultValue="_blank"/> <logic:present name="siteSettings" property="field(headerSiteLogo)"> <bean:define id="headerSiteLogo" name="siteSettings" property="field(headerSiteLogo).object"/> </logic:present> </content:container> <content:container id="headerTextSettings"> <!-- PARAMETRAGE DU BANDEAU : PARAMETRAGE DE LA ZONE DE TEXTE --> <content:textField valueId="headerText" name="headerText" display="false" defaultValue=""/> <content:integerField valueId="headerTextZone" name="headerTextZone" display="false" defaultValue="3"/> <content:textField valueId="headerTextHorizontalAlign" name="headerTextHorizontalAlign" display="false" defaultValue="left"/> <content:textField valueId="headerTextVerticalAlign" name="headerTextVerticalAlign" display="false" defaultValue="middle"/> </content:container> <content:container id="headerSearchSettings"> <!-- PARAMETRAGE DU BANDEAU : PARAMETRAGE DU FORMULAIRE DE RECHERCHE --> <content:integerField valueId="headerSearchZone" name="headerSearchZone" display="false" defaultValue="4"/> <content:textField valueId="headerSearchHorizontalAlign" name="headerSearchHorizontalAlign" display="false" defaultValue="left"/> <content:textField valueId="headerSearchVerticalAlign" name="headerSearchVerticalAlign" display="false" defaultValue="middle"/> </content:container> <content:container id="headerQuickLinksSettings"> <!-- PARAMETRAGE DU BANDEAU : PARAMETRAGE DE LA BARRE DE LIENS --> <content:integerField valueId="headerQuickLinkZone" name="headerQuickLinkZone" display="false" defaultValue="5"/> <content:textField valueId="headerQuickLinkHorizontalAlign" name="headerQuickLinkHorizontalAlign" display="false" defaultValue="left"/> <content:textField valueId="headerQuickLinkVerticalAlign" name="headerQuickLinkVerticalAlign" display="false" defaultValue="middle"/> <content:textField valueId="headerQuickLinkRenderingMode" name="headerQuickLinkRenderingMode" display="false" defaultValue="horizontal"/> <content:textField valueId="headerQuickLinkIPosteUrl" name="headerQuickLinkIPosteUrl" display="false" defaultValue="http://www.i-poste.log.intra.laposte.fr"/> </content:container> <content:container id="headerBreadCrumbSettings"> <!-- PARAMETRAGE DU FIL D ARIANE --> <content:textField valueId="breadcrumbHorizontalAlign" name="breadcrumbHorizontalAlign" display="false" defaultValue="left"/> <content:textField valueId="breadcrumbBackgroundColor" name="breadcrumbBackgroundColor" display="false" defaultValue="#000000"/> <content:textField valueId="breadcrumbBackgroundRepeat" name="breadcrumbBackgroundRepeat" display="false" defaultValue="repeat"/> <content:textField valueId="breadcrumbBackgroundHorizontalPosition" name="breadcrumbBackgroundHorizontalPosition" display="false" defaultValue="left"/> <content:textField valueId="breadcrumbBackgroundVerticalPosition" name="breadcrumbBackgroundVerticalPosition" display="false" defaultValue="top"/> <content:textField valueId="breadcrumbBackgroundAttachment" name="breadcrumbBackgroundAttachment" display="false" defaultValue="scroll"/> <logic:present name="siteSettings" property="field(breadcrumbBackgroundImage)"> <bean:define id="breadcrumbBackgroundImage" name="siteSettings" property="field(breadcrumbBackgroundImage).object"/> </logic:present> </content:container> </content:absoluteContainerList> <% defaultColorSet = (String) pageContext.findAttribute("defaultColorSet"); %>
