Added 3yp and qmc pages.
Removed .htaccess (sites upgrading past this revision will need to backup and restore their customised .htaccess files)
This commit is contained in:
19
.htaccess
19
.htaccess
@@ -1,19 +0,0 @@
|
|||||||
# Magic Quotes are the Root-of-all-Evil and must be burned at the stake.
|
|
||||||
php_flag magic_quotes_gpc off
|
|
||||||
|
|
||||||
<IfModule mod_rewrite.c>
|
|
||||||
|
|
||||||
# Enable mod_rewrite for pretty urls
|
|
||||||
RewriteEngine on
|
|
||||||
# Treat all rules as starting from this directory
|
|
||||||
RewriteBase /ecs/
|
|
||||||
|
|
||||||
# Redirect rating requests specifically to the image generator
|
|
||||||
RewriteRule ratings/([0-9\.]*) resources/rating.php?r=$1 [L,NC,NS]
|
|
||||||
|
|
||||||
# If the requeted item doesnt already exist, redirect it to our dispatch page
|
|
||||||
RewriteCond %{REQUEST_FILENAME} !-f
|
|
||||||
RewriteCond %{REQUEST_FILENAME} !-d
|
|
||||||
RewriteRule (.*) index.php [L,NC,NS]
|
|
||||||
|
|
||||||
</IfModule>
|
|
||||||
27
page-sources/3yp.php
Normal file
27
page-sources/3yp.php
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Third Year Project
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
$_template['title'] = "Third Year Project";
|
||||||
|
|
||||||
|
?>
|
||||||
|
<p>
|
||||||
|
I am still working on my project, but in the mean time I have some binaries available for user testing.
|
||||||
|
Please report any bugs you might find to <a href="https://dev.sihnon.net/bugs" title="Sihnon Bug Tracker">my bug tracker</a>.
|
||||||
|
(Note: The <a href="http://www.cacert.org" title="CACert Certification Authority">provider</a> of my ssl certificates does not
|
||||||
|
distribute their root CA certificate with firefox, so if you need to, please install their certificate.)
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
These binaries are solely for testing purposes, and may not be redistributed from anywhere other than this site.
|
||||||
|
I am in the process of packaging a source distribution.
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li><a href="<?php echo $_meta['base-dir']; ?>/files/rsdss_1.01_i386.deb" title="Ubuntu x86 deb package">rsdss-1.01-i386.deb</a></li>
|
||||||
|
<li><a href="<?php echo $_meta['base-dir']; ?>/files/rsdss-1.0.1-i386.tar.bz2" title="Linux x86 binary archive">rsdss-1.0.1-i386.tar.bz2</a></li>
|
||||||
|
<li><a href="<?php echo $_meta['base-dir']; ?>/files/rsdss_1.0.1_win32.zip" title="Windows 32-bit zip archive">rsdss-1.0.1-win32.zip</a></li>
|
||||||
|
</ul>
|
||||||
|
</p>
|
||||||
|
|
||||||
@@ -9,5 +9,9 @@
|
|||||||
|
|
||||||
?>
|
?>
|
||||||
<p>
|
<p>
|
||||||
<em>I have not yet written up the list of projects I am working on</em>
|
Some of the projects I have worked on:
|
||||||
|
<ul>
|
||||||
|
<li><a href="<?php echo $_req->construct("page", "3yp"); ?>" title="Third Year Project">Third Year Project</a></li>
|
||||||
|
<li><a href="<?php echo $_req->construct("page", "qmc"); ?>" title="Qt Media Centre">Qt Media Centre</a></li><b></b>
|
||||||
|
</ul>
|
||||||
</p>
|
</p>
|
||||||
13
page-sources/qmc.php
Normal file
13
page-sources/qmc.php
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Qt Media Centre
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
$_template['title'] = "Third Year Project";
|
||||||
|
|
||||||
|
?>
|
||||||
|
<p>
|
||||||
|
<em>Details of this project have not been released yet.</em>
|
||||||
|
</p>
|
||||||
Reference in New Issue
Block a user