ConfigPage
package OddMuse;
$CookieName = 'akiw';
$SiteName = 'Auriea L';
$HomePage = 'AurieaL';
$RCName = 'About';
$KeepDays = 365;
$defaultTZ = 2;
$UploadAllowed = 1;
@UploadTypes = ('image/jpg','image/jpeg','image/gif','image/png','image/png','application/pdf', 'image/svg+xml');
#$StyleSheet = 'http://auriea.org/iphone.css';
$UserGotoBar = '
@UserGotoBarPages = ($ConfigPage, 'css', $RCName); # List of pagenames
%AdminPages = ( $InterMap, $RssExclude, $NearMap, $RCName, $ConfigPage, $StyleSheetPage );
sub GetFeeds {};
push(@MyInitVariables, &AddMyRssFeeds);
$HtmlHeaders =
'
';sub AddMyRssFeeds {
$HtmlHeaders .= $q->Link({-rel => "alternate",
-type => "application/rss+xml",
-title => "$SiteName: autobiography, list of changed pages.",
-href => "http://auriea.org/index.pl?action=rss"
})
. $q->Link({-rel => "alternate",
-type => "application/rss+xml",
-title => "$SiteName: diary, images, words.",
-href => "http://auriea.org/index.pl?action=journal;full=1;title="
. UrlEncode("Diary")});
# Per page full feed only if looking at a page
my $id = GetId();
return unless $id;
my $title = FreeToNormal($id);
my $utitle = UrlEncode($title);
$HtmlHeaders .= $q->Link({-rel => "alternate",
-type => "application/rss+xml",
-title => "$SiteName: this page, when it changes, you see changes.",
-href => "$ScriptName?action=rss;full=1;rcidonly=$id;title=$utitle"})
}
$NotFoundPg = *;
$EditAllowed = 0;
$SiteBase = *;
$BracketWiki = 1;
$LogoUrl = *;
$SurgeProtection = 1;
$SurgeProtectionTime = 30;
$SurgeProtectionViews = 100;
$MaxPost = 10000 * 4096;
$PageCluster = *;
$PageTypesName = 'Cluster';
$UseQuestionmark = 0;
$RawHtml = 1;
$HtmlLinks = 1;
$HtmlTags = 1;
$TopLinkBar = 1;
$FooterNote ='';
$EditNote = 'TextFormattingRules';
$NewText = 'OneMomentAfterAnother';
$NewComment = 'non. désolé.';
$CalendarOnEveryPage = 0; # 1=on every page is a month-div situated in the header, use css to control
$CalAsTable = 1; # 0=every month-div is "free", 1=every month-div is caught in a table, use css to control
$CalStartMonday = 1; # 0=week starts with Su, 1=week starts with Mo
$UseModMarkupInTitles = 1;
$PageTrailLength = 8;
$ImageUrlPath = '/static';
$SoundUrlPath = '/mp3'; # URL where the mp3 files are to be found
$LocalNamesCollect = 0;
$MarkupQuotes = 1;
my %RecurringDays = (
'1971-06-02'=>"Auriea, it is your birthday! %s years",
'1968-06-28'=>"Today is Michaels birthday! – %s years",
'1999-01-29'=>"Michael and Auriea met in hell %s years ago today.",
'1999-01-30'=>"Michael sends Auriea breath.html beginning skinonskinonskin %s years ago today.",
'1999-03-18'=>"Michael and Auriea met in the flesh in San Francisco and launched http://entropy8zuper.org %s years",
'1999-05-13'=>"Auriea moved to Belgium for good http://entropy8zuper.org %s years ago today!",
'2003-01-08'=>"Auriea and Michael are married %s years as of today!",
);
push(@MyInitVariables,
sub {
my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) = localtime(time);
$year += 1900;
$mon += 1;
for my $date (keys %RecurringDays) {
my ($y, $m, $d) = split(/-[ 0]?/, $date);
$SpecialDays{"$m-$d"}
= ScriptLink($date, Ts($RecurringDays{$date}, $year - $y));
}
});
sub MyRules {
if (m/\G
return CloseHtmlEnvironments()
. '<!---'
. '--->';
}
if (m/\G<source>\n?(.?\n)</source>[ \t]\n?/cgs) { # source must be on column 1
return CloseHtmlEnvironments()
. '
}
return undef;
}
link in new window
push(@MyRules, &newWindowLink);
sub newWindowLink
{compare sub LinkRules in oddmuse.pl
if ($BracketText && m/\G([new:$FullUrlPattern\s+([^]]+?)])/cog
or m/\G([new:$FullUrlPattern])/cog)
{
my ($url, $text) = ($2, $3);
$url =~ /^($UrlProtocols)/;
my $class = "url $1"; # get protocol (http, ftp, ...)
$text = $url unless $text; # use url as link text if text empty
$url = UnquoteHtml($url); # quote special chars
$class .= ' newwindow'; # add newwindow to classoutput link
my $link = $q->a({-href=>$url, -class=>$class, -target=>"_new"}, $text);
return $link;
}
return undef;
}div foo
push(@MyRules, &divRule);
sub divRule {
if (m/\G<(div class="[^"]+")>/cgi or m/\G<(/div)>/cgi) {
return CloseHtmlEnvironments() . '<' . UrlDecode($1) . '>';
}
return undef;
}
sub PrintMyContent {
GetBackLink($_[0]);
};