-
-
-
- VERSIONSTRING
-
-
-
-
-
-
-

-
T_WELCOME
-
-
-
-
-
-
- SECTION_NEW_FILE
-
- SECTION_RECENTFILES
-
-
-
- SECTION_EXAMPLES
-
- SECTION_CUSTOM
-
-
-
-
-
-
-
-
T_NOTES
-
-
-
-
-
-
-
-
-
-
-
T_GENERALDOCUMENTATION
-
-
-
T_DESCR_USERHUB
-
-
-
T_DESCR_POWERHUB
-
-
-
T_DESCR_DEVHUB
-
-
-
T_DESCR_MANUAL
-
-
-
-
-
-
T_WBHELP
-
-
T_DESCR_WBHELP
-
- UL_WORKBENCHES
-
-
-
-
-
-
T_COMMUNITYHELP
-
-
T_DESCR_COMMUNITYHELP1
-
-
T_DESCR_COMMUNITYHELP2
-
-
T_DESCR_COMMUNITYHELP3
-
-
-
-
-
-
T_ADDONS
-
-
T_DESCR_ADDONS
-
-
T_OFFLINEPLACEHOLDER
-
-
-
-
-
-
-
-
-
-
-
-
T_RECENTCOMMITS
-
-
-
-
-
-
T_OFFLINEPLACEHOLDER
-
-
-
-
-
-
T_FORUM
-
-
-
-
-
-
T_OFFLINEPLACEHOLDER
-
-
-
-
-
-
-
-
-
-
diff --git a/src/Mod/Start/StartPage/StartPage.js b/src/Mod/Start/StartPage/StartPage.js
deleted file mode 100644
index c0fd178a5a..0000000000
--- a/src/Mod/Start/StartPage/StartPage.js
+++ /dev/null
@@ -1,187 +0,0 @@
-var allowDownloads = 0;
-var showForum = 0;
-var wblist = [];
-
-function toggle(tab)
-{
-
- // switch to the given tab ID ("tab1", "tab2", etc...)
-
- var tabs = document.getElementById("tabs").childElementCount;
- document.getElementById(tab).classList.remove("hidden");
- document.getElementById("h" + tab).classList.add("active");
- for (var i = 1; i < tabs; i++) {
- if ("tab" + i != tab) {
- document.getElementById("tab" + i).classList.add("hidden");
- document.getElementById("htab" + i).classList.remove("active");
- }
- }
-}
-
-
-function load()
-{
-
- // run at startup
-
- if (localStorage["notepad"]) {
- document.getElementById("notepad").value =
- localStorage["notepad"]; // Load notepad from local storage
- }
- document.getElementById("notepad").addEventListener("input", function() {
- localStorage.setItem("notepad",
- document.getElementById("notepad").value); // Save notepad on type
- }, false);
-
- if (allowDownloads == 1) {
- // load latest commits
- var ddiv = document.getElementById("commits");
- ddiv.innerHTML = "Connecting...";
- var tobj = new JSONscriptRequest(
- 'https://api.github.com/repos/FreeCAD/FreeCAD/commits?callback=printCommits');
- tobj.buildScriptTag(); // Build the script tag
- tobj.addScriptTag(); // Execute (add) the script tag
- ddiv.innerHTML = "Downloading latest news...";
- // load addons list
- ddiv = document.getElementById("addons");
- ddiv.innerHTML = "Connecting...";
- var tobj = new JSONscriptRequest(
- 'https://api.github.com/repos/FreeCAD/FreeCAD-addons/contents?callback=printAddons');
- tobj.buildScriptTag(); // Build the script tag
- tobj.addScriptTag(); // Execute (add) the script tag
- ddiv.innerHTML = "Downloading addons list...";
- if (showForum == 1) {
- // load forum recent posts
- ddiv = document.getElementById("forum");
- ddiv.innerHTML = "Connecting...";
- var tobj = new JSONscriptRequest(
- 'https://www.freecad.org/xml-to-json.php?callback=printForum&url=https://forum.freecad.org/feed.php');
- tobj.buildScriptTag(); // Build the script tag
- tobj.addScriptTag(); // Execute (add) the script tag
- ddiv.innerHTML = "Downloading addons list...";
- }
- }
-}
-
-
-function printCommits(data)
-{
-
- // json callback for git commits
-
- var ddiv = document.getElementById('commits');
- ddiv.innerHTML = "Received";
- var html = ['