[dw-nonfree] S2 needs a layout credit module
[commit: http://hg.dwscoalition.org/dw-nonfree/rev/5aa1e1c71f14]
http://bugs.dwscoalition.org/show_bug.cgi?id=1412
Add layout credit module for crediting layout authors.
Patch by
afuna.
Files modified:
http://bugs.dwscoalition.org/show_bug.cgi?id=1412
Add layout credit module for crediting layout authors.
Patch by
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
Files modified:
- bin/upgrading/s2layers/transmogrified/layout.s2
-------------------------------------------------------------------------------- diff -r 73477e0d3b4e -r 5aa1e1c71f14 bin/upgrading/s2layers/transmogrified/layout.s2 --- a/bin/upgrading/s2layers/transmogrified/layout.s2 Mon Jul 27 04:03:59 2009 +0000 +++ b/bin/upgrading/s2layers/transmogrified/layout.s2 Sat Aug 08 18:20:02 2009 +0000 @@ -6,6 +6,8 @@ layerinfo des = "Transmogrified, a style layerinfo des = "Transmogrified, a style you can change easily"; layerinfo source_viewable = 1; layerinfo is_public = 1; + +set layout_authors = [ { "name" => "Yvonne" } ]; set entry_management_links = "text"; set comment_management_links = "text"; @@ -39,6 +41,7 @@ propgroup modules { property use module_time_group; property use module_poweredby_group; property use module_customtext_group; + property use module_credit_group; } set module_layout_sections = "none|(none)|one|Header|two|Sidebar|three|Footer"; @@ -52,6 +55,7 @@ set module_poweredby_section = "three"; set module_poweredby_section = "three"; set module_time_section = "none"; set module_customtext_section = "two"; +set module_credit_section = "two"; propgroup text { property use text_view_recent; @@ -520,6 +524,15 @@ function print_stylesheet () { .module-calendar table { margin-left: auto; margin-right: auto; + } + .module-credit dt, .module-credit dd { + display: inline; + margin: 0; + padding: 0; + } + .module-credit dt { + font-weight: bold; + margin-right: 0.5em; } .entry, .comment, .text_noentries_day { --------------------------------------------------------------------------------