init
This commit is contained in:
11
livejournal/bin/upgrading/s2layers/punquin/en.s2
Executable file
11
livejournal/bin/upgrading/s2layers/punquin/en.s2
Executable file
@@ -0,0 +1,11 @@
|
||||
# -*-s2-*-
|
||||
|
||||
layerinfo type = "i18n";
|
||||
layerinfo name = "English";
|
||||
layerinfo redist_uniq = "punquin/en";
|
||||
|
||||
set text_meta_music = "music";
|
||||
set text_meta_mood = "mood";
|
||||
|
||||
set text_post_comment = "Comment on this";
|
||||
set text_post_comment_friends = "Comment on this";
|
||||
699
livejournal/bin/upgrading/s2layers/punquin/layout.s2
Executable file
699
livejournal/bin/upgrading/s2layers/punquin/layout.s2
Executable file
@@ -0,0 +1,699 @@
|
||||
# -*-s2-*-
|
||||
|
||||
layerinfo type = "layout";
|
||||
layerinfo name = "Punquin Elegant";
|
||||
layerinfo redist_uniq = "punquin/layout";
|
||||
layerinfo previews = "punquin/punquin.jpg";
|
||||
|
||||
# Colors
|
||||
propgroup colors {
|
||||
property Color body_bgcolor {
|
||||
des = "Page background color";
|
||||
s1color = "stronger_accent";
|
||||
}
|
||||
property Color main_bgcolor {
|
||||
des = "Background of text areas";
|
||||
s1color = "page_back";
|
||||
}
|
||||
property Color main_fgcolor {
|
||||
des = "Text color";
|
||||
s1color = "page_text";
|
||||
}
|
||||
property Color subject_color {
|
||||
des = "Color of entry subjects";
|
||||
s1color = "page_text_em";
|
||||
}
|
||||
property Color title_color {
|
||||
des = "Color of headers and titles";
|
||||
s1color = "page_text_title";
|
||||
}
|
||||
property Color border_color {
|
||||
des = "Color of borders";
|
||||
s1color = "weak_back";
|
||||
}
|
||||
property Color link_color {
|
||||
des = "Link color";
|
||||
s1color = "page_link";
|
||||
}
|
||||
property Color vlink_color {
|
||||
des = "Visited link color";
|
||||
s1color = "page_vlink";
|
||||
}
|
||||
property Color alink_color {
|
||||
des = "Active link color";
|
||||
s1color = "page_alink";
|
||||
}
|
||||
property Color comment_bar_one_bgcolor {
|
||||
des = "Alternating background color for comment bars (one)";
|
||||
}
|
||||
property Color comment_bar_two_fgcolor {
|
||||
des = "Text color on alternating comment bars (one)";
|
||||
}
|
||||
property Color comment_bar_two_bgcolor {
|
||||
des = "Alternating background color for comment bars (two)";
|
||||
}
|
||||
property Color comment_bar_one_fgcolor {
|
||||
des = "Text color on alternating comment bars (two)";
|
||||
}
|
||||
property Color comment_bar_screened_bgcolor {
|
||||
des = "Background bar color for screened comments";
|
||||
}
|
||||
property Color comment_bar_screened_fgcolor {
|
||||
des = "Text color on background bar for screened comments";
|
||||
}
|
||||
}
|
||||
set body_bgcolor = "#6666cc";
|
||||
set main_bgcolor = "#ffffff";
|
||||
set main_fgcolor = "#000000";
|
||||
set subject_color = "#c00000";
|
||||
set title_color = "#8b1a1a";
|
||||
set border_color = "#eeeeff";
|
||||
set link_color = "#000050";
|
||||
set vlink_color = "#500050";
|
||||
set alink_color = "#ff00c0";
|
||||
set comment_bar_one_bgcolor = "#c0c0ff";
|
||||
set comment_bar_one_fgcolor = "#000000";
|
||||
set comment_bar_two_bgcolor = "#eeeeff";
|
||||
set comment_bar_two_fgcolor = "#000000";
|
||||
set comment_bar_screened_bgcolor = "#dddddd";
|
||||
set comment_bar_screened_fgcolor = "#000000";
|
||||
|
||||
propgroup presentation {
|
||||
property bool show_recent_userpic {
|
||||
des = "Show the userpic on the recent entries page?";
|
||||
}
|
||||
property string sidebar_position {
|
||||
des = "Position of the sidebar relative to the main content";
|
||||
values = "left|Left|right|Right";
|
||||
}
|
||||
property use font_base;
|
||||
property use font_fallback;
|
||||
property use page_recent_items;
|
||||
property use page_friends_items;
|
||||
property use use_shared_pic;
|
||||
property use view_entry_disabled;
|
||||
property bool show_entrynav_icons {
|
||||
des = "Toggle to show the next, memory, edit, etc icons on the entry view page";
|
||||
}
|
||||
property string page_background_image {
|
||||
des = "URL to an image to be used for the page background";
|
||||
}
|
||||
property use linklist_support;
|
||||
property use external_stylesheet;
|
||||
}
|
||||
set font_base = "Verdana, Arial, Helvetica";
|
||||
set font_fallback = "sans-serif";
|
||||
set show_recent_userpic = false;
|
||||
set sidebar_position = "left";
|
||||
set page_recent_items = 20;
|
||||
set page_friends_items = 20;
|
||||
set view_entry_disabled = false;
|
||||
set show_entrynav_icons = true;
|
||||
set page_background_image = "";
|
||||
set linklist_support = false;
|
||||
|
||||
propgroup text {
|
||||
property string text_gotop {
|
||||
des = "Link text to 'top of the page'";
|
||||
noui = 1;
|
||||
}
|
||||
property use text_post_comment;
|
||||
property use text_read_comments;
|
||||
property use text_post_comment_friends;
|
||||
property use text_read_comments_friends;
|
||||
property use text_website_default_name;
|
||||
}
|
||||
set text_gotop = "Go to Top";
|
||||
set tags_aware = true;
|
||||
|
||||
function print_stylesheet ()
|
||||
{
|
||||
var string font = "$*font_base, $*font_fallback";
|
||||
print clean_url($*page_background_image) != "" ? "body { background-image: url($*page_background_image); }" : "";
|
||||
print """
|
||||
body {
|
||||
background-color: $*body_bgcolor;
|
||||
color: $*main_fgcolor;
|
||||
font: normal normal 10pt $font;
|
||||
}
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: $*link_color;
|
||||
background: transparent;
|
||||
font: normal normal 10pt $font;
|
||||
}
|
||||
a:visited {
|
||||
color: $*vlink_color;
|
||||
background: transparent;
|
||||
}
|
||||
a:active {
|
||||
color: $*alink_color;
|
||||
background: transparent;
|
||||
}
|
||||
#title {
|
||||
font: normal bold 10pt $font;
|
||||
color: $*title_color;
|
||||
text-align: center;
|
||||
}
|
||||
.date {
|
||||
font: normal bold 12pt $font;
|
||||
color: $*title_color;
|
||||
text-align: right;
|
||||
}
|
||||
.comments {
|
||||
font: normal normal 8pt $font;
|
||||
}
|
||||
hr.separator {
|
||||
color: $*border_color;
|
||||
}
|
||||
.siteplug {
|
||||
font: normal normal 8pt $font;
|
||||
}
|
||||
#yearheader {
|
||||
text-align: right;
|
||||
color: $*title_color;
|
||||
font: normal bold 12pt $font;
|
||||
}
|
||||
th.monthheader {
|
||||
color: $*title_color;
|
||||
}
|
||||
th.daysheader {
|
||||
color: $*subject_color;
|
||||
}
|
||||
|
||||
/* Tables. Fun. */
|
||||
|
||||
table#main {
|
||||
border: solid 0px $*body_bgcolor;
|
||||
}
|
||||
table.standard {
|
||||
border: solid 5px $*border_color;
|
||||
background-color: $*main_bgcolor;
|
||||
color: $*main_fgcolor;
|
||||
font: normal normal 10pt $font;
|
||||
}
|
||||
table.standard>td {
|
||||
background-color: $*main_bgcolor;
|
||||
color: $*main_fgcolor;
|
||||
}
|
||||
table.standard td {
|
||||
font: normal normal 10pt $font;
|
||||
}
|
||||
""";
|
||||
}
|
||||
|
||||
|
||||
function Page::lay_sidebar_navigation () { }
|
||||
|
||||
function print_sidebar(Page p) {
|
||||
var string title = $p->title();
|
||||
var string userpic;
|
||||
var Image up_img = $p.journal.default_pic;
|
||||
if (defined $up_img) {
|
||||
$userpic = """<p align="center"><img border="0" src="$up_img.url" height="$up_img.height" width="$up_img.width" alt="" /></p>""";
|
||||
}
|
||||
|
||||
var string website_name = $p.journal.website_name ? $p.journal.website_name : $*text_website_default_name;
|
||||
var string website;
|
||||
if ($p.journal.website_url != "") {
|
||||
$website = """> <a href="$p.journal.website_url">$website_name</a><br />""";
|
||||
}
|
||||
|
||||
var string links;
|
||||
foreach var string v ($p.views_order) {
|
||||
$links = "$links> " + ($p.view == $v ?
|
||||
lang_viewname($v) :
|
||||
"<a href='$p.view_url{$v}'>"+lang_viewname($v)+"</a>") + "<br />\n";
|
||||
}
|
||||
|
||||
# Table Wrapper
|
||||
"<!-- Begin Main Sidebar -->\n<td valign='top' align='$*sidebar_position'>";
|
||||
"<table width='150' class='standard' cellpadding='5' cellspacing='0'>\n";
|
||||
"<tr valign='top'><td align='left'>";
|
||||
|
||||
# Title
|
||||
"<div style='text-align:center'><span style='color: $*title_color'><strong>$title</strong></span></div>\n";
|
||||
|
||||
# Links
|
||||
"<p>$links\n$website\n";
|
||||
$p->lay_sidebar_navigation();
|
||||
|
||||
# Userpic
|
||||
"</p>"; if($userpic != "") { "<div style='text-align:center'>$userpic</div>"; }
|
||||
|
||||
# Link List
|
||||
if (size $p.linklist > 0 and $*linklist_support) {
|
||||
if (not $p.linklist[0].is_heading) {
|
||||
"<b>Links</b><br />";
|
||||
}
|
||||
$p->print_linklist();
|
||||
}
|
||||
|
||||
# End Table
|
||||
"</td></tr></table>\n<!-- End Main Sidebar -->";
|
||||
}
|
||||
|
||||
function print_gotop (Page p)
|
||||
{
|
||||
"<td valign='bottom' align='$*sidebar_position'>\n<!-- Begin Small Sidebar -->\n";
|
||||
"<table width='150' class='standard' cellpadding='5' cellspacing='0'>\n";
|
||||
"<tr valign='top'><td align='left'>\n";
|
||||
$p->lay_sidebar_navigation();
|
||||
"<br />> <a href='#top'>$*text_gotop</a><br>\n</td></tr></table>\n<!-- End Small Sidebar -->";
|
||||
}
|
||||
|
||||
function Page::print ()
|
||||
{
|
||||
var string title = $this->title();
|
||||
var string main_position = $*sidebar_position == "left" ? "right" : "left";
|
||||
|
||||
# Head
|
||||
println "<html><head>";
|
||||
|
||||
if ($*external_stylesheet) {
|
||||
println """<link rel="stylesheet" href="$.stylesheet_url" type="text/css" />""";
|
||||
} else {
|
||||
println """<style type="text/css">"""; print_stylesheet(); "</style>";
|
||||
}
|
||||
$this->print_head();
|
||||
|
||||
"<title>$title</title>\n</head>\n";
|
||||
|
||||
# Body
|
||||
"<body>\n<a name='top'></a><div align='center'>\n";
|
||||
|
||||
# Table wrapper
|
||||
"<table id='main' cellpadding='5' cellspacing='0' width='90%'>\n<tr>";
|
||||
|
||||
if ($*sidebar_position == "left") { print_sidebar($this); }
|
||||
|
||||
# Main content
|
||||
"<td valign='top' align='$main_position' rowspan='2'>\n<!-- Begin Main -->\n";
|
||||
"<table class='standard' width='100%' height='90%' cellpadding='5' cellspacing='0'><tr valign='top'><td>\n";
|
||||
$this->print_body();
|
||||
"</td></tr></table>\n<!-- End Main -->\n</td>";
|
||||
|
||||
if ($*sidebar_position == "right") { print_sidebar($this); }
|
||||
|
||||
# Go to top
|
||||
"</tr><tr>";
|
||||
print_gotop($this);
|
||||
"</tr><tr>";
|
||||
|
||||
# Plug the site!
|
||||
"<td colspan='2' align='$main_position'>\n";
|
||||
"<a href='$*SITEROOT/'>$*SITENAME</a></td>\n";
|
||||
|
||||
"</tr></table></div></body></html>";
|
||||
}
|
||||
|
||||
function print_entry (Page p, Entry e, Color bgcolor, Color fgcolor, bool hide_text)
|
||||
{
|
||||
var string time = $e.time->time_format();
|
||||
if ($e.new_day or $p.view == "entry") {
|
||||
"<p class='date'>"; print $e.time->date_format("%%month%% %%dayord%%, %%yyyy%%"); "</p>";
|
||||
"<hr class='separator' />";
|
||||
}
|
||||
|
||||
if ($p.view == "entry" and $*show_entrynav_icons)
|
||||
{
|
||||
print "<div style='text-align: center'>";
|
||||
$e->print_linkbar();
|
||||
print "</div>";
|
||||
}
|
||||
|
||||
"<table border='0' cellpadding='2' cellspacing='0'><tr>";
|
||||
|
||||
if ($p.view == "friends" or
|
||||
$e.poster.username != $e.journal.username or
|
||||
$*show_recent_userpic == true)
|
||||
{
|
||||
# Lots of muddled logic. Yay.
|
||||
|
||||
"""<td valign=top align="middle" style="background-color: $bgcolor" width="100">""";
|
||||
if ($p.view == "friends") {
|
||||
"""<a href='""" + $e.journal->base_url() + """/' style="color: $fgcolor; font-weight: bold">$e.journal.username</a><br />""";
|
||||
}
|
||||
if ($e.poster.username != $e.journal.username) {
|
||||
if ($p.view == "friends") {
|
||||
"""[<a href='""" + $e.poster->base_url() + """/' style="color: $fgcolor">$e.poster.username</a>]<br />""";
|
||||
} else {
|
||||
"""<a href='""" + $e.poster->base_url() + """/' style="color: $fgcolor; font-weight: bold">$e.poster.username</a><br />""";
|
||||
}
|
||||
}
|
||||
if (defined $e.userpic) {
|
||||
if (($*show_recent_userpic == false) and
|
||||
($p.view != "friends") and
|
||||
($p.journal_type != "C") ) { }
|
||||
else { """<img border="0" src="$e.userpic.url" width="$e.userpic.width" height="$e.userpic.height" alt="" />""";
|
||||
}
|
||||
}
|
||||
"</td>";
|
||||
}
|
||||
"<td valign='top'><strong>$time";
|
||||
if ($e.subject) { " - <span style='color: $*subject_color'>$e.subject</span>"; }
|
||||
|
||||
if ($e.security) {
|
||||
" "; $e.security_icon->print();
|
||||
}
|
||||
"</strong><br />";
|
||||
if (not $hide_text) {
|
||||
print $e.text; "<br />";
|
||||
if (size $e.metadata) {
|
||||
foreach var string k ($e.metadata) {
|
||||
var string key = $k;
|
||||
var string val = $e.metadata{$k};
|
||||
if ($k == "mood") {
|
||||
$key = $*text_meta_mood;
|
||||
} elseif ( $k == "music" ) {
|
||||
$key = $*text_meta_music;
|
||||
}
|
||||
if ($k == "mood" and defined $e.mood_icon) {
|
||||
var Image i = $e.mood_icon;
|
||||
$val = "<img src='$i.url' width='$i.width' height='$i.height' align='absmiddle' alt='[mood icon]' /> $val";
|
||||
}
|
||||
"<strong>$key:</strong> $val<br />";
|
||||
}
|
||||
}
|
||||
if ($e.tags) {
|
||||
var int tcount = 0;
|
||||
"<div class='ljtags'><strong>Tags:</strong> ";
|
||||
foreach var Tag t ($e.tags) {
|
||||
"""<a rel="tag" href="$t.url">$t.name</a>""";
|
||||
$tcount++;
|
||||
if ($tcount != size $e.tags) { ", "; }
|
||||
}
|
||||
"</div>";
|
||||
}
|
||||
}
|
||||
"</td></tr></table>";
|
||||
$e.comments->print();
|
||||
}
|
||||
|
||||
function Page::print_entry (Entry e)
|
||||
{
|
||||
print_entry($this, $e, null Color, null Color, false);
|
||||
}
|
||||
|
||||
function FriendsPage::print_entry (Entry e) {
|
||||
var Friend f = $.friends{$e.journal.username};
|
||||
print_entry($this, $e, $f.bgcolor, $f.fgcolor, false);
|
||||
}
|
||||
|
||||
function RecentPage::print_body {
|
||||
foreach var Entry e ($.entries) {
|
||||
$this->print_entry($e);
|
||||
}
|
||||
}
|
||||
|
||||
function FriendsPage::print_body {
|
||||
foreach var Entry e ($.entries) {
|
||||
$this->print_entry($e);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
function RecentPage::lay_sidebar_navigation () {
|
||||
var int total = size $.entries;
|
||||
var string nav = "";
|
||||
if ($.nav.backward_url != "") {
|
||||
$nav = """> <a href="$.nav.backward_url">previous $total entries</a>""";
|
||||
}
|
||||
if ($.nav.forward_url != "" and $.nav.backward_url != "") {
|
||||
$nav = "$nav<br />";
|
||||
}
|
||||
if ($.nav.forward_url != "") {
|
||||
$nav = """${nav}> <a href="$.nav.forward_url">next $total entries</a>""";
|
||||
}
|
||||
print $nav;
|
||||
}
|
||||
|
||||
function CommentInfo::print ()
|
||||
{
|
||||
if (not $.enabled) {
|
||||
"<p align='right' class='comments'> </p>";
|
||||
return;
|
||||
}
|
||||
"<p align='right' class='comments'>(";
|
||||
if ($.count > 0 or $.screened) {
|
||||
$this->print_readlink();
|
||||
" | ";
|
||||
}
|
||||
$this->print_postlink();
|
||||
")</p>";
|
||||
}
|
||||
|
||||
function YearPage::print_body {
|
||||
"<p id='yearheader'>$.year</p>\n";
|
||||
foreach var YearMonth m ($.months) {
|
||||
$this->print_month($m);
|
||||
}
|
||||
}
|
||||
|
||||
function YearPage::print_year_links ()
|
||||
{
|
||||
foreach var YearYear y ($.years) {
|
||||
if ($y.displayed) {
|
||||
"> $y.year<br />";
|
||||
} else {
|
||||
"> <a href=\"$y.url\">$y.year</a><br />";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function YearPage::lay_sidebar_navigation ()
|
||||
{
|
||||
$this->print_year_links();
|
||||
}
|
||||
|
||||
function YearPage::print_month(YearMonth m)
|
||||
{
|
||||
if (not $m.has_entries) { return; }
|
||||
# Table Wrapper
|
||||
"<center><p><table border='1' cellpadding='4' width='80%'>\n";
|
||||
|
||||
# Month Header
|
||||
"<tr align='center'><th colspan='7' class='monthheader'>\n";
|
||||
print $m->month_format();
|
||||
"</th></tr>\n";
|
||||
|
||||
# Weekdays Header
|
||||
"<tr align='center'>\n";
|
||||
foreach var int d (weekdays()) {
|
||||
"<th class='daysheader'>"+$*lang_dayname_short[$d]+"</th>\n";
|
||||
}
|
||||
"</tr>\n";
|
||||
|
||||
# Weeks
|
||||
foreach var YearWeek w ($m.weeks) {
|
||||
$w->print();
|
||||
}
|
||||
|
||||
# Footer
|
||||
"<tr><td colspan='7'><div style='text-align: center'><a href='$m.url'>view subjects</a></div></td></tr>\n";
|
||||
|
||||
# End Table
|
||||
"</table></p></center>\n";
|
||||
}
|
||||
|
||||
function YearWeek::print () {
|
||||
"<tr>";
|
||||
if ($.pre_empty) { "<td colspan='$.pre_empty'> </td>"; }
|
||||
foreach var YearDay d ($.days) {
|
||||
"<td valign='top'><strong>$d.day</strong><div style='text-align: center'>";
|
||||
if ($d.num_entries) {
|
||||
"<a href='$d.url'>$d.num_entries</a>";
|
||||
} else {
|
||||
" ";
|
||||
}
|
||||
"</div></td>\n";
|
||||
}
|
||||
if ($.post_empty) { "<td colspan='$.post_empty'> </td>"; }
|
||||
"</tr>";
|
||||
}
|
||||
|
||||
function DayPage::print_body() {
|
||||
if (not $.has_entries) {
|
||||
"<table width='100%'><tr><td><p class='date'>\n";
|
||||
print $.date->date_format("%%month%% %%dayord%%, %%yyyy%%");
|
||||
"</p><hr class='separator' width='100%' /></td></tr>";
|
||||
"<tr><td><blockquote align='center'>"; print ehtml($*text_noentries_day); "</blockquote></td></tr></table>";
|
||||
} else {
|
||||
foreach var Entry e ($.entries) {
|
||||
$this->print_entry($e);
|
||||
}
|
||||
}
|
||||
|
||||
var string tprev = ehtml($*text_day_prev);
|
||||
var string tnext = ehtml($*text_day_next);
|
||||
|
||||
"<hr class='separator' width='100%' />\n";
|
||||
"<table width='100%'><tr align='middle'>\n";
|
||||
|
||||
"<td width='33%' align='left'><a href='$.prev_url'>$tprev</a></td>\n";
|
||||
"<td align='center' width='33%'>[<a href='"; print $this.journal->base_url(); "/calendar'>$*text_view_archive</a>]</td>\n";
|
||||
"<td width='33%' align='right'><a href='$.next_url'>$tnext</a></td>\n";
|
||||
|
||||
"</tr></table>";
|
||||
}
|
||||
|
||||
function EntryPage::print_body ()
|
||||
{
|
||||
set_handler("unscreen_comment_#", [
|
||||
[ "style_bgcolor", "cmtbar#", "$*comment_bar_one_bgcolor", ],
|
||||
[ "style_color", "cmtbar#", "$*comment_bar_one_fgcolor", ],
|
||||
]);
|
||||
set_handler("screen_comment_#", [
|
||||
[ "style_bgcolor", "cmtbar#", "$*comment_bar_screened_bgcolor", ],
|
||||
[ "style_color", "cmtbar#", "$*comment_bar_screened_fgcolor", ],
|
||||
]);
|
||||
|
||||
print_entry($this, $.entry, null Color, null Color, $.viewing_thread);
|
||||
if ($.entry.comments.enabled and $.comment_pages.total_subitems > 0)
|
||||
{
|
||||
$this->print_multiform_start();
|
||||
print "<h2 class='date'>Comments:</h2>";
|
||||
"<hr class='separator' />";
|
||||
if ($.comment_pages.total_subitems > 0) {
|
||||
$.comment_pages->print();
|
||||
$this->print_comments($.comments);
|
||||
}
|
||||
if ($this.multiform_on) {
|
||||
print "<h2 class='date'>Mass Action:</h2>";
|
||||
"<hr class='separator' />";
|
||||
$this->print_multiform_actionline();
|
||||
$this->print_multiform_end();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function EntryPage::print_comment (Comment c) {
|
||||
var Color background; var Color color;
|
||||
if ($c.screened) {
|
||||
$background = $*comment_bar_screened_bgcolor;
|
||||
$color = $*comment_bar_screened_fgcolor;
|
||||
} elseif ($c.depth % 2) {
|
||||
$background = $*comment_bar_one_bgcolor;
|
||||
$color = $*comment_bar_one_fgcolor;
|
||||
} else {
|
||||
$background = $*comment_bar_two_bgcolor;
|
||||
$color = $*comment_bar_two_fgcolor;
|
||||
}
|
||||
var string poster = defined $c.poster ? $c.poster->as_string() : "<i>(Anonymous)</i>";
|
||||
var string sub_icon;
|
||||
if (defined $c.subject_icon) {
|
||||
$sub_icon = $c.subject_icon->as_string();
|
||||
}
|
||||
"<a name='$c.anchor'></a><div id='cmtbar$c.talkid' style='background-color: $background; color: $color; margin-top: 10px; width: 100%'>";
|
||||
"<table cellpadding='2' cellspacing='0' summary='0' style='width: 100%'><tr valign='top'>";
|
||||
if (defined $c.userpic and $*comment_userpic_style != "off") {
|
||||
var int w = $c.userpic.width;
|
||||
var int h = $c.userpic.height;
|
||||
# WARNING: this will later be done by the system (it'll be a
|
||||
# constructional property), so don't copy this hack into your
|
||||
# layout layers or you'll be messed up later.
|
||||
if ($*comment_userpic_style == "small") {
|
||||
$w = $w / 2;
|
||||
$h = $h / 2;
|
||||
}
|
||||
print "<td style='width: 102px'><img src='$c.userpic.url' width='$w' height='$h' alt='[User Picture]' /></td>";
|
||||
}
|
||||
|
||||
"<td style='width: 100%'><table style='width: 100%'><tr>";
|
||||
|
||||
### From, date, etc
|
||||
"<td align='left' style='width: 50%'>";
|
||||
print "<table>";
|
||||
print "<tr><th align='right' style='font-size: .9em'>From:</th><td>$poster</td></tr>\n";
|
||||
print "<tr><th align='right' style='font-size: .9em'>Date:</th><td style='white-space: nowrap'>";
|
||||
print $c.time->date_format("long") + " - " + $c.time->time_format() + "</td></tr>";
|
||||
if ($c.metadata{"poster_ip"}) { print "<tr><th align='right' style='font-size: .9em'>IP Address:</th><td>(" + $c.metadata{"poster_ip"} + ")</td></tr>"; }
|
||||
"</table></td>";
|
||||
|
||||
### Gadgets
|
||||
"<td align='right' style='width: 50%'>";
|
||||
if ($this.multiform_on) {
|
||||
" <label for='ljcomsel_$c.talkid'>$*text_multiform_check</label>";
|
||||
$c->print_multiform_check();
|
||||
}
|
||||
$c->print_linkbar();
|
||||
"</td></tr>";
|
||||
|
||||
### Subject / icon
|
||||
print "<tr valign='top'><td style='width: 50%'>";
|
||||
print (defined $c.subject_icon or $c.subject != "") ? "<h3>$c.subject_icon $c.subject</h3>" : "";
|
||||
print "</td>";
|
||||
|
||||
### Permalink
|
||||
print "<td style='width: 50%' align='right'><strong>(<a href='$c.permalink_url'>Link</a>)</strong></td></tr>";
|
||||
|
||||
print "</table></td></tr></table></div>";
|
||||
print "<div style='margin-left: 5px'>$c.text</div>";
|
||||
print "<div style='margin-top: 3px; font-size: smaller'>";
|
||||
if ($c.frozen) {
|
||||
print "(Replies frozen)";
|
||||
} else {
|
||||
print "(<a href='$c.reply_url'>Reply to this</a>) ";
|
||||
}
|
||||
if ($c.parent_url != "") { "(<a href='$c.parent_url'>Parent</a>) "; }
|
||||
if ($c.thread_url != "") { "(<a href='$c.thread_url'>Thread</a>) "; }
|
||||
"</div>";
|
||||
}
|
||||
|
||||
function ReplyPage::print_body() {
|
||||
if (not $.entry.comments.enabled)
|
||||
{
|
||||
"<h2 class='date'>$*text_reply_nocomments_header</h2>";
|
||||
"<hr class='separator' />";
|
||||
"<p>$*text_reply_nocomments</p>";
|
||||
return;
|
||||
}
|
||||
"<p class='date'>"; print $.replyto.time->date_format("%%month%% %%dayord%%, %%yyyy%%"); "</p>";
|
||||
"<hr class='separator' />";
|
||||
|
||||
"<table border='0' cellpadding='2' cellspacing='0'><tr>";
|
||||
|
||||
"""<td valign=top align="middle" width="100">""";
|
||||
print defined $.replyto.poster ? $.replyto.poster->as_string() : "<i>(Anonymous)</i>";
|
||||
if (defined $.replyto.userpic) {
|
||||
print """<img border="0" src="$.replyto.userpic.url" width="$.replyto.userpic.width" height="$.replyto.userpic.height" alt="" />""";
|
||||
}
|
||||
"</td>";
|
||||
|
||||
"<td valign='top'><strong>"; print $.replyto.time->time_format();
|
||||
if ($.replyto.subject) { " - <span style='color: $*subject_color'>$.replyto.subject</span>"; }
|
||||
|
||||
"</strong><br />";
|
||||
|
||||
print $.replyto.text; "<br />";
|
||||
|
||||
"</td></tr></table>";
|
||||
"<p align='right' class='comments'><a href='$.entry.comments.read_url'>Read Comments</a></p>";
|
||||
"<h2 class='date'>Reply</h2>";
|
||||
"<hr class='separator' />";
|
||||
$.form->print();
|
||||
}
|
||||
|
||||
function print_theme_preview ()
|
||||
{
|
||||
"""
|
||||
<table width="100%" style="background-color: $*body_bgcolor; border: solid 1px #000000"><tr><td style="color:$*main_fgcolor">
|
||||
<table bgcolor="$*border_color" border="0" cellpadding="5" cellspacing="0" width="60%" align="center">
|
||||
<tr><td valign="center" align="center">
|
||||
<table width="100%" height=90% bgcolor="$*main_bgcolor" border="0" cellpadding="5" cellspacing="0">
|
||||
<tr valign="top"><td>
|
||||
<p align="right"><font color="$*title_color" face="verdana,arial,helvetica" size="3">
|
||||
<strong>December 18th, 2002</strong></font><hr noshade color="$*border_color" size="1" width="100%" />
|
||||
</p>
|
||||
<font face="verdana,arial,helvetica" size="2">
|
||||
<b>01:22 am - <font color="$*subject_color">Test</font></b><font face="verdana,arial,helvetica" size="2"><br />
|
||||
Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit.
|
||||
Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit.</font>
|
||||
<p align="right">(<a style="color: $*link_color" href="#">Read # Comments</a> | <a style="color: $*vlink_color" href="#">Leave a comment</a>)</p>
|
||||
</td></tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
</table>
|
||||
</td></tr></table>
|
||||
""";
|
||||
}
|
||||
BIN
livejournal/bin/upgrading/s2layers/punquin/punquin.jpg
Executable file
BIN
livejournal/bin/upgrading/s2layers/punquin/punquin.jpg
Executable file
Binary file not shown.
|
After Width: | Height: | Size: 12 KiB |
450
livejournal/bin/upgrading/s2layers/punquin/themes.s2
Executable file
450
livejournal/bin/upgrading/s2layers/punquin/themes.s2
Executable file
@@ -0,0 +1,450 @@
|
||||
#NEWLAYER: punquin/bw
|
||||
layerinfo type = "theme";
|
||||
layerinfo name = "Black on White";
|
||||
layerinfo redist_uniq = "punquin/bw";
|
||||
set body_bgcolor = "#333333";
|
||||
set main_bgcolor = "#ffffff";
|
||||
set main_fgcolor = "#000000";
|
||||
set subject_color = "#c00000";
|
||||
set title_color = "#336699";
|
||||
set border_color = "#dddddd";
|
||||
set link_color = "#000050";
|
||||
set vlink_color = "#500050";
|
||||
set alink_color = "#ff00c0";
|
||||
set comment_bar_one_bgcolor = "#dddddd";
|
||||
set comment_bar_one_fgcolor = "#000000";
|
||||
set comment_bar_two_bgcolor = "#aaaaaa";
|
||||
set comment_bar_two_fgcolor = "#000000";
|
||||
|
||||
#NEWLAYER: punquin/autumn
|
||||
layerinfo type = theme;
|
||||
layerinfo name = "Autumn";
|
||||
layerinfo redist_uniq = "punquin/autumn";
|
||||
layerinfo author = "pumpsnail";
|
||||
set body_bgcolor = "#660033";
|
||||
set main_bgcolor = "#990022";
|
||||
set main_fgcolor = "#ffffff";
|
||||
set subject_color = "#ffffff";
|
||||
set title_color = "#ffffff";
|
||||
set border_color = "#fcc303";
|
||||
set link_color = "#cc6600";
|
||||
set vlink_color = "#cc99cc";
|
||||
set alink_color = "#ffcc33";
|
||||
set comment_bar_one_bgcolor = "#660033";
|
||||
set comment_bar_one_fgcolor = "#ffffff";
|
||||
set comment_bar_two_bgcolor = "#993366";
|
||||
set comment_bar_two_fgcolor = "#000000";
|
||||
|
||||
#NEWLAYER: punquin/greyslate
|
||||
layerinfo type = theme;
|
||||
layerinfo name = "Grey Slate Rain";
|
||||
layerinfo redist_uniq = "punquin/greyslate";
|
||||
set body_bgcolor = "#67698f";
|
||||
set main_bgcolor = "#ffffff";
|
||||
set main_fgcolor = "#000000";
|
||||
set subject_color = "#000000";
|
||||
set title_color = "#336699";
|
||||
set border_color = "#dddddd";
|
||||
set link_color = "#8e80f8";
|
||||
set vlink_color = "#c780f8";
|
||||
set alink_color = "#f880dd";
|
||||
set comment_bar_one_bgcolor = "#dddddd";
|
||||
set comment_bar_one_fgcolor = "#000000";
|
||||
set comment_bar_two_bgcolor = "#aaaaaa";
|
||||
set comment_bar_two_fgcolor = "#000000";
|
||||
|
||||
#NEWLAYER: punquin/minimal
|
||||
layerinfo type = theme;
|
||||
layerinfo name = "Minimalist";
|
||||
layerinfo redist_uniq = "punquin/minimal";
|
||||
set body_bgcolor = "#ffffff";
|
||||
set main_bgcolor = "#ffffff";
|
||||
set main_fgcolor = "#333333";
|
||||
set subject_color = "#333333";
|
||||
set title_color = "#333333";
|
||||
set border_color = "#aaaaaa";
|
||||
set link_color = "#8e80f8";
|
||||
set vlink_color = "#c780f8";
|
||||
set alink_color = "#f880dd";
|
||||
set comment_bar_one_bgcolor = "#dddddd";
|
||||
set comment_bar_one_fgcolor = "#000000";
|
||||
set comment_bar_two_bgcolor = "#aaaaaa";
|
||||
set comment_bar_two_fgcolor = "#000000";
|
||||
|
||||
#NEWLAYER: punquin/jewel
|
||||
layerinfo type = theme;
|
||||
layerinfo name = "Jewel Toned";
|
||||
layerinfo redist_uniq = "punquin/jewel";
|
||||
set body_bgcolor = "#950875";
|
||||
set main_bgcolor = "#f3a8e2";
|
||||
set main_fgcolor = "#000000";
|
||||
set subject_color = "#c00000";
|
||||
set title_color = "#336699";
|
||||
set border_color = "#dddddd";
|
||||
set link_color = "#000050";
|
||||
set vlink_color = "#500050";
|
||||
set alink_color = "#ff00c0";
|
||||
set comment_bar_one_bgcolor = "#950875";
|
||||
set comment_bar_one_fgcolor = "#f3a8e2";
|
||||
set comment_bar_two_bgcolor = "#b70875";
|
||||
set comment_bar_two_fgcolor = "#f3a8e2";
|
||||
|
||||
#NEWLAYER: punquin/bold
|
||||
layerinfo type = theme;
|
||||
layerinfo name = "Bold";
|
||||
layerinfo redist_uniq = "punquin/bold";
|
||||
set body_bgcolor = "#2501da";
|
||||
set main_bgcolor = "#ffffff";
|
||||
set main_fgcolor = "#000000";
|
||||
set subject_color = "#c00453";
|
||||
set title_color = "#f50930";
|
||||
set border_color = "#000000";
|
||||
set link_color = "#5f5cd5";
|
||||
set vlink_color = "#2a2ab2";
|
||||
set alink_color = "#4a92eb";
|
||||
set comment_bar_one_bgcolor = "#2501da";
|
||||
set comment_bar_one_fgcolor = "#ffffff";
|
||||
set comment_bar_two_bgcolor = "#2501fc";
|
||||
set comment_bar_two_fgcolor = "#ffffff";
|
||||
|
||||
#NEWLAYER: punquin/shrinkvio
|
||||
layerinfo type = theme;
|
||||
layerinfo name = "Shrinking Violet";
|
||||
layerinfo redist_uniq = "punquin/shrinkvio";
|
||||
set body_bgcolor = "#ad22e7";
|
||||
set main_bgcolor = "#ffffff";
|
||||
set main_fgcolor = "#000000";
|
||||
set border_color = "#381a45";
|
||||
set title_color = "#5d0383";
|
||||
set subject_color = "#d9a1f1";
|
||||
set link_color = "#2e053f";
|
||||
set vlink_color = "#611627";
|
||||
set alink_color = "#ff00c0";
|
||||
set comment_bar_one_bgcolor = "#5d0383";
|
||||
set comment_bar_one_fgcolor = "#ffffff";
|
||||
set comment_bar_two_bgcolor = "#d9a1f1";
|
||||
set comment_bar_two_fgcolor = "#000000";
|
||||
|
||||
#NEWLAYER: punquin/pistmint
|
||||
layerinfo type = theme;
|
||||
layerinfo name = "Pistachio Mint";
|
||||
layerinfo redist_uniq = "punquin/pistmint";
|
||||
set body_bgcolor = "#133422";
|
||||
set main_bgcolor = "#a7c4b4";
|
||||
set main_fgcolor = "#000000";
|
||||
set border_color = "#096d36";
|
||||
set title_color = "#096d36";
|
||||
set subject_color = "#096d36";
|
||||
set link_color = "#8afabc";
|
||||
set vlink_color = "#1da65a";
|
||||
set alink_color = "#f9f5f5";
|
||||
set comment_bar_one_bgcolor = "#096d36";
|
||||
set comment_bar_one_fgcolor = "#ffffff";
|
||||
set comment_bar_two_bgcolor = "#093d36";
|
||||
set comment_bar_two_fgcolor = "#ffffff";
|
||||
|
||||
#NEWLAYER: punquin/mexicanfood
|
||||
layerinfo type = theme;
|
||||
layerinfo name = "Mexican Food";
|
||||
layerinfo redist_uniq = "punquin/mexicanfood";
|
||||
set body_bgcolor = "#ff0000";
|
||||
set main_bgcolor = "#f8ff3e";
|
||||
set main_fgcolor = "#f15601";
|
||||
set border_color = "#f50701";
|
||||
set title_color = "#bdbf3e";
|
||||
set subject_color = "#f9ff9d";
|
||||
set link_color = "#f49e08";
|
||||
set vlink_color = "#b05403";
|
||||
set alink_color = "#ff7405";
|
||||
set comment_bar_one_bgcolor = "#bdbf3e";
|
||||
set comment_bar_one_fgcolor = "#ff0000";
|
||||
set comment_bar_two_bgcolor = "#e15a18";
|
||||
set comment_bar_two_fgcolor = "#ffffff";
|
||||
|
||||
#NEWLAYER: punquin/ashfire
|
||||
layerinfo type = theme;
|
||||
layerinfo name = "Ash and Fire";
|
||||
layerinfo redist_uniq = "punquin/ashfire";
|
||||
set body_bgcolor = "#b5b5b5";
|
||||
set main_bgcolor = "#ffb6af";
|
||||
set main_fgcolor = "#000000";
|
||||
set border_color = "#d90308";
|
||||
set title_color = "#e75454";
|
||||
set subject_color = "#ff1106";
|
||||
set link_color = "#f70208";
|
||||
set vlink_color = "#b0161d";
|
||||
set alink_color = "#d70106";
|
||||
set comment_bar_one_bgcolor = "#e75454";
|
||||
set comment_bar_one_fgcolor = "#ffffff";
|
||||
set comment_bar_two_bgcolor = "#f06c88";
|
||||
set comment_bar_two_fgcolor = "#000000";
|
||||
|
||||
#NEWLAYER: punquin/desktop
|
||||
layerinfo type = theme;
|
||||
layerinfo name = "Classic Desktop";
|
||||
layerinfo redist_uniq = "punquin/desktop";
|
||||
set body_bgcolor = "#00545c";
|
||||
set main_bgcolor = "#ffffff";
|
||||
set main_fgcolor = "#000000";
|
||||
set border_color = "#000000";
|
||||
set title_color = "#ff7b05";
|
||||
set subject_color = "#ff7b05";
|
||||
set link_color = "#000050";
|
||||
set vlink_color = "#500050";
|
||||
set alink_color = "#5a76ff";
|
||||
set comment_bar_one_bgcolor = "#ff7b05";
|
||||
set comment_bar_one_fgcolor = "#ffeddd";
|
||||
set comment_bar_two_bgcolor = "#ffeddd";
|
||||
set comment_bar_two_fgcolor = "#000000";
|
||||
|
||||
#NEWLAYER: punquin/satinhandshake
|
||||
layerinfo type = theme;
|
||||
layerinfo name = "Satin Handshake";
|
||||
layerinfo redist_uniq = "punquin/satinhandshake";
|
||||
set body_bgcolor = "#480c0c";
|
||||
set main_bgcolor = "#d06464";
|
||||
set main_fgcolor = "#00001d";
|
||||
set border_color = "#000000";
|
||||
set title_color = "#aaaaaa";
|
||||
set subject_color = "#9d0404";
|
||||
set link_color = "#000050";
|
||||
set vlink_color = "#500050";
|
||||
set alink_color = "#ff00c0";
|
||||
set comment_bar_one_bgcolor = "#aaaaaa";
|
||||
set comment_bar_one_fgcolor = "#000000";
|
||||
set comment_bar_two_bgcolor = "#9d0404";
|
||||
set comment_bar_two_fgcolor = "#ffffff";
|
||||
|
||||
#NEWLAYER: punquin/deepmelodrama
|
||||
layerinfo type = theme;
|
||||
layerinfo name = "Deep MeloDrama";
|
||||
layerinfo redist_uniq = "punquin/deepmelodrama";
|
||||
set body_bgcolor = "#872d89";
|
||||
set main_bgcolor = "#719cff";
|
||||
set main_fgcolor = "#8e48b2";
|
||||
set border_color = "#8e48b2";
|
||||
set title_color = "#3794b3";
|
||||
set subject_color = "#8e48b2";
|
||||
set link_color = "#000050";
|
||||
set vlink_color = "#500050";
|
||||
set alink_color = "#dfd3ff";
|
||||
set comment_bar_one_bgcolor = "#3794b3";
|
||||
set comment_bar_one_fgcolor = "#84b8e7";
|
||||
set comment_bar_two_bgcolor = "#65b2c1";
|
||||
set comment_bar_two_fgcolor = "#f5d3ff";
|
||||
|
||||
#NEWLAYER: punquin/everwhite
|
||||
layerinfo type = theme;
|
||||
layerinfo name = "Everwhite";
|
||||
layerinfo redist_uniq = "punquin/everwhite";
|
||||
set body_bgcolor = "#ffffff";
|
||||
set main_bgcolor = "#ffffff";
|
||||
set main_fgcolor = "#000000";
|
||||
set border_color = "#000000";
|
||||
set title_color = "#ffffff";
|
||||
set subject_color = "#ff0000";
|
||||
set link_color = "#e60000";
|
||||
set vlink_color = "#c10602";
|
||||
set alink_color = "#ff0600";
|
||||
set comment_bar_one_bgcolor = "#dddddd";
|
||||
set comment_bar_one_fgcolor = "#000000";
|
||||
set comment_bar_two_bgcolor = "#aaaaaa";
|
||||
set comment_bar_two_fgcolor = "#000000";
|
||||
|
||||
#NEWLAYER: punquin/everblue
|
||||
layerinfo type = theme;
|
||||
layerinfo name = "Everblue with Greys";
|
||||
layerinfo redist_uniq = "punquin/everblue";
|
||||
set body_bgcolor = "#0f0c6d";
|
||||
set main_bgcolor = "#ffffff";
|
||||
set main_fgcolor = "#000000";
|
||||
set border_color = "#000000";
|
||||
set title_color = "#000000";
|
||||
set subject_color = "#000000";
|
||||
set link_color = "#2f00f2";
|
||||
set vlink_color = "#060667";
|
||||
set alink_color = "#6691ff";
|
||||
set comment_bar_one_bgcolor = "#000000";
|
||||
set comment_bar_one_fgcolor = "#ffffff";
|
||||
set comment_bar_two_bgcolor = "#aaaaaa";
|
||||
set comment_bar_two_fgcolor = "#000000";
|
||||
|
||||
#NEWLAYER: punquin/brownleather
|
||||
layerinfo type = theme;
|
||||
layerinfo name = "Brown Leather Coat";
|
||||
layerinfo redist_uniq = "punquin/brownleather";
|
||||
set body_bgcolor = "#d2b48c";
|
||||
set main_bgcolor = "#ffebcd";
|
||||
set main_fgcolor = "#8b4513";
|
||||
set border_color = "#000000";
|
||||
set title_color = "#d48014";
|
||||
set subject_color = "#d48014";
|
||||
set link_color = "#000050";
|
||||
set vlink_color = "#867a55";
|
||||
set alink_color = "#fffab3";
|
||||
set comment_bar_one_bgcolor = "#d48014";
|
||||
set comment_bar_one_fgcolor = "#ffffff";
|
||||
set comment_bar_two_bgcolor = "#ffe1a1";
|
||||
set comment_bar_two_fgcolor = "#000000";
|
||||
|
||||
#NEWLAYER: punquin/bruise
|
||||
layerinfo type = theme;
|
||||
layerinfo name = "Bruise";
|
||||
layerinfo redist_uniq = "punquin/bruise";
|
||||
set body_bgcolor = "#000000";
|
||||
set main_bgcolor = "#bcbcbc";
|
||||
set main_fgcolor = "#000000";
|
||||
set border_color = "#000000";
|
||||
set title_color = "#1114a0";
|
||||
set subject_color = "#1114a0";
|
||||
set link_color = "#0000cc";
|
||||
set vlink_color = "#000088";
|
||||
set alink_color = "#0000ff";
|
||||
set comment_bar_one_bgcolor = "#1114a0";
|
||||
set comment_bar_one_fgcolor = "#ffffff";
|
||||
set comment_bar_two_bgcolor = "#21c2f1";
|
||||
set comment_bar_two_fgcolor = "#0000ff";
|
||||
|
||||
#NEWLAYER: punquin/ranchhand
|
||||
layerinfo type = theme;
|
||||
layerinfo name = "Ranch Hand";
|
||||
layerinfo redist_uniq = "punquin/ranchhand";
|
||||
set body_bgcolor = "#2999c2";
|
||||
set main_bgcolor = "#cfe0ff";
|
||||
set main_fgcolor = "#000000";
|
||||
set border_color = "#060667";
|
||||
set title_color = "#54442c";
|
||||
set subject_color = "#9d995d";
|
||||
set link_color = "#000050";
|
||||
set vlink_color = "#500050";
|
||||
set alink_color = "#6a20ff";
|
||||
set comment_bar_one_bgcolor = "#54442c";
|
||||
set comment_bar_one_fgcolor = "#ffffff";
|
||||
set comment_bar_two_bgcolor = "#704400";
|
||||
set comment_bar_two_fgcolor = "#bababa";
|
||||
|
||||
#NEWLAYER: punquin/victim
|
||||
layerinfo type = theme;
|
||||
layerinfo name = "Victim";
|
||||
layerinfo redist_uniq = "punquin/victim";
|
||||
set body_bgcolor = "#2cd0ff";
|
||||
set main_bgcolor = "#505050";
|
||||
set main_fgcolor = "#ffffff";
|
||||
set border_color = "#000000";
|
||||
set title_color = "#166bac";
|
||||
set subject_color = "#26b6ff";
|
||||
set link_color = "#000050";
|
||||
set vlink_color = "#500050";
|
||||
set alink_color = "#ff00c0";
|
||||
set comment_bar_one_bgcolor = "#166bac";
|
||||
set comment_bar_one_fgcolor = "#ffffff";
|
||||
set comment_bar_two_bgcolor = "#353535";
|
||||
set comment_bar_two_fgcolor = "#ffffff";
|
||||
|
||||
#NEWLAYER: punquin/forest
|
||||
layerinfo type = theme;
|
||||
layerinfo name = "Forest";
|
||||
layerinfo redist_uniq = "punquin/forest";
|
||||
set body_bgcolor = "#778e64";
|
||||
set main_bgcolor = "#9b9ba5";
|
||||
set main_fgcolor = "#000000";
|
||||
set border_color = "#ffffff";
|
||||
set title_color = "#72784c";
|
||||
set subject_color = "#a0ac62";
|
||||
set link_color = "#3811e1";
|
||||
set vlink_color = "#310cbb";
|
||||
set alink_color = "#4e7bef";
|
||||
set comment_bar_one_bgcolor = "#72784c";
|
||||
set comment_bar_one_fgcolor = "#ffffff";
|
||||
set comment_bar_two_bgcolor = "#73777a";
|
||||
set comment_bar_two_fgcolor = "#000000";
|
||||
|
||||
#NEWLAYER: punquin/drone
|
||||
layerinfo type = theme;
|
||||
layerinfo name = "Drone";
|
||||
layerinfo redist_uniq = "punquin/drone";
|
||||
set body_bgcolor = "#395f82";
|
||||
set main_bgcolor = "#f9fcfe";
|
||||
set main_fgcolor = "#000000";
|
||||
set border_color = "#000000";
|
||||
set title_color = "#904094";
|
||||
set subject_color = "#ff93ff";
|
||||
set link_color = "#395f82";
|
||||
set vlink_color = "#395f82";
|
||||
set alink_color = "#5266ce";
|
||||
set comment_bar_one_bgcolor = "#904094";
|
||||
set comment_bar_one_fgcolor = "#ffffff";
|
||||
set comment_bar_two_bgcolor = "#eeeeff";
|
||||
set comment_bar_two_fgcolor = "#000000";
|
||||
|
||||
#NEWLAYER: punquin/lowercurtain
|
||||
layerinfo type = theme;
|
||||
layerinfo name = "Lower the Curtain";
|
||||
layerinfo redist_uniq = "punquin/lowercurtain";
|
||||
set body_bgcolor = "#000000";
|
||||
set main_bgcolor = "#6b6b6b";
|
||||
set main_fgcolor = "#ffffff";
|
||||
set border_color = "#ffffff";
|
||||
set title_color = "#363636";
|
||||
set subject_color = "#363636";
|
||||
set link_color = "#000050";
|
||||
set vlink_color = "#500050";
|
||||
set alink_color = "#3314ba";
|
||||
set comment_bar_one_bgcolor = "#363636";
|
||||
set comment_bar_one_fgcolor = "#f0f5fb";
|
||||
set comment_bar_two_bgcolor = "#c5c8ca";
|
||||
set comment_bar_two_fgcolor = "#000000";
|
||||
|
||||
#NEWLAYER: punquin/sunny
|
||||
layerinfo type = theme;
|
||||
layerinfo name = "Sunny Day";
|
||||
layerinfo redist_uniq = "punquin/sunny";
|
||||
set body_bgcolor = "#55e0f9";
|
||||
set main_bgcolor = "#e38202";
|
||||
set main_fgcolor = "#ffffff";
|
||||
set border_color = "#000000";
|
||||
set title_color = "#e38202";
|
||||
set subject_color = "#efe052";
|
||||
set link_color = "#df0d12";
|
||||
set vlink_color = "#ac1b25";
|
||||
set alink_color = "#fe3b3b";
|
||||
set comment_bar_one_bgcolor = "#e38202";
|
||||
set comment_bar_one_fgcolor = "#ffffff";
|
||||
set comment_bar_two_bgcolor = "#ffba03";
|
||||
set comment_bar_two_fgcolor = "#ffffff";
|
||||
|
||||
#NEWLAYER: punquin/valentine
|
||||
layerinfo type = theme;
|
||||
layerinfo name = "Be Mine";
|
||||
layerinfo redist_uniq = "punquin/valentine";
|
||||
set body_bgcolor = "#6f104a";
|
||||
set main_bgcolor = "#f2bce9";
|
||||
set main_fgcolor = "#000000";
|
||||
set border_color = "#ff24ab";
|
||||
set title_color = "#ff37ff";
|
||||
set subject_color = "#ae1774";
|
||||
set link_color = "#ffffff";
|
||||
set vlink_color = "#a51014";
|
||||
set alink_color = "#ed8188";
|
||||
set comment_bar_one_bgcolor = "#ff37ff";
|
||||
set comment_bar_one_fgcolor = "#ffffff";
|
||||
set comment_bar_two_bgcolor = "#df2096";
|
||||
set comment_bar_two_fgcolor = "#000000";
|
||||
|
||||
#NEWLAYER: punquin/stripes
|
||||
layerinfo type = theme;
|
||||
layerinfo name = "Stripes";
|
||||
layerinfo redist_uniq = "punquin/stripes";
|
||||
set body_bgcolor = "#ffffff";
|
||||
set main_bgcolor = "#ffffff";
|
||||
set main_fgcolor = "#000000";
|
||||
set border_color = "#ff0000";
|
||||
set title_color = "#e7212a";
|
||||
set subject_color = "#ffffff";
|
||||
set link_color = "#000050";
|
||||
set vlink_color = "#500050";
|
||||
set alink_color = "#ffafc1";
|
||||
set comment_bar_one_bgcolor = "#e7212a";
|
||||
set comment_bar_one_fgcolor = "#ffffff";
|
||||
set comment_bar_two_bgcolor = "#ffcfdc";
|
||||
set comment_bar_two_fgcolor = "#000000";
|
||||
Reference in New Issue
Block a user