Search found 6 matches

by rodney
Tue May 27, 2008 2:35 pm
Forum: General discussions
Topic: Is netmirror still down?
Replies: 3
Views: 2999

Netmirror seems to be working now (Tues May 27 10pm Sydney time).

I have updated the template and plugin files.

Regards
by rodney
Sun May 25, 2008 2:21 am
Forum: General discussions
Topic: Is netmirror still down?
Replies: 3
Views: 2999

Also, when I change the mirror location to s9y.org or sourceforge.net I always fetch a 0 byte xml file.
by rodney
Sun May 25, 2008 2:14 am
Forum: General discussions
Topic: Is netmirror still down?
Replies: 3
Views: 2999

Is netmirror still down?

Hi there,

I have a new serendipity installation at a hoster and after installing and using Spartacus it suddenly just stopped.

I know there was was a problem with netmirror, but I'm just wondering if it is still down/not responding?

Is there another mirror that can be used?

Any help appreciated ...
by rodney
Sun Sep 24, 2006 8:59 am
Forum: Development
Topic: Constant values through the s9y code?
Replies: 9
Views: 10266

Thanks for that reply.

Hmmm... having to manually search through all the s9y files seems like a strange way to locate const values...

I mean, if that is the case the values themselves may as well be statically coded into the template... or am I missing something about these $CONST things that ...
by rodney
Sun Sep 24, 2006 7:50 am
Forum: Development
Topic: Constant values through the s9y code?
Replies: 9
Views: 10266

Constant values through the s9y code?

Here's an example from comments.tpl...


<div class="serendipity_center">{$CONST.NO_COMMENTS}</div>


$CONST.NO_COMMENTS ???

and


{if $comment.email}
<a href="mailto:{$comment.email}">{$comment.author|@default:$CONST.ANONYMOUS}</a>
{else}
{$comment.author|@default:$CONST.ANONYMOUS}
{/if ...
by rodney
Sun Sep 24, 2006 3:27 am
Forum: Development
Topic: Constant values through the s9y code?
Replies: 9
Views: 10266

Constant values through the s9y code?

Hi all,

I'm new to Serendipity and am familiarizing myself with the codebase. First, let me say congratulations on a fine Web application - keep up the good work!

Just wondering if there is a consistent way to change the value of constants rather than simply replacing them where they appear. For ...