Changeset 929 for trunk/Vanilla

Show
Ignore:
Timestamp:
08/04/08 01:43:15 (16 months ago)
Author:
bsmith
Message:

Adding Vanilla+Assets

Location:
trunk/Vanilla
Files:
4 added
4 modified

Legend:

Unmodified
Added
Removed
  • trunk/Vanilla/README.txt

    r920 r929  
    5656        - Entry Response 
    5757 
     58    8. Vanilla + Search & Tags 
     59        - Tag Cloud and Search Form on Homepage 
     60        - Entry Detail 
     61        - Page Detail 
     62        - Search Results Template 
     63 
     64    9. Vanilla + Assets 
     65        - Recent assets on Homepage in various sizes and formats 
     66        - lastn entries on Homepage with the first asset added to each as 70 pixel square 
     67        - Entry Detail with assets in entries 
     68     
    5869## INSTALLATION ## 
    5970 
  • trunk/Vanilla/config.yaml

    r924 r929  
    261261                search_results: 
    262262                    label: Search Results 
     263    vanilla_assets: 
     264        label: Vanilla + Assets 
     265        base_path: templates/vanilla+assets 
     266        order: 509 
     267        notes:  
     268            - Recent assets on Homepage in various sizes and formats 
     269            - lastn entries on Homepage with the first asset added to each as 70 pixel square 
     270            - Entry Detail with assets in entries 
     271        templates: 
     272            index: 
     273                home: 
     274                    label: Homepage 
     275                    outfile: index.html 
     276                    rebuild_me: 1 
     277            individual: 
     278                entry:  
     279                    label: Entry 
     280                    mappings: 
     281                        entry_archive: 
     282                            archive_type: Individual 
     283            module: 
     284                wrapper: 
     285                    label: Wrapper 
    263286 
    264 # - Profiles + Userpics + Friending 
    265 #     * Userpics 
    266 #     * Profiles 
    267 #     vanilla: 
    268 #         label: 'Vanilla - Homepage + Entries' 
    269 #         base_path: 'templates/vanilla' 
    270 #         order: 100 
    271 #         templates: 
    272 # - Profiles 
    273 #     * Friending 
    274 #     vanilla: 
    275 #         label: 'Vanilla - Homepage + Entries' 
    276 #         base_path: 'templates/vanilla' 
    277 #         order: 100 
    278 #         templates: 
     287 
    279288# - Rating 
    280289#     * 1 
    281290#     * 5 Star 
    282291#     * -1, 0, 1 
    283 #     vanilla: 
    284 #         label: 'Vanilla - Homepage + Entries' 
    285 #         base_path: 'templates/vanilla' 
    286 #         order: 100 
    287 #         templates: 
     292# - Profiles + Userpics + Friending 
     293#     * Userpics 
     294#     * Profiles 
     295#     * Friending 
    288296# - Custom Fields 
    289 # - Assets 
    290 #   - recent assets 
    291 #   - sizing 
    292  
     297# ---- 
    293298# - Widget & Widget Sets 
    294299# - Logic 
  • trunk/Vanilla/templates/vanilla+archives/entry_listing.mtml

    r922 r929  
    1 <mt:IncludeBlock module="Wrapper"> 
     1<mt:IncludeBlock module="wrapper"> 
    22 
    33    <h1><__trans phrase="[_1] Archives" params="<$mt:ArchiveTitle$>"></h1> 
    44     
    5     <p>archive_template: <mt:if name="archive_template">true</mt:if></p> 
    6  
    75    <mt:Entries> 
    86        <h2><a href="<$mt:EntryPermalink$>"><$mt:EntryTitle$></a></h2> 
     
    1715     
    1816    <mt:If name="category_archive"> 
    19         <mt:setvarblock name="foobar"> 
    20             <h3><__trans phrase="[_1] Category-Monthly Archives" params="<$mt:ArchiveTitle$>"></h3> 
    21             <ul> 
    22             <mt:if name="category_monthly_archive"> 
    23                 <li><strong><a href="<$mt:CategoryArchiveLink$>"><__trans phrase='main "[_1]" category archive' params="<$mt:CategoryLabel$>"></a></strong></li> 
    24             </mt:if> 
    25             <mt:ArchiveList archive_type="Category-Monthly"> 
    26                 <li><a href="<$mt:ArchiveLink$>"><$mt:ArchiveTitle$></a></li> 
    27             </mt:ArchiveList> 
    28             </ul> 
    29         </mt:setvarblock> 
     17        <h3><__trans phrase="[_1] Category-Monthly Archives" params="<$mt:ArchiveTitle$>"></h3> 
     18        <ul> 
     19        <mt:ArchiveList archive_type="Category-Monthly"> 
     20            <li><a href="<$mt:ArchiveLink$>"><$mt:ArchiveTitle$></a></li> 
     21        </mt:ArchiveList> 
     22        </ul> 
    3023    </mt:If> 
    3124 
  • trunk/Vanilla/templates/vanilla+search+tags/entry.mtml

    r924 r929  
    1414        <h3>Tags</h3> 
    1515        <ul> 
    16             <mt:EntryTags> 
    17             <li><a href="javascript:void(0)" onclick="location.href='<$mt:TagSearchLink encode_js="1"$>';return false;" rel="tag"><$mt:TagName$></a></li> 
    18             </mt:EntryTags> 
    19         </ul> 
    20         <ul> 
    21             <mt:EntryTags> 
    22             <li><a href="<$MTTagSearchLink$>&amp;IncludeBlogs=<$MTBlogID$>" rel="tag"><$MTTagName$></a></li> 
    23             </mt:EntryTags> 
     16        <mt:EntryTags> 
     17            <li><a href="<$MTTagSearchLink$>&amp;IncludeBlogs=<$MTBlogID$>" rel="tag nofollow"><$MTTagName$></a></li> 
     18        </mt:EntryTags> 
    2419        </ul> 
    2520    </mt:If> 
     21 
    2622</mt:IncludeBlock>