Bienvenue sur PostGIS.fr

Bienvenue sur PostGIS.fr , le site de la communauté des utilisateurs francophones de PostGIS.

PostGIS ajoute le support d'objets géographique à la base de données PostgreSQL. En effet, PostGIS "spatialise" le serverur PostgreSQL, ce qui permet de l'utiliser comme une base de données SIG.

Maintenu à jour, en fonction de nos disponibilités et des diverses sorties des outils que nous testons, nous vous proposons l'ensemble de nos travaux publiés en langue française.

Changes between Version 1 and Version 2 of TracNavigation


Ignore:
Timestamp:
21/09/2011 11:27:42 (13 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TracNavigation

    v1 v2  
    55The new `[mainnav]` and `[metanav]` configuration sections can now be used to customize the text and link used for the navigation items, or even to disable them. 
    66 
     7=== `[mainnav]` #mainnav-bar 
    78`[mainnav]` corresponds to the '''main navigation bar''', the one containing entries such as ''Wiki'', ''Timeline'', ''Roadmap'', ''Browse Source'' and so on. This navigation bar is meant to access the default page of the main modules enabled in Trac and accessible for the current user. 
    89 
    9 `[metanav]` corresponds to the '''meta navigation bar''', by default positioned above the main navigation bar and below the ''Search'' box. It contains the ''Log in'', ''Logout'', ''!Help/Guide'' etc. entries. This navigation bar is meant to access some global information about the Trac project and the current user. 
    1010 
    11 There is one special entry in the  `[metanav]` section: `logout.redirect` is the page the user sees after hitting the logout button.  
    12  
    13 Possible URL formats: 
    14 || '''config''' || '''redirect to''' || 
    15 || `wiki/Logout` || `/projects/env/wiki/Logout` || 
    16 || `http://hostname/` || `http://hostname/` || 
    17 || `/projects` || `/projects` || 
    18 [[comment(see also #Trac3808)]] 
    19  
    20 Note that it is still not possible to customize the '''contextual navigation bar''', i.e. the one usually placed below the main navigation bar. 
    21  
    22 === Example === 
     11** [=#Example Example] **  
    2312 
    2413In the following example, we rename the link to the Wiki start "Home", and hide the "!Help/Guide" link.  
     
    3019wiki.label = Home 
    3120tickets.href = /report/24 
     21}}} 
    3222 
     23=== `[metanav]` #metanav-bar 
     24`[metanav]` corresponds to the '''meta navigation bar''', by default positioned above the main navigation bar and below the ''Search'' box. It contains the ''Log in'', ''Logout'', ''!Help/Guide'' etc. entries. This navigation bar is meant to access some global information about the Trac project and the current user. 
     25 
     26There is one special entry in the  `[metanav]` section: `logout.redirect` is the page the user sees after hitting the logout button.  
     27[[comment(see also #Trac3808)]] 
     28 
     29** Example **  
     30 
     31{{{ 
    3332[metanav] 
    3433help = disabled 
     
    3635}}} 
    3736 
     37 
     38=== Notes 
     39Possible URL formats (for `.href` or `.redirect`): 
     40|| '''config''' || '''redirect to''' || 
     41|| `wiki/Logout` || `/projects/env/wiki/Logout` || 
     42|| `http://hostname/` || `http://hostname/` || 
     43|| `/projects` || `/projects` || 
     44 
     45 
     46Note that it is still not possible to customize the '''contextual navigation bar''', i.e. the one usually placed below the main navigation bar. 
     47 
     48 
    3849---- 
    3950See also: TracInterfaceCustomization, and the [http://trac-hacks.org/wiki/NavAddPlugin TracHacks:NavAddPlugin] or [http://trac-hacks.org/wiki/MenusPlugin TracHacks:MenusPlugin] (still needed for adding entries)