summaryrefslogtreecommitdiff
path: root/lib/exe/ajax.php
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2010-02-01 16:20:40 +0100
committerAndreas Gohr <andi@splitbrain.org>2010-02-01 16:20:40 +0100
commit24b3cb1ac0784ffa2acabf021fdd06c6d49cc7b1 (patch)
treeae5577f90610170f955b169b6bf414acda8cfcb6 /lib/exe/ajax.php
parentc2a6d81662045023bdf1617b6b49f71c274d55ca (diff)
downloadrpg-24b3cb1ac0784ffa2acabf021fdd06c6d49cc7b1.tar.gz
rpg-24b3cb1ac0784ffa2acabf021fdd06c6d49cc7b1.tar.bz2
removed require's in lib/exe/*
Diffstat (limited to 'lib/exe/ajax.php')
-rw-r--r--lib/exe/ajax.php23
1 files changed, 1 insertions, 22 deletions
diff --git a/lib/exe/ajax.php b/lib/exe/ajax.php
index 4618abd71..22de2f0f0 100644
--- a/lib/exe/ajax.php
+++ b/lib/exe/ajax.php
@@ -13,10 +13,7 @@ if(!count($_POST) && $HTTP_RAW_POST_DATA){
if(!defined('DOKU_INC')) define('DOKU_INC',dirname(__FILE__).'/../../');
require_once(DOKU_INC.'inc/init.php');
-require_once(DOKU_INC.'inc/common.php');
-require_once(DOKU_INC.'inc/pageutils.php');
-require_once(DOKU_INC.'inc/auth.php');
-//close sesseion
+//close session
session_write_close();
header('Content-Type: text/html; charset=utf-8');
@@ -57,9 +54,6 @@ function ajax_qsearch(){
if(empty($query)) $query = cleanID($_GET['q']);
if(empty($query)) return;
- require_once(DOKU_INC.'inc/html.php');
- require_once(DOKU_INC.'inc/fulltext.php');
-
$data = array();
$data = ft_pageLookup($query);
@@ -95,10 +89,6 @@ function ajax_suggestions() {
if(empty($query)) $query = cleanID($_GET['q']);
if(empty($query)) return;
- require_once(DOKU_INC.'inc/html.php');
- require_once(DOKU_INC.'inc/fulltext.php');
- require_once(DOKU_INC.'inc/JSON.php');
-
$data = array();
$data = ft_pageLookup($query);
if(!count($data)) return;
@@ -181,8 +171,6 @@ function ajax_draftdel(){
*/
function ajax_medians(){
global $conf;
- require_once(DOKU_INC.'inc/search.php');
- require_once(DOKU_INC.'inc/media.php');
// wanted namespace
$ns = cleanID($_POST['ns']);
@@ -208,8 +196,6 @@ function ajax_medians(){
function ajax_medialist(){
global $conf;
global $NS;
- require_once(DOKU_INC.'inc/media.php');
- require_once(DOKU_INC.'inc/template.php');
$NS = $_POST['ns'];
tpl_mediaContent(true);
@@ -222,7 +208,6 @@ function ajax_medialist(){
*/
function ajax_mediasearchlist(){
global $conf;
- require_once(DOKU_INC.'inc/media.php');
media_searchlist($_POST['ns']);
}
@@ -234,8 +219,6 @@ function ajax_mediasearchlist(){
*/
function ajax_index(){
global $conf;
- require_once(DOKU_INC.'inc/search.php');
- require_once(DOKU_INC.'inc/html.php');
// wanted namespace
$ns = cleanID($_POST['idx']);
@@ -263,7 +246,6 @@ function ajax_index(){
function ajax_linkwiz(){
global $conf;
global $lang;
- require_once(DOKU_INC.'inc/html.php');
$q = ltrim($_POST['q'],':');
$id = noNS($q);
@@ -279,8 +261,6 @@ function ajax_linkwiz(){
if($q && !$ns){
// use index to lookup matching pages
- require_once(DOKU_INC.'inc/fulltext.php');
- require_once(DOKU_INC.'inc/parserutils.php');
$pages = array();
$pages = ft_pageLookup($id,false);
@@ -312,7 +292,6 @@ function ajax_linkwiz(){
}else{
- require_once(DOKU_INC.'inc/search.php');
$opts = array(
'depth' => 1,
'listfiles' => true,