afuna: Cat under a blanket. Text: "Cats are just little people with Fur and Fangs" (Default)
afuna ([personal profile] afuna) wrote in [site community profile] changelog2009-06-06 04:35 am

[dw-free] Provide an option to toggle between left and right userpic display for Transmogrified

[commit: http://hg.dwscoalition.org/dw-free/rev/1f0837f38a6a]

http://bugs.dwscoalition.org/show_bug.cgi?id=1245

Add $*userpics_position property, for general use

Patch by [personal profile] liv.

Files modified:
  • bin/upgrading/s2layers/core2.s2
--------------------------------------------------------------------------------
diff -r 72ce895d6740 -r 1f0837f38a6a bin/upgrading/s2layers/core2.s2
--- a/bin/upgrading/s2layers/core2.s2	Sat Jun 06 04:05:38 2009 +0000
+++ b/bin/upgrading/s2layers/core2.s2	Sat Jun 06 04:34:38 2009 +0000
@@ -1151,11 +1151,16 @@ property bool tags_aware {
 }
 
 property string comment_userpic_style {
-   des = "Userpic display style for comments";
-   doc = "Userpic display style for comments.  Either '' for full, 'small' for small, or 'off' for none.";
+   des = "User icon display style for comments";
+   doc = "User icon display style for comments.  Either '' for full, 'small' for small, or 'off' for none.";
    doc_flags = "[construct]";
    values = "|Full|small|Small|off|Off";
 }
+
+property string userpics_position {
+   des = "Place icons on left or right of entry";
+   values = "left|Left|right|Right";
+   }
 
 property bool linklist_support {
     des = "Display link list";
@@ -1185,6 +1190,7 @@ set use_shared_pic = false;
 set use_shared_pic = false;
 set tags_aware = true;
 set comment_userpic_style = "";
+set userpics_position = "left";
 set linklist_support = true;
 set userlite_interaction_links = "icons";
 set entry_management_links = "icons";
--------------------------------------------------------------------------------