/photos/albums/ArchLinux Wallpapers/archlinux-firestarter.jpg |
---|
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
/photos/albums/ArchLinux Wallpapers/archlinux-firestarter.jpg |
---|
Property changes: |
Added: svn:mime-type |
## -0,0 +1 ## |
+application/octet-stream |
\ No newline at end of property |
Index: photos/albums/ArchLinux Wallpapers/archlinux-berry.jpg |
=================================================================== |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Index: photos/albums/ArchLinux Wallpapers/archlinux-berry.jpg |
=================================================================== |
--- photos/albums/ArchLinux Wallpapers/archlinux-berry.jpg (nonexistent) |
+++ photos/albums/ArchLinux Wallpapers/archlinux-berry.jpg (revision 233) |
/photos/albums/ArchLinux Wallpapers/archlinux-berry.jpg | |||||||||
---|---|---|---|---|---|---|---|---|---|
Property changes: | |||||||||
Added: svn:mime-type | |||||||||
## -0,0 +1 ## | |||||||||
+application/octet-stream | |||||||||
\ No newline at end of property | |||||||||
Index: wiki/edit.php | |||||||||
=================================================================== | |||||||||
--- wiki/edit.php (nonexistent) | |||||||||
+++ wiki/edit.php (revision 233) | |||||||||
@@ -0,0 +1,52 @@ | |||||||||
+ | |||||||||
+ | |||||||||
+require '../_taios.php'; | |||||||||
+ | |||||||||
+$pageName = $_GET['page']; | |||||||||
+if (empty($pageName)) | |||||||||
+{ | |||||||||
+ $pageName = 'Index'; | |||||||||
+} | |||||||||
+ | |||||||||
+$page = new Taios_Page('Edit Page - ' . $pageName, '../'); | |||||||||
+$page->drawHeader(); | |||||||||
+$page->drawMiddle(); | |||||||||
+ | |||||||||
+if ($page->isUserGM($page->getLoggedInUser())) | |||||||||
+{ | |||||||||
+ $filename = 'pages/' . $pageName . '.txt'; | |||||||||
+ | |||||||||
+ $content = ""; | |||||||||
+ | |||||||||
+ $fp = @fopen($filename, 'r'); | |||||||||
+ if ($fp) | |||||||||
+ { | |||||||||
+ $content = fread($fp, filesize($filename)); | |||||||||
+ fclose($fp); | |||||||||
+ } | |||||||||
+ | |||||||||
+?> | |||||||||
+ | |||||||||
+ | |||||||||
+ | |||||||||
+
| |||||||||
+ | |||||||||
+ | |||||||||
+ | |||||||||
+} | |||||||||
+else | |||||||||
+{ | |||||||||
+ $page->drawError('You do not have permission to access this page.'); | |||||||||
+} | |||||||||
+ | |||||||||
+$page->drawFooter(); | |||||||||
+ | |||||||||
+?> | |||||||||
+ | |||||||||
Index: wiki/edit-do.php | |||||||||
=================================================================== | |||||||||
--- wiki/edit-do.php (nonexistent) | |||||||||
+++ wiki/edit-do.php (revision 233) | |||||||||
@@ -0,0 +1,38 @@ | |||||||||
+ | |||||||||
+ | |||||||||
+require '../_taios.php'; | |||||||||
+ | |||||||||
+$pageName = $_POST['page']; | |||||||||
+if (empty($pageName)) | |||||||||
+{ | |||||||||
+ $pageName = 'Index'; | |||||||||
+} | |||||||||
+ | |||||||||
+$page = new Taios_Page('Edit Page - ' . $pageName, '../'); | |||||||||
+ | |||||||||
+if ($page->isUserGM($page->getLoggedInUser())) | |||||||||
+{ | |||||||||
+ $filename = 'pages/' . $pageName . '.txt'; | |||||||||
+ | |||||||||
+ $fp = @fopen($filename, 'w'); | |||||||||
+ if ($fp) | |||||||||
+ { | |||||||||
+ fwrite($fp, $_POST['content']); | |||||||||
+ fclose($fp); | |||||||||
+ | |||||||||
+ $page->redirect('index.php?page=' . $pageName); | |||||||||
+ } | |||||||||
+ else | |||||||||
+ { | |||||||||
+ $page->drawError('Failed to write file.'); | |||||||||
+ } | |||||||||
+} | |||||||||
+else | |||||||||
+{ | |||||||||
+ $page->drawError('You do not have permission to access this page.'); | |||||||||
+} | |||||||||
+ | |||||||||
+$page->drawFooter(); | |||||||||
+ | |||||||||
+?> | |||||||||
+ | |||||||||
Index: wiki/index.php | |||||||||
=================================================================== | |||||||||
--- wiki/index.php (revision 215) | |||||||||
+++ wiki/index.php (revision 233) | |||||||||
@@ -2,12 +2,34 @@ | |||||||||
require '../_taios.php'; | |||||||||
-$page = new Taios_Page('Wiki', '../'); | |||||||||
+$pageName = $_GET['page']; | |||||||||
+if (empty($pageName)) | |||||||||
+{ | |||||||||
+ $pageName = 'Index'; | |||||||||
+} | |||||||||
+ | |||||||||
+$page = new Taios_Page('Wiki - ' . $pageName, '../'); | |||||||||
$page->drawHeader(); | |||||||||
$page->drawMiddle(); | |||||||||
-write(' This page is currently under construction. '); | |||||||||
+if ($page->isUserGM($page->getLoggedInUser())) | |||||||||
+{ | |||||||||
+ write(' '); | |||||||||
+} | |||||||||
+$filename = 'pages/' . $pageName . '.txt'; | |||||||||
+ | |||||||||
+$fp = @fopen($filename, 'r'); | |||||||||
+if ($fp) | |||||||||
+{ | |||||||||
+ write(' ' . $page->replaceBBCode(fread($fp, filesize($filename))) . ' '); | |||||||||
+ fclose($fp); | |||||||||
+} | |||||||||
+else | |||||||||
+{ | |||||||||
+ write(' This page is empty. '); | |||||||||
+} | |||||||||
+ | |||||||||
$page->drawFooter(); | |||||||||
?> |
/wiki/pages/Index.txt | ||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0,0 → 1,4 | ||||||||||||||||||||||||||||||||||||||||||||||||
[b]Welcome to the Tim32 Wiki![/b] | ||||||||||||||||||||||||||||||||||||||||||||||||
Here you can talk about pretty much anything! | ||||||||||||||||||||||||||||||||||||||||||||||||
Property changes: | ||||||||||||||||||||||||||||||||||||||||||||||||
Added: svn:executable | ||||||||||||||||||||||||||||||||||||||||||||||||
## -0,0 +1 ## | ||||||||||||||||||||||||||||||||||||||||||||||||
+* | ||||||||||||||||||||||||||||||||||||||||||||||||
\ No newline at end of property | ||||||||||||||||||||||||||||||||||||||||||||||||
Index: admin/all-projects.php | ||||||||||||||||||||||||||||||||||||||||||||||||
=================================================================== | ||||||||||||||||||||||||||||||||||||||||||||||||
--- admin/all-projects.php (nonexistent) | ||||||||||||||||||||||||||||||||||||||||||||||||
+++ admin/all-projects.php (revision 233) | ||||||||||||||||||||||||||||||||||||||||||||||||
@@ -0,0 +1,55 @@ | ||||||||||||||||||||||||||||||||||||||||||||||||
+ | ||||||||||||||||||||||||||||||||||||||||||||||||
+ | ||||||||||||||||||||||||||||||||||||||||||||||||
+require '../_taios.php'; | ||||||||||||||||||||||||||||||||||||||||||||||||
+ | ||||||||||||||||||||||||||||||||||||||||||||||||
+$page = new Taios_Page('Manage All Projects', '../'); | ||||||||||||||||||||||||||||||||||||||||||||||||
+$page->drawHeader(); | ||||||||||||||||||||||||||||||||||||||||||||||||
+$page->drawMiddle(); | ||||||||||||||||||||||||||||||||||||||||||||||||
+ | ||||||||||||||||||||||||||||||||||||||||||||||||
+$page->checkLoggedIn(); | ||||||||||||||||||||||||||||||||||||||||||||||||
+ | ||||||||||||||||||||||||||||||||||||||||||||||||
+if ($page->isUserAdmin($page->getLoggedInUser())) | ||||||||||||||||||||||||||||||||||||||||||||||||
+{ | ||||||||||||||||||||||||||||||||||||||||||||||||
+ write(' Use this to manage all the projects on the Tim32 Website. '); | ||||||||||||||||||||||||||||||||||||||||||||||||
+ | ||||||||||||||||||||||||||||||||||||||||||||||||
+ write('
| ||||||||||||||||||||||||||||||||||||||||||||||||
+} | ||||||||||||||||||||||||||||||||||||||||||||||||
+else | ||||||||||||||||||||||||||||||||||||||||||||||||
+{ | ||||||||||||||||||||||||||||||||||||||||||||||||
+ $page->drawError('You do not have permission to access this page.'); | ||||||||||||||||||||||||||||||||||||||||||||||||
+} | ||||||||||||||||||||||||||||||||||||||||||||||||
+ | ||||||||||||||||||||||||||||||||||||||||||||||||
+$page->drawFooter(); | ||||||||||||||||||||||||||||||||||||||||||||||||
+ | ||||||||||||||||||||||||||||||||||||||||||||||||
+?> | ||||||||||||||||||||||||||||||||||||||||||||||||
+ | ||||||||||||||||||||||||||||||||||||||||||||||||
Index: projects/edit-project-do.php | ||||||||||||||||||||||||||||||||||||||||||||||||
=================================================================== | ||||||||||||||||||||||||||||||||||||||||||||||||
--- projects/edit-project-do.php (revision 215) | ||||||||||||||||||||||||||||||||||||||||||||||||
+++ projects/edit-project-do.php (revision 233) | ||||||||||||||||||||||||||||||||||||||||||||||||
@@ -4,10 +4,10 @@ | ||||||||||||||||||||||||||||||||||||||||||||||||
$page = new Taios_Page('Edit Project', '../'); | ||||||||||||||||||||||||||||||||||||||||||||||||
-$project = $page->getProject($page->getGetID()); | ||||||||||||||||||||||||||||||||||||||||||||||||
+$project = $page->getProject($page->getPostID()); | ||||||||||||||||||||||||||||||||||||||||||||||||
if (!$project) | ||||||||||||||||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||||||||||||||||
- $page->drawError('No such project, #' . $page->getGetID()); | ||||||||||||||||||||||||||||||||||||||||||||||||
+ $page->drawError('No such project, #' . $page->getPostID()); | ||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||
$title = $_POST['title']; |