Changeset 1892

Show
Ignore:
Timestamp:
04/14/08 19:29:44 (15 months ago)
Author:
bchoate
Message:

By default, publish author archives into an 'author' path. bugid:75536

Location:
branches/release-34/lib/MT/ArchiveType
Files:
4 modified

Legend:

Unmodified
Added
Removed
  • branches/release-34/lib/MT/ArchiveType/Author.pm

    r1741 r1892  
    2121    return [ 
    2222        { 
    23             label    => 'author-display-name/index.html', 
    24             template => '%-a/%f', 
     23            label    => 'author/author-display-name/index.html', 
     24            template => 'author/%-a/%f', 
    2525            default  => 1 
    2626        }, 
    2727        { 
    28             label    => 'author_display_name/index.html', 
    29             template => '%a/%f' 
     28            label    => 'author/author_display_name/index.html', 
     29            template => 'author/%a/%f' 
    3030        }, 
    3131    ]; 
  • branches/release-34/lib/MT/ArchiveType/AuthorMonthly.pm

    r1741 r1892  
    2222    return [ 
    2323        { 
    24             label    => 'author-display-name/yyyy/mm/index.html', 
    25             template => '%-a/%y/%m/%f', 
     24            label    => 'author/author-display-name/yyyy/mm/index.html', 
     25            template => 'author/%-a/%y/%m/%f', 
    2626            default  => 1 
    2727        }, 
    2828        { 
    29             label    => 'author_display_name/yyyy/mm/index.html', 
    30             template => '%a/%y/%m/%f' 
     29            label    => 'author/author_display_name/yyyy/mm/index.html', 
     30            template => 'author/%a/%y/%m/%f' 
    3131        }, 
    3232    ]; 
  • branches/release-34/lib/MT/ArchiveType/AuthorWeekly.pm

    r1741 r1892  
    2222    return [ 
    2323        { 
    24             label => 'author-display-name/yyyy/mm/day-week/index.html', 
    25             template => '%-a/%y/%m/%d-week/%f', 
     24            label => 'author/author-display-name/yyyy/mm/day-week/index.html', 
     25            template => 'author/%-a/%y/%m/%d-week/%f', 
    2626            default  => 1 
    2727        }, 
    2828        { 
    29             label => 'author_display_name/yyyy/mm/day-week/index.html', 
    30             template => '%a/%y/%m/%d-week/%f' 
     29            label => 'author/author_display_name/yyyy/mm/day-week/index.html', 
     30            template => 'author/%a/%y/%m/%d-week/%f' 
    3131        }, 
    3232    ]; 
  • branches/release-34/lib/MT/ArchiveType/AuthorYearly.pm

    r1741 r1892  
    2222    return [ 
    2323        { 
    24             label    => 'author-display-name/yyyy/index.html', 
     24            label    => 'author/author-display-name/yyyy/index.html', 
    2525            template => '%-a/%y/%f', 
    2626            default  => 1 
    2727        }, 
    2828        { 
    29             label    => 'author_display_name/yyyy/index.html', 
     29            label    => 'author/author_display_name/yyyy/index.html', 
    3030            template => '%a/%y/%f' 
    3131        },