diff options
author | Slávek Banko <[email protected]> | 2019-09-18 02:56:20 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2019-09-18 03:43:11 +0200 |
commit | 8ac7886c7582f107a1e7605ef37337e6ee1f3b7d (patch) | |
tree | be77f13173c43c358c49719171f29bed772b69a9 | |
parent | 12dc0650e418b2f766b7cce84652c6900c0f8ab0 (diff) | |
download | website-core-8ac7886c7582f107a1e7605ef37337e6ee1f3b7d.tar.gz website-core-8ac7886c7582f107a1e7605ef37337e6ee1f3b7d.zip |
Add missing docs folder index.
Signed-off-by: Slávek Banko <[email protected]>
-rw-r--r-- | docs/.gitignore | 5 | ||||
-rw-r--r-- | docs/index.php | 58 |
2 files changed, 63 insertions, 0 deletions
diff --git a/docs/.gitignore b/docs/.gitignore new file mode 100644 index 0000000..7ada3ee --- /dev/null +++ b/docs/.gitignore @@ -0,0 +1,5 @@ +# ignore all contents +* + +# only include index +!index.php diff --git a/docs/index.php b/docs/index.php new file mode 100644 index 0000000..87ea6ca --- /dev/null +++ b/docs/index.php @@ -0,0 +1,58 @@ +<?php + +// (c) 2014 Trinity Desktop Project +// All Rights Reserved +// Authors: Elizabeth Liddell, Timothy Pearson, and Calvin Morrison + +$path = '../'; +set_include_path(get_include_path() . PATH_SEPARATOR . $path); + +include("tde-head-and-foot.php"); +doHeader("Trinity Documentation", "Documentation", "_"); + +?> + +<a href="https://wiki.trinitydesktop.org/Category:Documentation">Roadmaps, tutorials, and other non-API Documentation</a><P> + +<a href="/docs/qt3">Qt3 API Index</a> +<BR> +<a href="/docs/qt4">Qt4 API Index</a><BR> +<a href="/docs/qt4/porting4.html">Qt3 to Qt4 porting guide</a><P> +<a href="/docs/trinity/index.html">Trinity API</a> + +<FORM action="/search/omega" method="get"> + <DIV> + <INPUT type="text" name="P"> + <INPUT type="hidden" name="DEFAULTOP" value="or"> + <INPUT type="hidden" name="DB" value="qt3"> + <INPUT type="hidden" name="FMT" value="qt3"> + <INPUT type="hidden" name="xDB" value="default"> + <INPUT type="submit" value="Search Qt3 API Documentation"> + </DIV> +</FORM> + +<FORM action="/search/omega" method="get"> + <DIV> + <INPUT type="text" name="P"> + <INPUT type="hidden" name="DEFAULTOP" value="or"> + <INPUT type="hidden" name="DB" value="qt4"> + <INPUT type="hidden" name="FMT" value="qt4"> + <INPUT type="hidden" name="xDB" value="default"> + <INPUT type="submit" value="Search Qt4 API Documentation"> + </DIV> +</FORM> + +<FORM action="/search/omega" method="get"> + <DIV> + <INPUT type="text" name="P"> + <INPUT type="hidden" name="DEFAULTOP" value="or"> + <INPUT type="hidden" name="DB" value="trinity_api"> + <INPUT type="hidden" name="FMT" value="trinity_api"> + <INPUT type="hidden" name="xDB" value="default"> + <INPUT type="submit" value="Search Trinity API Documentation"> + </DIV> +</FORM> + +<?php + doFooter(); +?> |