| 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 | if (!defined('DC_RC_PATH')) { return; } | 
|---|
| 13 |  | 
|---|
| 14 | $__resources['rss_news'] = 'http://dotclear.org/blog/feed/category/News/atom'; | 
|---|
| 15 |  | 
|---|
| 16 | $__resources['doc'] = array( | 
|---|
| 17 |      "Dotclear documentation" => 'http://dotclear.org/documentation/2.0', | 
|---|
| 18 |      'Dotclear presentation' => 'http://dotclear.org/documentation/2.0/overview/tour', | 
|---|
| 19 |      "User manual" => 'http://dotclear.org/documentation/2.0/usage', | 
|---|
| 20 |      "Installation and administration guides" => 'http://dotclear.org/documentation/2.0/admin', | 
|---|
| 21 |      "Dotclear support forum" => 'http://forum.dotclear.net/' | 
|---|
| 22 | ); | 
|---|
| 23 |  | 
|---|
| 24 | $__resources['help'] = array( | 
|---|
| 25 |      'core_main' => dirname(__FILE__).'/help/main.html', | 
|---|
| 26 |      'core_blog_pref' => dirname(__FILE__).'/help/blog_pref.html', | 
|---|
| 27 |      'core_categories' => dirname(__FILE__).'/help/categories.html', | 
|---|
| 28 |      'core_comments' => dirname(__FILE__).'/help/comments.html', | 
|---|
| 29 |      'core_media' => dirname(__FILE__).'/help/media.html', | 
|---|
| 30 |      'core_post' => dirname(__FILE__).'/help/post.html', | 
|---|
| 31 |      'core_posts' => dirname(__FILE__).'/help/posts.html', | 
|---|
| 32 |      'core_trackbacks' => dirname(__FILE__).'/help/trackbacks.html', | 
|---|
| 33 |      'core_user_pref' => dirname(__FILE__).'/help/user_pref.html', | 
|---|
| 34 |      'core_user' => dirname(__FILE__).'/help/user.html', | 
|---|
| 35 |      'core_wiki' => dirname(__FILE__).'/help/wiki.html' | 
|---|
| 36 | ); | 
|---|
| 37 | ?> | 
|---|