Dotclear

source: admin/xmlrpc.php @ 1179:a43a29427ef3

Revision 1179:a43a29427ef3, 861 bytes checked in by franck <carnet.franck.paul@…>, 11 years ago (diff)

Update copyright notice

Line 
1<?php
2# -- BEGIN LICENSE BLOCK ---------------------------------------
3#
4# This file is part of Dotclear 2.
5#
6# Copyright (c) 2003-2013 Olivier Meunier & Association Dotclear
7# Licensed under the GPL version 2.0 license.
8# See LICENSE file or
9# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
10#
11# -- END LICENSE BLOCK -----------------------------------------
12
13require dirname(__FILE__).'/../inc/prepend.php';
14
15if (isset($_SERVER['PATH_INFO'])) {
16     $blog_id = trim($_SERVER['PATH_INFO']);
17     $blog_id = preg_replace('#^/#','',$blog_id);
18} elseif (!empty($_GET['b'])) {
19     $blog_id = $_GET['b'];
20}
21
22if (empty($blog_id)) {
23     header('Content-Type: text/plain');
24     http::head(412);
25     echo 'No blog ID given';
26     exit;
27}
28
29# Loading plugins
30$core->plugins->loadModules(DC_PLUGINS_ROOT);
31
32# Start XML-RPC server
33$server = new dcXmlRpc($core,$blog_id);
34$server->serve();
35?>
Note: See TracBrowser for help on using the repository browser.

Sites map