diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2021-03-04 02:31:13 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2021-03-11 19:03:51 +0100 |
commit | 5fcce6fc4023ea319d527a8ce3b5573ff0e42b0b (patch) | |
tree | 0b6e31f65ffadcdd29d85a03b92a2094d81c94c2 | |
parent | 6d1d2dd9cf1a0b5d6d12562978b7c62b7dd2c35d (diff) | |
download | website-core-5fcce6fc4023ea319d527a8ce3b5573ff0e42b0b.tar.gz website-core-5fcce6fc4023ea319d527a8ce3b5573ff0e42b0b.zip |
The entry page for documentation changed to serve as a signpost.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
-rw-r--r-- | docs/index.php | 73 |
1 files changed, 33 insertions, 40 deletions
diff --git a/docs/index.php b/docs/index.php index 8aed137..379c13a 100644 --- a/docs/index.php +++ b/docs/index.php @@ -12,46 +12,39 @@ 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/">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> +<h2>Documentation</h2> + +<p>The documentation is divided by the target group – for users and for developers, +and according to the way it is maintained – the pages on the web and categories and +pages in Wiki.</p> + +<h3>For users</h3> + +<ul> +<li><a href="https://wiki.trinitydesktop.org"> +Wiki pages</a></li> +<li><a href="https://wiki.trinitydesktop.org/Category:Documentation"> +Category Documentation</a></li> +<li><a href="https://wiki.trinitydesktop.org/Category:Documentation#Installing_from_a_Package_Manager"> +Installation instructions</a></li> +<li><a href="../applications.php"> +Application information</a></li> +<li><a href="../faq/"> +Frequently Asked Questions</a></li> +</ul> + + +<h3>For developers</h3> + +<ul> +<li><a href="https://wiki.trinitydesktop.org/Category:Developers"> +Category Developers</a></li> +<li><a href="../development.php"> +Development section</a></li> +<li><a href="../apidocs.php"> +API documentation</a></li> +</ul> + <?php doFooter(); |