summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-08-25 10:07:19 +0000
committerDries Buytaert <dries@buytaert.net>2009-08-25 10:07:19 +0000
commitd55daf0fc49a53f5bc3ff35b7fa1c1c7ce628835 (patch)
tree13fcc4ced046c310fe49f9141c7595da894c3aad
parent966fbe55492c4f0556045cfba5161b287faa1848 (diff)
downloadbrdo-d55daf0fc49a53f5bc3ff35b7fa1c1c7ce628835.tar.gz
brdo-d55daf0fc49a53f5bc3ff35b7fa1c1c7ce628835.tar.bz2
- Patch #557792 by Gábor Hojtsy: created 'web services' category.
-rw-r--r--modules/blogapi/blogapi.module4
-rw-r--r--modules/system/system.module16
2 files changed, 10 insertions, 10 deletions
diff --git a/modules/blogapi/blogapi.module b/modules/blogapi/blogapi.module
index b17c36b9d..857ddae62 100644
--- a/modules/blogapi/blogapi.module
+++ b/modules/blogapi/blogapi.module
@@ -14,7 +14,7 @@ function blogapi_help($path, $arg) {
case 'admin/help#blogapi':
$output = '<p>' . t("The Blog API module allows your site's users to access and post to their blogs from external blogging clients. External blogging clients are available for a wide range of desktop operating systems, and generally provide a feature-rich graphical environment for creating and editing posts.") . '</p>';
$output .= '<p>' . t('<a href="@ecto-link">Ecto</a>, a blogging client available for both Mac OS X and Microsoft Windows, can be used with Blog API. Blog API also supports <a href="@blogger-api">Blogger API</a>, <a href="@metaweblog-api">MetaWeblog API</a>, and most of the <a href="@movabletype-api">Movable Type API</a>. Blogging clients and other services (e.g. <a href="@flickr">Flickr\'s</a> "post to blog") that support these APIs may also be compatible.', array('@ecto-link' => url('http://infinite-sushi.com/software/ecto/'), '@blogger-api' => url('http://www.blogger.com/developers/api/1_docs/'), '@metaweblog-api' => url('http://www.xmlrpc.com/metaWeblogApi'), '@movabletype-api' => url('http://www.movabletype.org/docs/mtmanual_programmatic.html'), '@flickr' => url('http://www.flickr.com'))) . '</p>';
- $output .= '<p>' . t('Select the content types available to external clients on the <a href="@blogapi-settings">Blog API settings page</a>. If supported and available, each content type will be displayed as a separate "blog" by the external client.', array('@blogapi-settings' => url('admin/settings/blogapi'))) . '</p>';
+ $output .= '<p>' . t('Select the content types available to external clients on the <a href="@blogapi-settings">Blog API settings page</a>. If supported and available, each content type will be displayed as a separate "blog" by the external client.', array('@blogapi-settings' => url('admin/config/services/blogapi'))) . '</p>';
$output .= '<p>' . t('For more information, see the online handbook entry for <a href="@blogapi">Blog API module</a>.', array('@blogapi' => url('http://drupal.org/handbook/modules/blogapi/'))) . '</p>';
return $output;
}
@@ -821,7 +821,7 @@ function blogapi_menu() {
'access arguments' => array('access content'),
'type' => MENU_CALLBACK,
);
- $items['admin/settings/blogapi'] = array(
+ $items['admin/config/services/blogapi'] = array(
'title' => 'Blog API',
'description' => 'Configure the content types available to external blogging clients.',
'page callback' => 'drupal_get_form',
diff --git a/modules/system/system.module b/modules/system/system.module
index 39ab7b0b8..0fa637dee 100644
--- a/modules/system/system.module
+++ b/modules/system/system.module
@@ -787,6 +787,14 @@ function system_menu() {
'access arguments' => array('admin/config/services', 'access administration pages'),
'file' => 'system.admin.inc',
);
+ $items['admin/config/services/rss-publishing'] = array(
+ 'title' => 'RSS publishing',
+ 'description' => 'Configure the site description, the number of items per feed and whether feeds should be titles/teasers/full-text.',
+ 'page callback' => 'drupal_get_form',
+ 'page arguments' => array('system_rss_feeds_settings'),
+ 'access arguments' => array('administer site configuration'),
+ 'file' => 'system.admin.inc',
+ );
$items['admin/settings/performance'] = array(
'title' => 'Performance',
'description' => 'Enable or disable page caching for anonymous users and set CSS and JS bandwidth optimization options.',
@@ -863,14 +871,6 @@ function system_menu() {
'access arguments' => array('administer site configuration'),
'file' => 'system.admin.inc',
);
- $items['admin/settings/rss-publishing'] = array(
- 'title' => 'RSS publishing',
- 'description' => 'Configure the site description, the number of items per feed and whether feeds should be titles/teasers/full-text.',
- 'page callback' => 'drupal_get_form',
- 'page arguments' => array('system_rss_feeds_settings'),
- 'access arguments' => array('administer site configuration'),
- 'file' => 'system.admin.inc',
- );
// Reports.
$items['admin/reports'] = array(