summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2021-02-16 00:54:26 +0100
committerSlávek Banko <slavek.banko@axis.cz>2021-03-11 19:03:51 +0100
commitfe51fb2ff68dffc834b37a2ff88cec1df6d65c50 (patch)
tree628c0c89348dc2e8f609b8aa7cd56a5c274570f3
parentac8fc59f12e38969b36529adf47bbcd9f8387bc0 (diff)
downloadwebsite-core-fe51fb2ff68dffc834b37a2ff88cec1df6d65c50.tar.gz
website-core-fe51fb2ff68dffc834b37a2ff88cec1df6d65c50.zip
Create a Development Resources page. Initial arrangement of
existing links between the Development and Resources pages. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
-rw-r--r--development.php22
-rw-r--r--devresources.php33
2 files changed, 41 insertions, 14 deletions
diff --git a/development.php b/development.php
index fb37f30..cdcf7fc 100644
--- a/development.php
+++ b/development.php
@@ -2,36 +2,30 @@
include("tde-head-and-foot.php");
doHeader("Trinity Development", "Development", "_");
?>
-<p> This page is a portal to the various resources used in the development of the Trinity Desktop Environment.</p>
+<p>This page is a portal to the various resources used in the development of the Trinity Desktop Environment.</p>
<h2/>Resources</h2>
<h3>Repositories</h3>
<div>
- <a href="cgit/">Official GIT Repository</a> <br>
- <a href="https://websvn.kde.org/branches/trinity/">Old official SVN on KDE.org</a> <br>
+ <a href="https://mirror.git.trinitydesktop.org/gitea/TDE">Official GIT Repository</a> <br>
<a href="patches/">Commit patches from GIT</a> <br>
<a href="https://wiki.trinitydesktop.org/Project_GIT_Information#Using_GIT">Obtaining the source code</a> <br>
</div>
+
<h3>Web Pages and Documentation</h3>
<div>
<a href="https://wiki.trinitydesktop.org/Category:Developers">Developer's Area on the Wiki</a> <br>
<a href="https://wiki.trinitydesktop.org/Project_RoadMap">Project Roadmap</a> <br>
- <a href="./apidocs.php">API Documentation</a> <br>
- <a href="http://etherpad.trinitydesktop.org">Official Etherpad [a real-time collaboration tool]</a> <br>
- </div>
-<h3>Other</h3>
- <div>
- <a href="https://quickbuild.pearsoncomputing.net/~trinity/+archive/trinity-nightly-builds/+packages?start=0&batch=300" title="Nightly Builds">Nightly Builds</a> <br>
- <a href="https://quickbuild.pearsoncomputing.net/~trinity/+archive/ubuntu/trinity-nightly-builds/" title="Nightly Builds Landing Page">Nightly Builds Landing Page</a> <br>
- <a href="https://wiki.trinitydesktop.org/Nightly_Builds" title="Nightly Builds Installation Instructions">Nightly Builds Installation Instructions</a> <br>
<a href="./mailinglist.php">Mailing Lists</a> <br>
+ <a href="contributors.php">TDE Team</a><br/>
+ <a href="cla/">CLAs</a><br/>
</div>
-<h3>External Links</h3>
+
+<h3>Other</h3>
<div>
- <a href="https://www.openhub.net/p/tde">Code Stats on OpenHub</a> <br>
+ <a href="devresources.php">Resources</a><br/>
</div>
- </p>
<?php
doFooter();
diff --git a/devresources.php b/devresources.php
new file mode 100644
index 0000000..88f4aba
--- /dev/null
+++ b/devresources.php
@@ -0,0 +1,33 @@
+<?php
+ include("tde-head-and-foot.php");
+ doHeader("Trinity Development Resources", "Development", "Resources");
+?>
+
+<h2/>Resources</h2>
+
+<h3>Web Pages and Documentation</h3>
+ <div>
+ <a href="apidocs.php">API Documentation</a><br/>
+ <a href="crfe/">Supported RFEs</a><br/>
+ <a href="relatedprojects.php">Related projects</a><br/>
+ <a href="http://etherpad.trinitydesktop.org">Official Etherpad [a real-time collaboration tool]</a> <br>
+ </div>
+
+<h3>Other</h3>
+ <div>
+ <a href="https://quickbuild.io/~trinity/+archive/trinity-nightly-builds/+packages?start=0&batch=300" title="Nightly Builds">Nightly Builds</a> <br>
+ <a href="https://quickbuild.io/~trinity/+archive/ubuntu/trinity-nightly-builds/" title="Nightly Builds Landing Page">Nightly Builds Landing Page</a> <br>
+ <a href="https://wiki.trinitydesktop.org/Nightly_Builds" title="Nightly Builds Installation Instructions">Nightly Builds Installation Instructions</a> <br>
+ <a href="https://mirror.git.trinitydesktop.org/gitea/uLab/">uLab GIT</a><br/>
+ <a href="https://quickbuild.io/~trinity/+archive/ubuntu/ulab">uLab Builds</a><br/>
+ </div>
+
+<h3>External Links</h3>
+ <div>
+ <a href="https://www.openhub.net/p/tde">Code Stats on OpenHub</a><br/>
+ <a href="https://websvn.kde.org/branches/trinity/">Old official SVN on KDE.org</a><br/>
+ </div>
+
+<?php
+ doFooter();
+?>