[175] | 1 | <?php |
---|
| 2 | # -- BEGIN LICENSE BLOCK --------------------------------------- |
---|
| 3 | # |
---|
| 4 | # This file is part of Dotclear 2. |
---|
| 5 | # |
---|
[1179] | 6 | # Copyright (c) 2003-2013 Olivier Meunier & Association Dotclear |
---|
[175] | 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 | if (!defined('DC_RC_PATH')) { return; } |
---|
| 13 | |
---|
| 14 | $__resources['rss_news'] = 'http://dotclear.org/blog/feed/category/News/atom'; |
---|
| 15 | |
---|
| 16 | $__resources['doc'] = array( |
---|
[1343] | 17 | "Dotclear documentation" => 'http://dotclear.org/documentation/2.0', |
---|
| 18 | 'Dotclear presentation' => 'http://dotclear.org/documentation/2.0/overview/tour', |
---|
[175] | 19 | "User manual" => 'http://dotclear.org/documentation/2.0/usage', |
---|
[179] | 20 | "Installation and administration guides" => 'http://dotclear.org/documentation/2.0/admin', |
---|
[1343] | 21 | "Dotclear support forum" => 'http://forum.dotclear.net/' |
---|
[175] | 22 | ); |
---|
| 23 | |
---|
| 24 | $__resources['help'] = array( |
---|
| 25 | 'core_blog_pref' => dirname(__FILE__).'/help/blog_pref.html', |
---|
| 26 | 'core_categories' => dirname(__FILE__).'/help/categories.html', |
---|
| 27 | 'core_comments' => dirname(__FILE__).'/help/comments.html', |
---|
| 28 | 'core_media' => dirname(__FILE__).'/help/media.html', |
---|
| 29 | 'core_post' => dirname(__FILE__).'/help/post.html', |
---|
| 30 | 'core_posts' => dirname(__FILE__).'/help/posts.html', |
---|
[1459] | 31 | 'core_trackbacks' => dirname(__FILE__).'/help/trackbacks.html', |
---|
[175] | 32 | 'core_user_pref' => dirname(__FILE__).'/help/user_pref.html', |
---|
| 33 | 'core_user' => dirname(__FILE__).'/help/user.html', |
---|
| 34 | 'core_wiki' => dirname(__FILE__).'/help/wiki.html' |
---|
| 35 | ); |
---|
[0] | 36 | ?> |
---|