Changeset 1710

Show
Ignore:
Timestamp:
08/15/08 19:47:43 (5 months ago)
Author:
lmajano
Message:

Updated Application template to make use of the sidebar

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • coldbox/trunk/ApplicationTemplate/config/coldbox.xml.cfm

    r1569 r1710  
    112112                </YourSettings> 
    113113         --> 
    114         <YourSettings></YourSettings> 
     114        <YourSettings> 
     115                <!-- Show SideBar? true/false, else leave blank. --> 
     116                <Setting name="ColdBoxSideBar" value="true" /> 
     117        </YourSettings> 
    115118         
    116119        <!-- Custom Conventions : You can override the framework wide conventions of the locations of the needed objects 
     
    232235                        <Property name="configFile">config/routes.cfm</Property> 
    233236                </Interceptor> 
     237                <!--- Developer's ColdBox Sidebar ---> 
     238                <Interceptor class="coldbox.system.interceptors.coldboxSideBar"> 
     239                        <!-- Y offset: number, else leave blank --> 
     240                        <Property name="yOffset"></Property> 
     241                        <!-- Scroll: true/false, else leave blank --> 
     242                        <Property name="isScroll"></Property> 
     243                        <!-- Slide Speed: number, else leave blank --> 
     244                        <Property name="slideSpeed"></Property> 
     245                        <!-- Wait time before closing: number, else leave blank --> 
     246                        <Property name="waitTimeBeforeClose"></Property> 
     247                        <!-- Links (JSON array of objects), else leave blank 
     248                        e.g.  
     249                                [ 
     250                                {"desc":"ColdBox API","href":"http:\/\/www.coldboxframework.com\/api\/"} 
     251                                ,{"desc":"ColdBox Credits","href":"http:\/\/ortus.svnrepository.com\/coldbox\/trac.cgi\/wiki\/cbCredits"} 
     252                                ,{"desc":"ColdBox SideBar Help","href":"http:\/\/ortus.svnrepository.com\/coldbox\/trac.cgi\/wiki\/cbSideBar"} 
     253                                ,{"desc":"Transfer Docs","href":"http:\/\/docs.transfer-orm.com\/"} 
     254                                ,{"desc":"My API","href":"http:\/\/localhost\/myApi/"} 
     255                                ,{"desc":"My Database Schema","href":"http:\/\/localhost\/myDatabaseSchema.pdf"} 
     256                                ]                        
     257                         --> 
     258                        <Property name="links"></Property> 
     259                        <!-- Width of the sidebar including visible width, else leave blank --> 
     260                        <Property name="width"></Property> 
     261                        <!-- Visible width, else leave blank  --> 
     262                        <Property name="visibleWidth"></Property> 
     263                        <!--Full path from the application's root, else leave blank. --> 
     264                        <Property name="imagePath"></Property> 
     265                        <!-- Vertical alignment of the image: top,middle or bottom, else leave blank  --> 
     266                        <Property name="imageVAlign"></Property> 
     267                        <!--Full path from the application's root, else leave blank --> 
     268                        <Property name="cssPath"></Property> 
     269                </Interceptor> 
    234270        </Interceptors> 
    235271         

Copyright 2006 ColdBox Framework by Luis Majano