aboutsummaryrefslogtreecommitdiffstats
path: root/app.php
diff options
context:
space:
mode:
authorMarek Laane <bald@smail.ee>2014-10-12 10:54:11 +0300
committerMarek Laane <bald@smail.ee>2014-10-12 10:54:11 +0300
commita0b2d09125d7911656fe4cb286f20643c4432281 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /app.php
parente32d8242187534c387106ff344201c42ff6afb44 (diff)
downloadwww-a0b2d09125d7911656fe4cb286f20643c4432281.tar
www-a0b2d09125d7911656fe4cb286f20643c4432281.tar.gz
www-a0b2d09125d7911656fe4cb286f20643c4432281.tar.bz2
www-a0b2d09125d7911656fe4cb286f20643c4432281.tar.xz
www-a0b2d09125d7911656fe4cb286f20643c4432281.zip
Updated Estonian translation
Diffstat (limited to 'app.php')
-rw-r--r--app.php40
1 files changed, 0 insertions, 40 deletions
diff --git a/app.php b/app.php
deleted file mode 100644
index 86db0b9e4..000000000
--- a/app.php
+++ /dev/null
@@ -1,40 +0,0 @@
-<?php
-/**
- * Transition controller for www.mageia.org:
- * we are moving from a simple site where each page is called by its own script file
- * to a site where requests are managed and dispatched by a single controller.
- *
- * But, we do it step by step, without migrating/breaking everything at once.
- * See comments below.
- *
- * PHP version 5.4
- *
- * @category Mageia
- * @package Mageia\Web\www
- * @author rda <rda@mageia.org>
- * @link http://www.mageia.org/
- *
- * @license http://www.gnu.org/licenses/gpl-2.0.html GNU GPL v2+
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License aspublished by the
- * Free Software Foundation; either version 2 of the License, or (at your
- * option) any later version.
-*/
-
-$routes = array(
- //'downloads' => 'MGA_Downloads'
-);
-
-require 'lib/Pinq/Controller.php';
-require 'lib/Pinq/App.php';
-require 'lib/Pinq/Cache.php';
-
-$cache = new Pinq_Memcache_Cache(20);
-
-Pinq_Controller::run(
- __DIR__,
- $routes,
- $_SERVER,
- new Pinq_Memcache_Cache(20)
-);