From 97ec13ae9ae9241e5ac5f1905a1b8115213fbd72 Mon Sep 17 00:00:00 2001 From: m1ga Date: Tue, 4 Jun 2024 20:28:16 +0200 Subject: [PATCH] fix some module links --- .../Contributing_to_Open_Source_Titanium_Modules.md | 4 ++-- .../Titanium_SDK_How-tos/Using_Modules/Obtaining_Modules.md | 2 +- .../Titanium_SDK_How-tos/Using_Modules/Using_a_Module.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/guide/Titanium_SDK/Titanium_SDK_Guide/Contributing_to_Titanium/Contributing_to_Open_Source_Titanium_Modules.md b/docs/guide/Titanium_SDK/Titanium_SDK_Guide/Contributing_to_Titanium/Contributing_to_Open_Source_Titanium_Modules.md index b79637d2873..55c8a11cf2d 100644 --- a/docs/guide/Titanium_SDK/Titanium_SDK_Guide/Contributing_to_Titanium/Contributing_to_Open_Source_Titanium_Modules.md +++ b/docs/guide/Titanium_SDK/Titanium_SDK_Guide/Contributing_to_Titanium/Contributing_to_Open_Source_Titanium_Modules.md @@ -23,7 +23,7 @@ If you are having an issue with an open source module, please please create a ti ## Submitting Contributions -The process for contributing to open source modules is the same as contributing code to Titanium SDK, but instead of the titanium\_mobile repo you will be working with the [titanium\_modules](https://github.com/tidev/titanium_modules) repo. Please refer to the [Pull Request Guide](/guide/Titanium_SDK/Titanium_SDK_Guide/Contributing_to_Titanium/Platform_Development/Pull_Request_Guide/) for guidance. +The process for contributing to open source modules is the same as contributing code to Titanium SDK. Go to the main organization page [tidev](https://github.com/tidev/) and search for the module. Please refer to the [Pull Request Guide](/guide/Titanium_SDK/Titanium_SDK_Guide/Contributing_to_Titanium/Platform_Development/Pull_Request_Guide/) for guidance. ### Versioning @@ -50,5 +50,5 @@ When submitting a fix: * Add a comment to the associated ticket with the pull request URL. ``` - PR: https://github.com/tidev/titanium_modules/pull/0 + PR: https://github.com/tidev/[titanium_module_name]/pull/0 ``` diff --git a/docs/guide/Titanium_SDK/Titanium_SDK_How-tos/Using_Modules/Obtaining_Modules.md b/docs/guide/Titanium_SDK/Titanium_SDK_How-tos/Using_Modules/Obtaining_Modules.md index 66bcc6625e3..fd436e23fb5 100644 --- a/docs/guide/Titanium_SDK/Titanium_SDK_How-tos/Using_Modules/Obtaining_Modules.md +++ b/docs/guide/Titanium_SDK/Titanium_SDK_How-tos/Using_Modules/Obtaining_Modules.md @@ -41,7 +41,7 @@ At the time of this writing, these are some of the modules included in the TiPlu ### Open-source Appcelerator modules -Appcelerator publishes a few modules on its GitHub account. Those modules are open source (check the individual licenses for full details) and are provided as-is without official support. You'll find these modules at [https://github.com/tidev/titanium\_modules](https://github.com/tidev/titanium_modules) +Appcelerator publishes a few modules on its GitHub account. Those modules are open source (check the individual licenses for full details) and are provided as-is without official support. You'll find these modules at [https://github.com/tidev/](https://github.com/tidev/) ### Community-contributed modules diff --git a/docs/guide/Titanium_SDK/Titanium_SDK_How-tos/Using_Modules/Using_a_Module.md b/docs/guide/Titanium_SDK/Titanium_SDK_How-tos/Using_Modules/Using_a_Module.md index 93f7f64f61a..a89b77dd76f 100644 --- a/docs/guide/Titanium_SDK/Titanium_SDK_How-tos/Using_Modules/Using_a_Module.md +++ b/docs/guide/Titanium_SDK/Titanium_SDK_How-tos/Using_Modules/Using_a_Module.md @@ -123,7 +123,7 @@ Finally, you'll use the module's object, properties, and methods to enable its f The following section illustrates how you would use one of the modules included in the Titanium Plus set. -For this example we will be downloading the [AdMob](https://github.com/appcelerator-modules/ti.admob) module for iOS available on GitHub. While the example covers an iOS use case, the same general steps apply to an Android module. The ZIP file containing the module distribution can be downloaded [here](https://github.com/tidev/titanium_modules/blob/master/admob/mobile/ios/ti.admob-iphone-1.5.0.zip?raw=true). +For this example we will be downloading the [AdMob](https://github.com/appcelerator-modules/ti.admob) module for iOS available on GitHub. While the example covers an iOS use case, the same general steps apply to an Android module. The ZIP file containing the module distribution can be downloaded [here](https://github.com/tidev/ti.admob/releases). 1. Install the module as described [above](#installing-modules).