⌈⌋ ⎇ branch:  freshcode


Check-in [31d71afbdb]

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Trivial error message page.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 31d71afbdbec1b5c24f4eff8f2be1fa2008cd23f
User & Date: mario 2014-07-19 00:19:15
Context
2014-07-19
00:20
Default user agent. check-in: e8187add33 user: mario tags: trunk
00:19
Trivial error message page. check-in: 31d71afbdb user: mario tags: trunk
00:18
Spaces in wrap_tags() links. Optional $$version substitution prefix. CSRF token filter fixed to ->name (instead of ->id). check-in: aa57d05c6a user: mario tags: trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Added page_error.php.





































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
/**
 * type: page
 * title: Error info
 * description: Generic error page
 * version: 0.1
 * license: -
 *
 * Frontpage.
 * Just shows the most recent projects and their released versions.
 *
 * Shows:
 *   → Recent projects and their released versions.
 *   → Visually trimmed descriptions and changelogs.
 *   → Small boxed tags.
 * Sidebar:
 *   → Newsfeeds (e.g. linux.com, /r/linux)
 * HTML:
 *   → RSS/Atom links for update feed comprised of all projects.
 *
 */


include("template/header.php");
?> <section id=main> <?php

print "<h2>Error</h2>\n";

print isset($error) ? "<p>$error</p>" : "<p>Some problem occured (entry not accessible etc.)</p>";


include("template/bottom.php");

?>