[dw-nonfree] Base layouts category for styles
[commit: http://hg.dwscoalition.org/dw-nonfree/rev/68f656194baa]
http://bugs.dwscoalition.org/show_bug.cgi?id=1767
Show one of each layout type.
Patch by afuna.
Files modified:
http://bugs.dwscoalition.org/show_bug.cgi?id=1767
Show one of each layout type.
Patch by afuna.
Files modified:
- cgi-bin/LJ/S2Theme/colorside_local.pm
- cgi-bin/LJ/S2Theme/modish_local.pm
- cgi-bin/LJ/S2Theme/sundaymorning.pm
- cgi-bin/LJ/S2Theme/transmogrified.pm
-------------------------------------------------------------------------------- diff -r 7a777c2fed1e -r 68f656194baa cgi-bin/LJ/S2Theme/colorside_local.pm --- a/cgi-bin/LJ/S2Theme/colorside_local.pm Tue Sep 08 00:44:04 2009 +0800 +++ b/cgi-bin/LJ/S2Theme/colorside_local.pm Thu Sep 10 14:47:26 2009 +0000 @@ -12,7 +12,7 @@ sub cats { qw( featured ) } package LJ::S2Theme::colorside::nadeshiko; use base qw( LJ::S2Theme::colorside ); -sub cats { qw() } +sub cats { qw( base ) } package LJ::S2Theme::colorside::wintergreen; use base qw( LJ::S2Theme::colorside ); diff -r 7a777c2fed1e -r 68f656194baa cgi-bin/LJ/S2Theme/modish_local.pm --- a/cgi-bin/LJ/S2Theme/modish_local.pm Tue Sep 08 00:44:04 2009 +0800 +++ b/cgi-bin/LJ/S2Theme/modish_local.pm Thu Sep 10 14:47:26 2009 +0000 @@ -4,7 +4,7 @@ sub cats { qw( featured ) } package LJ::S2Theme::modish::scarlet; use base qw( LJ::S2Theme::modish ); -sub cats { qw() } +sub cats { qw( base ) } package LJ::S2Theme::modish::teal; use base qw( LJ::S2Theme::modish ); diff -r 7a777c2fed1e -r 68f656194baa cgi-bin/LJ/S2Theme/sundaymorning.pm --- a/cgi-bin/LJ/S2Theme/sundaymorning.pm Tue Sep 08 00:44:04 2009 +0800 +++ b/cgi-bin/LJ/S2Theme/sundaymorning.pm Thu Sep 10 14:47:26 2009 +0000 @@ -9,7 +9,7 @@ sub designer { "Calla" } package LJ::S2Theme::sundaymorning::greensquiggle; use base qw( LJ::S2Theme::sundaymorning ); -sub cats { qw() } +sub cats { qw( base ) } package LJ::S2Theme::sundaymorning::greenswirls; use base qw( LJ::S2Theme::sundaymorning ); diff -r 7a777c2fed1e -r 68f656194baa cgi-bin/LJ/S2Theme/transmogrified.pm --- a/cgi-bin/LJ/S2Theme/transmogrified.pm Tue Sep 08 00:44:04 2009 +0800 +++ b/cgi-bin/LJ/S2Theme/transmogrified.pm Thu Sep 10 14:47:26 2009 +0000 @@ -78,7 +78,8 @@ sub navigation_props { } package LJ::S2Theme::transmogrified::basic; -sub cats { qw() } +use base qw( LJ::S2Theme::transmogrified ); +sub cats { qw( base ) } package LJ::S2Theme::transmogrified::blackorwhite; use base qw( LJ::S2Theme::transmogrified ); --------------------------------------------------------------------------------