To participate you must create an account on apostrophenow.org. If you have already done so, click Login.

Changeset 1970 for sandboxes/janequ

Show
Ignore:
Timestamp:
08/15/10 21:45:08 (21 months ago)
Author:
tboutell
Message:

Logo (mostly CSS and markup), tabs (styled for six)

Location:
sandboxes/janequ/trunk
Files:
5 added
47 modified

Legend:

Unmodified
Added
Removed
  • sandboxes/janequ/trunk/apps/frontend/templates/layout.php

    r69 r1970  
    1 <?php // We supply a default layout with the apostrophePlugin which is great for ?> 
    2 <?php // both CMS and non-CMS pages because you can easily override every section ?> 
    3 <?php // via Symfony slots. We've put this require here to ensure that we don't ?> 
    4 <?php // accidentally let this copy get out of sync with the one in the plugin. ?> 
    5 <?php // YES, you may ABSOLUTELY replace this layout.php with your own. ?> 
     1<?php use_helper('I18N') ?> 
     2<?php // This is a copy of apostrophePlugin/modules/a/templates/layout.php ?> 
     3<?php // It also makes a fine site-wide layout, which gives you global slots on non-page templates ?> 
     4<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 
     5<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> 
     6        <?php use_helper('a') ?> 
     7        <?php // If this page is an admin page we don't want to present normal navigation relative to it. ?> 
     8        <?php $page = aTools::getCurrentNonAdminPage() ?> 
     9<head> 
     10        <?php include_http_metas() ?> 
     11        <?php include_metas() ?> 
     12        <?php include_title() ?> 
     13        <?php // 1.3 and up don't do this automatically (no common filter) ?> 
     14        <?php // a_include_stylesheets has a built in caching combiner/minimizer when enabled ?> 
     15  <?php a_include_stylesheets() ?> 
     16        <?php a_include_javascripts() ?> 
     17        <link rel="shortcut icon" href="/favicon.ico" /> 
    618 
    7 <?php require sfConfig::get('sf_plugins_dir') . '/apostrophePlugin/modules/a/templates/layout.php' ?> 
     19        <!--[if lt IE 7]> 
     20        <script type="text/javascript" charset="utf-8"> 
     21                $(document).ready(function() { 
     22                        aIE6(<?php echo ($sf_user->isAuthenticated())? 'true':'false' ?>, <?php echo json_encode(__('You are using IE6! That is just awful! Apostrophe does not support editing using Internet Explorer 6. Why don\'t you try upgrading? <a href="http://www.getfirefox.com">Firefox</a> <a href="http://www.google.com/chrome">Chrome</a>      <a href="http://www.apple.com/safari/download/">Safari</a> <a href="http://www.microsoft.com/windows/internet-explorer/worldwide-sites.aspx">IE8</a>', null, 'apostrophe')) ?>); 
     23                });              
     24        </script> 
     25        <![endif]-->     
     26 
     27        <!--[if lte IE 7]> 
     28                <link rel="stylesheet" type="text/css" href="/apostrophePlugin/css/a-ie.css" />  
     29        <![endif]--> 
     30                 
     31</head> 
     32 
     33<?php // body_class allows you to set a class for the body element from a template ?> 
     34<body class="<?php if (has_slot('body_class')): ?><?php include_slot('body_class') ?><?php endif ?><?php if (($sf_user->isAuthenticated())): ?> logged-in<?php endif ?>"> 
     35 
     36  <?php // Everyone gets this now, but internally it determines which controls you should ?> 
     37  <?php // actually see ?> 
     38   
     39  <?php include_partial('a/globalTools') ?> 
     40 
     41        <div id="a-wrapper"> 
     42    <?php // Note that just about everything can be suppressed or replaced by setting a ?> 
     43    <?php // Symfony slot. Use them - don't write zillions of layouts or do layout stuff ?> 
     44    <?php // in the template (except by setting a slot). To suppress one of these slots ?> 
     45    <?php // completely in one line of code, just do: slot('a-whichever', '') ?> 
     46       
     47    <?php if (has_slot('a-search')): ?> 
     48      <?php include_slot('a-search') ?> 
     49    <?php else: ?> 
     50      <?php include_partial('a/search') ?> 
     51    <?php endif ?> 
     52 
     53    <?php // Stylin' mostly-CSS logo ?> 
     54    <?php if (has_slot('a-header')): ?> 
     55      <?php include_slot('a-header') ?> 
     56    <?php else: ?> 
     57      <div id="a-header"> 
     58        <a href="<?php echo url_for('@homepage') ?>"> 
     59          <div id="shield"> 
     60            <div id="shield-top">JQ</div> 
     61            <div class="spacer"></div> 
     62            <div id="shield-bottom"><ul><li>propriety</li><li>sobriety</li><li>janiety</li></ul></div> 
     63          </div> 
     64          <p> 
     65          JANE QUERBLY COLLEGE <em>at</em> GREEN LANE 
     66          </p> 
     67        </a> 
     68      </div> 
     69    <?php endif ?> 
     70 
     71    <?php // Perhaps we want some of this on non-CMS pages like 'reorganize' but we can't ?> 
     72    <?php // spew PHP warnings, so fix that before you take away this if ?> 
     73     <?php if (has_slot('a-tabs')): ?> 
     74       <?php include_slot('a-tabs') ?> 
     75     <?php else: ?> 
     76                        <?php include_component('aNavigation', 'tabs', array('root' => '/', 'active' => $page['slug'], 'name' => 'main', 'draggable' => true, 'dragIcon' => false)) # Top Level Navigation ?> 
     77                <?php endif ?> 
     78 
     79                <?php if (has_slot('a-breadcrumb')): ?> 
     80                                <?php include_slot('a-breadcrumb') ?> 
     81                <?php elseif ($page): ?> 
     82                                <?php include_component('aNavigation', 'breadcrumb', array('root' => '/', 'active' => $page['slug'], 'name' => 'component', 'separator' => ' /')) # Top Level Navigation ?> 
     83                <?php endif ?> 
     84 
     85     <?php if (has_slot('a-subnav')): ?> 
     86       <?php include_slot('a-subnav') ?> 
     87     <?php elseif ($page): ?> 
     88                  <?php include_component('a', 'subnav', array('page' => $page)) # Subnavigation ?> 
     89                <?php endif ?> 
     90 
     91                <div id="a-content"> 
     92                        <?php echo $sf_data->getRaw('sf_content') ?> 
     93                </div> 
     94         
     95          <?php include_partial('a/footer') ?> 
     96        </div> 
     97        <?php // Drop in the document.ready stuff at the bottom. ?> 
     98        <?php // If we try to do this sooner, it works for the template but ?> 
     99        <?php // doesn't yet know about any js calls relating to the layout. ?> 
     100  <?php a_include_js_calls() ?> 
     101</body> 
     102</html> 
  • sandboxes/janequ/trunk/lib/model/doctrine/apostropheBlogPlugin/base/BaseaBlogCategory.class.php

    r1148 r1970  
    4141 * @method aBlogCategory       setBlogCategoryUsers()  Sets the current record's "BlogCategoryUsers" collection 
    4242 *  
    43  * @package    asandbox 
     43 * @package    janequ 
    4444 * @subpackage model 
    4545 * @author     Your name here 
  • sandboxes/janequ/trunk/lib/model/doctrine/apostropheBlogPlugin/base/BaseaBlogCategoryUser.class.php

    r1234 r1970  
    2020 * @method aBlogCategoryUser setUser()             Sets the current record's "User" value 
    2121 *  
    22  * @package    asandbox 
     22 * @package    janequ 
    2323 * @subpackage model 
    2424 * @author     Your name here 
  • sandboxes/janequ/trunk/lib/model/doctrine/apostropheBlogPlugin/base/BaseaBlogEditor.class.php

    r1234 r1970  
    2020 * @method aBlogEditor setEditor()       Sets the current record's "Editor" value 
    2121 *  
    22  * @package    asandbox 
     22 * @package    janequ 
    2323 * @subpackage model 
    2424 * @author     Your name here 
  • sandboxes/janequ/trunk/lib/model/doctrine/apostropheBlogPlugin/base/BaseaBlogItem.class.php

    r1303 r1970  
    1717 * @property timestamp $published_at 
    1818 * @property string $type 
    19  * @property timestamp $start_date 
    20  * @property timestamp $end_date 
     19 * @property date $start_date 
     20 * @property time $start_time 
     21 * @property date $end_date 
     22 * @property time $end_time 
    2123 * @property sfGuardUser $Author 
    2224 * @property Doctrine_Collection $Editors 
     
    3739 * @method timestamp           getPublishedAt()        Returns the current record's "published_at" value 
    3840 * @method string              getType()               Returns the current record's "type" value 
    39  * @method timestamp           getStartDate()          Returns the current record's "start_date" value 
    40  * @method timestamp           getEndDate()            Returns the current record's "end_date" value 
     41 * @method date                getStartDate()          Returns the current record's "start_date" value 
     42 * @method time                getStartTime()          Returns the current record's "start_time" value 
     43 * @method date                getEndDate()            Returns the current record's "end_date" value 
     44 * @method time                getEndTime()            Returns the current record's "end_time" value 
    4145 * @method sfGuardUser         getAuthor()             Returns the current record's "Author" value 
    4246 * @method Doctrine_Collection getEditors()            Returns the current record's "Editors" collection 
     
    5761 * @method aBlogItem           setType()               Sets the current record's "type" value 
    5862 * @method aBlogItem           setStartDate()          Sets the current record's "start_date" value 
     63 * @method aBlogItem           setStartTime()          Sets the current record's "start_time" value 
    5964 * @method aBlogItem           setEndDate()            Sets the current record's "end_date" value 
     65 * @method aBlogItem           setEndTime()            Sets the current record's "end_time" value 
    6066 * @method aBlogItem           setAuthor()             Sets the current record's "Author" value 
    6167 * @method aBlogItem           setEditors()            Sets the current record's "Editors" collection 
     
    6571 * @method aBlogItem           setBlogItemCategories() Sets the current record's "BlogItemCategories" collection 
    6672 *  
    67  * @package    asandbox 
     73 * @package    janequ 
    6874 * @subpackage model 
    6975 * @author     Your name here 
     
    129135             'length' => 255, 
    130136             )); 
    131         $this->hasColumn('start_date', 'timestamp', null, array( 
    132              'type' => 'timestamp', 
    133              )); 
    134         $this->hasColumn('end_date', 'timestamp', null, array( 
    135              'type' => 'timestamp', 
     137        $this->hasColumn('start_date', 'date', null, array( 
     138             'type' => 'date', 
     139             )); 
     140        $this->hasColumn('start_time', 'time', null, array( 
     141             'type' => 'time', 
     142             )); 
     143        $this->hasColumn('end_date', 'date', null, array( 
     144             'type' => 'date', 
     145             )); 
     146        $this->hasColumn('end_time', 'time', null, array( 
     147             'type' => 'time', 
    136148             )); 
    137149 
  • sandboxes/janequ/trunk/lib/model/doctrine/apostropheBlogPlugin/base/BaseaBlogItemCategory.class.php

    r1050 r1970  
    2020 * @method aBlogItemCategory setBlogCategory()     Sets the current record's "BlogCategory" value 
    2121 *  
    22  * @package    asandbox 
     22 * @package    janequ 
    2323 * @subpackage model 
    2424 * @author     Your name here 
  • sandboxes/janequ/trunk/lib/model/doctrine/apostropheBlogPlugin/base/BaseaBlogPageCategory.class.php

    r932 r1970  
    2020 * @method aBlogPageCategory setAPage()            Sets the current record's "aPage" value 
    2121 *  
    22  * @package    asandbox 
     22 * @package    janequ 
    2323 * @subpackage model 
    2424 * @author     Your name here 
  • sandboxes/janequ/trunk/lib/model/doctrine/apostropheBlogPlugin/base/BaseaBlogPost.class.php

    r932 r1970  
    77 *  
    88 *  
    9  * @package    asandbox 
     9 * @package    janequ 
    1010 * @subpackage model 
    1111 * @author     Your name here 
  • sandboxes/janequ/trunk/lib/model/doctrine/apostropheBlogPlugin/base/BaseaBlogSingleSlot.class.php

    r932 r1970  
    77 *  
    88 *  
    9  * @package    asandbox 
     9 * @package    janequ 
    1010 * @subpackage model 
    1111 * @author     Your name here 
  • sandboxes/janequ/trunk/lib/model/doctrine/apostropheBlogPlugin/base/BaseaBlogSlot.class.php

    r932 r1970  
    77 *  
    88 *  
    9  * @package    asandbox 
     9 * @package    janequ 
    1010 * @subpackage model 
    1111 * @author     Your name here 
  • sandboxes/janequ/trunk/lib/model/doctrine/apostropheBlogPlugin/base/BaseaEvent.class.php

    r932 r1970  
    77 *  
    88 *  
    9  * @package    asandbox 
     9 * @package    janequ 
    1010 * @subpackage model 
    1111 * @author     Your name here 
  • sandboxes/janequ/trunk/lib/model/doctrine/apostropheBlogPlugin/base/BaseaEventSingleSlot.class.php

    r932 r1970  
    77 *  
    88 *  
    9  * @package    asandbox 
     9 * @package    janequ 
    1010 * @subpackage model 
    1111 * @author     Your name here 
  • sandboxes/janequ/trunk/lib/model/doctrine/apostropheBlogPlugin/base/BaseaEventSlot.class.php

    r932 r1970  
    77 *  
    88 *  
    9  * @package    asandbox 
     9 * @package    janequ 
    1010 * @subpackage model 
    1111 * @author     Your name here 
  • sandboxes/janequ/trunk/lib/model/doctrine/apostrophePlugin/base/BaseaAccess.class.php

    r931 r1970  
    2323 * @method aAccess     setPage()      Sets the current record's "Page" value 
    2424 *  
    25  * @package    asandbox 
     25 * @package    janequ 
    2626 * @subpackage model 
    2727 * @author     Your name here 
  • sandboxes/janequ/trunk/lib/model/doctrine/apostrophePlugin/base/BaseaArea.class.php

    r931 r1970  
    2929 * @method aArea               setAreaVersions()   Sets the current record's "AreaVersions" collection 
    3030 *  
    31  * @package    asandbox 
     31 * @package    janequ 
    3232 * @subpackage model 
    3333 * @author     Your name here 
  • sandboxes/janequ/trunk/lib/model/doctrine/apostrophePlugin/base/BaseaAreaVersion.class.php

    r931 r1970  
    3232 * @method aAreaVersion        setAreaVersionSlots() Sets the current record's "AreaVersionSlots" collection 
    3333 *  
    34  * @package    asandbox 
     34 * @package    janequ 
    3535 * @subpackage model 
    3636 * @author     Your name here 
  • sandboxes/janequ/trunk/lib/model/doctrine/apostrophePlugin/base/BaseaAreaVersionSlot.class.php

    r931 r1970  
    2626 * @method aAreaVersionSlot setSlot()            Sets the current record's "Slot" value 
    2727 *  
    28  * @package    asandbox 
     28 * @package    janequ 
    2929 * @subpackage model 
    3030 * @author     Your name here 
  • sandboxes/janequ/trunk/lib/model/doctrine/apostrophePlugin/base/BaseaButtonSlot.class.php

    r931 r1970  
    77 *  
    88 *  
    9  * @package    asandbox 
     9 * @package    janequ 
    1010 * @subpackage model 
    1111 * @author     Your name here 
  • sandboxes/janequ/trunk/lib/model/doctrine/apostrophePlugin/base/BaseaFeedSlot.class.php

    r931 r1970  
    77 *  
    88 *  
    9  * @package    asandbox 
     9 * @package    janequ 
    1010 * @subpackage model 
    1111 * @author     Your name here 
  • sandboxes/janequ/trunk/lib/model/doctrine/apostrophePlugin/base/BaseaImageSlot.class.php

    r931 r1970  
    77 *  
    88 *  
    9  * @package    asandbox 
     9 * @package    janequ 
    1010 * @subpackage model 
    1111 * @author     Your name here 
  • sandboxes/janequ/trunk/lib/model/doctrine/apostrophePlugin/base/BaseaLuceneUpdate.class.php

    r931 r1970  
    1717 * @method aLuceneUpdate setPage()    Sets the current record's "Page" value 
    1818 *  
    19  * @package    asandbox 
     19 * @package    janequ 
    2020 * @subpackage model 
    2121 * @author     Your name here 
  • sandboxes/janequ/trunk/lib/model/doctrine/apostrophePlugin/base/BaseaMediaBrowserSlot.class.php

    r931 r1970  
    77 *  
    88 *  
    9  * @package    asandbox 
     9 * @package    janequ 
    1010 * @subpackage model 
    1111 * @author     Your name here 
  • sandboxes/janequ/trunk/lib/model/doctrine/apostrophePlugin/base/BaseaMediaCategory.class.php

    r931 r1970  
    2929 * @method aMediaCategory      setAMediaPageCategory() Sets the current record's "aMediaPageCategory" collection 
    3030 *  
    31  * @package    asandbox 
     31 * @package    janequ 
    3232 * @subpackage model 
    3333 * @author     Your name here 
  • sandboxes/janequ/trunk/lib/model/doctrine/apostrophePlugin/base/BaseaMediaItem.class.php

    r1754 r1970  
    6262 * @method aMediaItem          setAMediaItemCategory() Sets the current record's "aMediaItemCategory" collection 
    6363 *  
    64  * @package    asandbox 
     64 * @package    janequ 
    6565 * @subpackage model 
    6666 * @author     Your name here 
  • sandboxes/janequ/trunk/lib/model/doctrine/apostrophePlugin/base/BaseaMediaItemCategory.class.php

    r931 r1970  
    2020 * @method aMediaItemCategory setAMediaCategory()    Sets the current record's "aMediaCategory" value 
    2121 *  
    22  * @package    asandbox 
     22 * @package    janequ 
    2323 * @subpackage model 
    2424 * @author     Your name here 
  • sandboxes/janequ/trunk/lib/model/doctrine/apostrophePlugin/base/BaseaMediaPageCategory.class.php

    r931 r1970  
    2020 * @method aMediaPageCategory setAPage()             Sets the current record's "aPage" value 
    2121 *  
    22  * @package    asandbox 
     22 * @package    janequ 
    2323 * @subpackage model 
    2424 * @author     Your name here 
  • sandboxes/janequ/trunk/lib/model/doctrine/apostrophePlugin/base/BaseaNewRichTextSlot.class.php

    r1050 r1970  
    77 *  
    88 *  
    9  * @package    asandbox 
     9 * @package    janequ 
    1010 * @subpackage model 
    1111 * @author     Your name here 
  • sandboxes/janequ/trunk/lib/model/doctrine/apostrophePlugin/base/BaseaPDFSlot.class.php

    r931 r1970  
    77 *  
    88 *  
    9  * @package    asandbox 
     9 * @package    janequ 
    1010 * @subpackage model 
    1111 * @author     Your name here 
  • sandboxes/janequ/trunk/lib/model/doctrine/apostrophePlugin/base/BaseaPage.class.php

    r1928 r1970  
    6868 * @method aPage               setARedirect()          Sets the current record's "aRedirect" collection 
    6969 *  
    70  * @package    asandbox 
     70 * @package    janequ 
    7171 * @subpackage model 
    7272 * @author     Your name here 
  • sandboxes/janequ/trunk/lib/model/doctrine/apostrophePlugin/base/BaseaRawHTMLSlot.class.php

    r931 r1970  
    77 *  
    88 *  
    9  * @package    asandbox 
     9 * @package    janequ 
    1010 * @subpackage model 
    1111 * @author     Your name here 
  • sandboxes/janequ/trunk/lib/model/doctrine/apostrophePlugin/base/BaseaRedirect.class.php

    r931 r1970  
    2020 * @method aRedirect setPage()    Sets the current record's "Page" value 
    2121 *  
    22  * @package    asandbox 
     22 * @package    janequ 
    2323 * @subpackage model 
    2424 * @author     Your name here 
  • sandboxes/janequ/trunk/lib/model/doctrine/apostrophePlugin/base/BaseaRichTextSlot.class.php

    r931 r1970  
    77 *  
    88 *  
    9  * @package    asandbox 
     9 * @package    janequ 
    1010 * @subpackage model 
    1111 * @author     Your name here 
  • sandboxes/janequ/trunk/lib/model/doctrine/apostrophePlugin/base/BaseaSlideshowSlot.class.php

    r931 r1970  
    77 *  
    88 *  
    9  * @package    asandbox 
     9 * @package    janequ 
    1010 * @subpackage model 
    1111 * @author     Your name here 
  • sandboxes/janequ/trunk/lib/model/doctrine/apostrophePlugin/base/BaseaSlot.class.php

    r1928 r1970  
    2929 * @method aSlot               setASlotMediaItem()   Sets the current record's "aSlotMediaItem" collection 
    3030 *  
    31  * @package    asandbox 
     31 * @package    janequ 
    3232 * @subpackage model 
    3333 * @author     Your name here 
  • sandboxes/janequ/trunk/lib/model/doctrine/apostrophePlugin/base/BaseaSlotMediaItem.class.php

    r931 r1970  
    2020 * @method aSlotMediaItem setASlot()         Sets the current record's "aSlot" value 
    2121 *  
    22  * @package    asandbox 
     22 * @package    janequ 
    2323 * @subpackage model 
    2424 * @author     Your name here 
  • sandboxes/janequ/trunk/lib/model/doctrine/apostrophePlugin/base/BaseaTextSlot.class.php

    r931 r1970  
    77 *  
    88 *  
    9  * @package    asandbox 
     9 * @package    janequ 
    1010 * @subpackage model 
    1111 * @author     Your name here 
  • sandboxes/janequ/trunk/lib/model/doctrine/apostrophePlugin/base/BaseaVideoSlot.class.php

    r931 r1970  
    77 *  
    88 *  
    9  * @package    asandbox 
     9 * @package    janequ 
    1010 * @subpackage model 
    1111 * @author     Your name here 
  • sandboxes/janequ/trunk/lib/model/doctrine/sfDoctrineActAsTaggablePlugin/base/BaseTag.class.php

    r931 r1970  
    2626 * @method Tag                 setTagging()          Sets the current record's "Tagging" collection 
    2727 *  
    28  * @package    asandbox 
     28 * @package    janequ 
    2929 * @subpackage model 
    3030 * @author     Your name here 
  • sandboxes/janequ/trunk/lib/model/doctrine/sfDoctrineActAsTaggablePlugin/base/BaseTagging.class.php

    r931 r1970  
    2020 * @method Tagging setTag()            Sets the current record's "Tag" value 
    2121 *  
    22  * @package    asandbox 
     22 * @package    janequ 
    2323 * @subpackage model 
    2424 * @author     Your name here 
  • sandboxes/janequ/trunk/lib/model/doctrine/sfDoctrineGuardPlugin/base/BasesfGuardGroup.class.php

    r931 r1970  
    2929 * @method sfGuardGroup        setSfGuardUserGroup()       Sets the current record's "sfGuardUserGroup" collection 
    3030 *  
    31  * @package    asandbox 
     31 * @package    janequ 
    3232 * @subpackage model 
    3333 * @author     Your name here 
  • sandboxes/janequ/trunk/lib/model/doctrine/sfDoctrineGuardPlugin/base/BasesfGuardGroupPermission.class.php

    r931 r1970  
    2020 * @method sfGuardGroupPermission setSfGuardPermission() Sets the current record's "sfGuardPermission" value 
    2121 *  
    22  * @package    asandbox 
     22 * @package    janequ 
    2323 * @subpackage model 
    2424 * @author     Your name here 
  • sandboxes/janequ/trunk/lib/model/doctrine/sfDoctrineGuardPlugin/base/BasesfGuardPermission.class.php

    r931 r1970  
    2929 * @method sfGuardPermission   setSfGuardUserPermission()  Sets the current record's "sfGuardUserPermission" collection 
    3030 *  
    31  * @package    asandbox 
     31 * @package    janequ 
    3232 * @subpackage model 
    3333 * @author     Your name here 
  • sandboxes/janequ/trunk/lib/model/doctrine/sfDoctrineGuardPlugin/base/BasesfGuardRememberKey.class.php

    r931 r1970  
    2323 * @method sfGuardRememberKey setSfGuardUser()  Sets the current record's "sfGuardUser" value 
    2424 *  
    25  * @package    asandbox 
     25 * @package    janequ 
    2626 * @subpackage model 
    2727 * @author     Your name here 
  • sandboxes/janequ/trunk/lib/model/doctrine/sfDoctrineGuardPlugin/base/BasesfGuardUser.class.php

    r1928 r1970  
    7474 * @method sfGuardUser         setRememberKeys()          Sets the current record's "RememberKeys" value 
    7575 *  
    76  * @package    asandbox 
     76 * @package    janequ 
    7777 * @subpackage model 
    7878 * @author     Your name here 
  • sandboxes/janequ/trunk/lib/model/doctrine/sfDoctrineGuardPlugin/base/BasesfGuardUserGroup.class.php

    r931 r1970  
    2020 * @method sfGuardUserGroup setSfGuardGroup() Sets the current record's "sfGuardGroup" value 
    2121 *  
    22  * @package    asandbox 
     22 * @package    janequ 
    2323 * @subpackage model 
    2424 * @author     Your name here 
  • sandboxes/janequ/trunk/lib/model/doctrine/sfDoctrineGuardPlugin/base/BasesfGuardUserPermission.class.php

    r931 r1970  
    2020 * @method sfGuardUserPermission setSfGuardPermission() Sets the current record's "sfGuardPermission" value 
    2121 *  
    22  * @package    asandbox 
     22 * @package    janequ 
    2323 * @subpackage model 
    2424 * @author     Your name here 
  • sandboxes/janequ/trunk/web/css/main.css

    r1960 r1970  
    7171} 
    7272 
    73 #a-header 
    74 { 
    75 float: left; 
    76 display: inline; 
    77 position: relative; 
    78 width: 540px; 
    79 clear: none; 
    80 } 
    81  
    8273#a-content 
    8374{ 
     
    201192        float: left; 
    202193        display: inline; 
    203         width: 118px; 
     194        width: 158px; 
    204195        height: 20px; 
    205196        line-height: 20px; 
    206197        border: 1px solid #ddd; 
    207         border-bottom: 0; 
    208         border-right: 0; 
     198        background-color: #cb1717; 
    209199} 
    210200 
     
    221211        height: 100%; 
    222212        text-decoration: none; 
    223         color: #333; 
     213        color: white; 
    224214        text-align: center;      
    225215} 
     
    228218.a-nav-main .a-nav-item a:hover 
    229219{ 
    230         background-color: #ddd; 
    231         color:#000; 
     220        background-color: #ff1d1d; 
    232221} 
    233222 
     
    448437text-transform: capitalize; 
    449438} 
     439 
     440#a-header 
     441{ 
     442        float: left; 
     443        display: inline; 
     444        position: relative; 
     445        width: 300px; 
     446        clear: none; 
     447        font-family: Times; 
     448} 
     449 
     450#a-header a:hover 
     451{ 
     452        text-decoration: none; 
     453} 
     454 
     455#a-header em 
     456{ 
     457        font-size: 90%; 
     458        font-style: italic; 
     459} 
     460 
     461#shield 
     462{ 
     463        float: left; 
     464        width: 86px; 
     465        height: 124px; 
     466        background-image: url(/images/shield.png); 
     467        background-repeat: no-repeat; 
     468        text-align: center; 
     469        color: white; 
     470        font-style: italic; 
     471        padding-right: 20px; 
     472} 
     473 
     474#shield .spacer 
     475{ 
     476        margin: auto; 
     477        width: 40px; 
     478        height: 2px; 
     479        background-color: white; 
     480        margin-bottom: 4px; 
     481} 
     482 
     483#shield-top 
     484{ 
     485        font-size: 48px; 
     486} 
     487 
     488#shield-bottom 
     489{ 
     490        font-size: 12px; 
     491} 
     492 
     493#shield-bottom li 
     494{ 
     495        list-style-type: none; 
     496} 
     497 
     498#a-header p 
     499{ 
     500        font-size: 24px; 
     501        color: #a91313; 
     502        padding-top: 10px; 
     503} 
     504 
     505h3 
     506{ 
     507        padding-bottom: 1em; 
     508} 
     509 
     510strong 
     511{ 
     512        font-weight: bold; 
     513}