From 88e4e1fe4cb2db5d3b708b51b68c126ce30b88e1 Mon Sep 17 00:00:00 2001 From: kiamlaluno Date: Fri, 27 Oct 2023 15:44:24 +0200 Subject: [PATCH 1/2] Issue #85: Capitalize the module name using title case --- action_example/action_example.info | 4 ++-- action_example/action_example.module | 2 +- ajax_example/ajax_example.info | 4 ++-- batch_example/batch_example.info | 4 ++-- batch_example/batch_example.module | 2 +- cache_example/cache_example.info | 4 ++-- contextual_links_example/contextual_links_example.info | 6 +++--- contextual_links_example/contextual_links_example.module | 2 +- cron_example/cron_example.info | 6 +++--- cron_example/cron_example.module | 2 +- database_example/database_example.info | 2 +- email_example/email_example.info | 2 +- entity_example/entity_example.info | 4 ++-- examples.module | 6 +++--- field_example/field_example.info | 4 ++-- field_permission_example/field_permission_example.info | 4 ++-- file_example/file_example.info | 6 +++--- file_example/file_example.module | 2 +- filter_example/filter_example.info | 4 ++-- filter_example/filter_example.module | 2 +- form_example/form_example.info | 6 +++--- js_example/js_example.info | 4 ++-- menu_example/menu_example.info | 6 +++--- menu_example/menu_example.module | 2 +- node_access_example/node_access_example.info | 6 +++--- node_access_example/node_access_example.module | 2 +- page_example/page_example.info | 4 ++-- page_example/page_example.module | 2 +- pager_example/pager_example.info | 6 +++--- pager_example/pager_example.module | 4 ++-- queue_example/queue_example.info | 6 +++--- queue_example/queue_example.module | 2 +- render_example/render_example.info | 6 +++--- render_example/render_example.module | 2 +- simpletest_example/simpletest_example.info | 4 ++-- tablesort_example/tablesort_example.module | 2 +- theming_example/theming_example.info | 4 ++-- theming_example/theming_example.module | 2 +- token_example/token_example.info | 4 ++-- token_example/token_example.module | 2 +- vertical_tabs_example/vertical_tabs_example.info | 6 +++--- vertical_tabs_example/vertical_tabs_example.module | 2 +- 42 files changed, 78 insertions(+), 78 deletions(-) diff --git a/action_example/action_example.info b/action_example/action_example.info index 4aedf54..5c58700 100644 --- a/action_example/action_example.info +++ b/action_example/action_example.info @@ -1,6 +1,6 @@ -name = Action example +name = Action Example description = Demonstrates providing actions that can be associated to triggers. package = Example modules version = BACKDROP_VERSION backdrop = 1.x -type = module \ No newline at end of file +type = module diff --git a/action_example/action_example.module b/action_example/action_example.module index 9442b33..508d3ad 100644 --- a/action_example/action_example.module +++ b/action_example/action_example.module @@ -1,7 +1,7 @@ 'Pager example', + 'title' => 'Pager Example', 'description' => 'Show a page with a long list across multiple pages', 'page callback' => 'pager_example_page', 'access callback' => TRUE, diff --git a/queue_example/queue_example.info b/queue_example/queue_example.info index 9fb7069..50ac106 100644 --- a/queue_example/queue_example.info +++ b/queue_example/queue_example.info @@ -1,6 +1,6 @@ -name = Queue example -description = Examples of using the Backdrop Queue API. +name = Queue Example +description = Examples of using the queue API. package = Example modules version = BACKDROP_VERSION backdrop = 1.x -type = module \ No newline at end of file +type = module diff --git a/queue_example/queue_example.module b/queue_example/queue_example.module index f082349..d005c79 100644 --- a/queue_example/queue_example.module +++ b/queue_example/queue_example.module @@ -1,7 +1,7 @@ Date: Fri, 10 Nov 2023 17:41:26 +0100 Subject: [PATCH 2/2] Fixed the formatting in a documentation comment --- examples.module | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/examples.module b/examples.module index a897b0f..64f4119 100644 --- a/examples.module +++ b/examples.module @@ -2,12 +2,12 @@ /** * @file * This file serves as a stub file for the many example modules in the - * @link http://backdropcms.org/project/examples Examples for Developers@endlink - * project. + * @link http://backdropcms.org/project/examples Examples for Developers @endlink + * project. * - * One might say that examples.module is an example of documentation. However, - * note that the example submodules define many doxygen groups, which may or - * may not be a good strategy for other modules. + * One might say this module is an example of documentation. However, note that + * the example submodules define many Doxygen groups, which may or may not be a + * good strategy for other modules. */ /**