Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Download documentation for Appcelerator [closed]

Tags:

appcelerator

I tried finding a way to download documentation of titanium appcelerator for offline reading

I searched a lot but couldn't find any direct or indirect way to download it

Has anyone downloaded documentation ?

like image 401
kdeveloper Avatar asked Nov 17 '12 20:11

kdeveloper


People also ask

What happened to Appcelerator?

A version of the Titanium CLI that eliminates the need for users to log in to the platform, will be made available on March 1,2022. After the End-of-Support date, customers will be able to use the Titanium CLI without a platform account. Appcelerator Studio will be discontinued.

Is Appcelerator Titanium free?

Appcelerator also makes Alloy, an Apache-licensed, Titanium-based model–view–controller framework, and Appcelerator Studio a proprietary integrated development environment starting for free.

What are some advantages to using Appcelerator Titanium?

It helps you to meet the store guidelines and regulations of Apple Store, Amazon Market, and Google Play. Appcelerator can create both iOS and Android applications; the generated application gives the same feel according to the relevant platform.


1 Answers

It is not possible (as far as I know) to make the docs offline directly using the online version.

However it is possible to build the docs using the source code, as we all know that Titanium is open-source.

  1. Download the source from: https://github.com/appcelerator/titanium_mobile, or clone the repo with: git clone https://github.com/appcelerator/titanium_mobile.git
  2. Unzip the source code
  3. cd titanium_mobile-master
  4. Ensure that you have python installed, as well as pyyml and pygments, you can install them with: sudo easy_install pyyml, pygments
  5. Ensure you have jsduck installed in your system, if not then install it with: gem install jsduck
  6. write this command: apidoc/docgen.py --format=jsduck --output=dist/apidoc
  7. cd dist/apidoc
  8. jsduck --touch-examples-ui --output Whole titanium.js, where Whole is the output directory containing the generated docs

If you want the builtins to be included in your generated docs make the last command: jsduck --builtin-classes --touch-examples-ui --output Whole titanium.js

That is it, you have a full searchable Ti docs offline.

like image 148
user1537325 Avatar answered Sep 27 '22 23:09

user1537325