Problem With Datestamp Not Found in Tutorials - SOLVED

Nov 12, 2007 23:37

Let me say first off that I'm brand new to S2 and this theme layer thing has got me pulling my hair out. What was totally easy for me to do in S1 had become incredibly complicated. I've managed to piece together my layout except for one thing that's really bugging me. In my old layout I got my time and date stamp to display as just mm.dd.yy (like 02.24.07). Now I just can't make that happen. Additionally, I'm trying to switch the date to below the subject line, and I noticed there was a tutorial for it, but apparently it links to a different tutorial for a different thing. I've tried using the various tutorials posted here, but nothing would compile for me. I'm at a loss here folks, anyone able to help?

Theme Layer:
layerinfo "type" = "theme";
layerinfo "name" = "Heroes West Layout";

function print_entry(Page p, Entry e, Color bgcolor, Color fgcolor)
{
$e->print_linkbar();

# Userpic

var string userpic = "";
if ($*show_entry_userpic)
{
if ($p.view == "friends")
{
if (defined $e.userpic)
{
$userpic = $userpic + """$e.poster.name if ($e.poster.username != $e.journal.username)
{
$userpic = $userpic + " in $e.journal.name";
}
$userpic = $userpic + "\">";
}
}
elseif ($p.journal_type == "C" and $p.view == "recent")
{
if (defined $e.userpic)
{
$userpic = $userpic + """$e.poster.name""";
}
}
else
{
if (defined $e.userpic)
{
$userpic = $userpic + """
$e.poster.name
""";
}
}
}
print """

""";
if (($p.view == "recent" and $p.journal_type != "C" ) or $p.view == "entry" or $p.view == "day")
{
print """$userpic""";
}
else
{
if ($p.view == "recent" and $p.journal_type == "C" )
{
"""
""";
}
else
{
"""
""";
}
print """$userpic""";

# Poster

if ($p.view == "friends")
{
var UserLite linkto;
$linkto = $e.poster;
#print "$e.poster.username";
"""
base_url() + "\">";
"$linkto.username
";
}
elseif ($p.journal_type == "C" and $p.view == "recent")
{
var UserLite linkto;
$linkto = $e.poster;
#print "$e.poster.username";
"""
base_url() + "\">";
"$linkto.username
";
}
if ($p.view == "friends" and $e.poster.username != $e.journal.username)
{
var UserLite linkto;
$linkto = $e.journal;
"""
[base_url() + "\">";
"$linkto.username
]";
}
if ($p.view == "recent" and $p.journal_type == "C")
{
print "
";
}
if ($p.view != "recent" and $p.view != "entry" and $p.view != "day")
{
print """
""";
}
}

# Date, time, subject

set lang_fmt_date_long = "%%ddd%% . %%mm%% . %%yy%%";

"""
""";
if ($e.security != "")
{
$e.security_icon->print();
}
"""
$e.subject


""";

"""

$e.text """;

# Currents

var string currents ="";
$e->print_metadata();

# Comments

"""

""";
var Link edit;
var Link mem;
if ($p.view != "entry" or $p.view != "reply")
{
$edit = $e->get_link("edit_entry");
$mem = $e->get_link("mem_add");

if (defined $edit )
{
print """$*text_edit | """;
}

print """$*text_memories""";

if ($p.view != "entry" or $p.view != "reply")
{
$e.comments->print();
}
elseif ($e.comments.enabled)
{
$e.comments->print_postlink();
}
else
{
" ";
}
"""





""";
}
}

function CommentInfo::print() {
if (not $.enabled) { return; }
if ($.count > 0 or $.screened) {
print " | ";
$this->print_readlink();
}
print """ | """;
$this->print_postlink();
}

date format, solved

Read comments 5
Previous post Next post
Up