Get excerpt returns the excerpts, not the content.
[dotclear.git] / _public.php
CommitLineData
1edd3efc 1<?php
9b56dd4e 2
b519995b 3require_once dirname(__FILE__) . '/page.auth.php';
b519995b 4require_once dirname(__FILE__) . '/widget.auth.php';
d387689d 5require_once dirname(__FILE__) . '/widget.post.perms.php';
f525ba66 6require_once dirname(__FILE__) . '/class.xorg.auth.php';
5322432c 7require_once dirname(__FILE__) . '/page.webservice.php';
b519995b 8
5322432c
FB
9/* Xorg auth */
10$core->url->register('xorgAuth', 'XorgAuth', '^auth/(.*)$', array('xorgAuthentifier', 'doAuth'));
1edd3efc 11
5322432c 12/* Post permission handling */
d387689d 13$core->addBehavior('coreBlogGetPosts', array('xorgPostPermsWidget', 'behavior_coreBlogGetPosts'));
5322432c
FB
14
15/* Webservice to create new blog */
16$core->url->register('xorgWebservice', 'XorgWebservice', '^xorgservice/(.*)$', array('XorgWebservice', 'handle'));
1edd3efc 17?>