Startpage: Fixed links
This commit is contained in:
parent
c6fec1373d
commit
dbdff25796
|
@ -84,7 +84,7 @@ text34 = translate("StartPage","creation time:")
|
||||||
text35 = translate("StartPage","last modified:")
|
text35 = translate("StartPage","last modified:")
|
||||||
text36 = translate("StartPage","location:")
|
text36 = translate("StartPage","location:")
|
||||||
text37 = translate("StartPage","User manual")
|
text37 = translate("StartPage","User manual")
|
||||||
text38 = translate("StartPage","http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=Online_Help_Toc")
|
text38 = translate("StartPage","http://www.freecadweb.org/wiki/index.php?title=Online_Help_Toc")
|
||||||
text39 = translate("StartPage","Tutorials")
|
text39 = translate("StartPage","Tutorials")
|
||||||
text40 = translate("StartPage","Python resources")
|
text40 = translate("StartPage","Python resources")
|
||||||
text41 = translate("StartPage","File not found")
|
text41 = translate("StartPage","File not found")
|
||||||
|
@ -97,7 +97,7 @@ text47 = translate("StartPage","The section of the FreeCAd website dedicate dto
|
||||||
text48 = translate("StartPage","A blog dedicated to teaching FreeCAD, maintained by members of the FreeCAD community")
|
text48 = translate("StartPage","A blog dedicated to teaching FreeCAD, maintained by members of the FreeCAD community")
|
||||||
text49 = translate("StartPage","Getting started")
|
text49 = translate("StartPage","Getting started")
|
||||||
text50 = translate("StartPage","The FreeCAD interface is divided in workbenches, which are sets of tools suited for a specific task. You can start with one of the workbenches in this list, or with the complete workbench, which presents you with some of the most used tools gathered from other workbenches. Click to read more about workbenches on the FreeCAD website.")
|
text50 = translate("StartPage","The FreeCAD interface is divided in workbenches, which are sets of tools suited for a specific task. You can start with one of the workbenches in this list, or with the complete workbench, which presents you with some of the most used tools gathered from other workbenches. Click to read more about workbenches on the FreeCAD website.")
|
||||||
text51 = translate("StartPage","http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=Workbench_Concept")
|
text51 = translate("StartPage","http://www.freecadweb.org/wiki/index.php?title=Workbench_Concept")
|
||||||
text52 = translate("StartPage","Ship Design")
|
text52 = translate("StartPage","Ship Design")
|
||||||
text53 = translate("StartPage","Designing and calculating ships")
|
text53 = translate("StartPage","Designing and calculating ships")
|
||||||
text54 = translate("StartPage","The <b>Ship Design</b> module offers several tools to help ship designers to view, model and calculate profiles and other specific properties of ship hulls.")
|
text54 = translate("StartPage","The <b>Ship Design</b> module offers several tools to help ship designers to view, model and calculate profiles and other specific properties of ship hulls.")
|
||||||
|
@ -159,7 +159,7 @@ page = """
|
||||||
ddiv.innerHTML = "Done fetching";
|
ddiv.innerHTML = "Done fetching";
|
||||||
ddiv = document.getElementById("news");
|
ddiv = document.getElementById("news");
|
||||||
ddiv.innerHTML = "Fetching data from the web...";
|
ddiv.innerHTML = "Fetching data from the web...";
|
||||||
var tobj=new JSONscriptRequest('http://twitter.com/status/user_timeline/FreeCADNews.json?count=10&callback=showTweets');
|
var tobj=new JSONscriptRequest('http://pipes.yahoo.com/pipes/pipe.run?_id=da8b612e97a6bb4588b1ce27db30efd9&_render=json&_callback=showTweets');
|
||||||
tobj.buildScriptTag(); // Build the script tag
|
tobj.buildScriptTag(); // Build the script tag
|
||||||
tobj.addScriptTag(); // Execute (add) the script tag
|
tobj.addScriptTag(); // Execute (add) the script tag
|
||||||
ddiv.innerHTML = "Done fetching";
|
ddiv.innerHTML = "Done fetching";
|
||||||
|
@ -182,19 +182,13 @@ page = """
|
||||||
ddiv = document.getElementById('news');
|
ddiv = document.getElementById('news');
|
||||||
ddiv.innerHTML = "Received";
|
ddiv.innerHTML = "Received";
|
||||||
var html = ['<ul>'];
|
var html = ['<ul>'];
|
||||||
for (var i = 0; i < Math.min(5,data.length); i++) {
|
for (var i = 0; i < 8; i++) {
|
||||||
tf = placeLinks(data[i].text);
|
html.push('<li><a href="', data.value.items[i].link, '">', data.value.items[i].title, '</a></li>');
|
||||||
html.push('<li>',tf,'</li>');
|
|
||||||
}
|
}
|
||||||
html.push('</ul>');
|
html.push('</ul>');
|
||||||
ddiv.innerHTML = html.join('');
|
ddiv.innerHTML = html.join('');
|
||||||
}
|
}
|
||||||
|
|
||||||
function placeLinks(text) {
|
|
||||||
result=text.replace(/(https?:\/\/([-\w\.]+)+(:\d+)?(\/([\w\/_\.]*(\?\S+)?)?)?)/g,'<a href="$1">$1</a>');
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
|
@ -286,12 +280,12 @@ page = """
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="block">
|
<div class="block">
|
||||||
<h2>""" + text04 + """ <span class="from">""" + text44 + """</span></h2>
|
<h2>""" + text04 + """</h2>
|
||||||
<div id="youtube">youtube videos</div>
|
<div id="youtube">youtube videos</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="block">
|
<div class="block">
|
||||||
<h2>""" + text05 + """ <span class="from">""" + text42 + """</span></h2>
|
<h2>""" + text05 + """</h2>
|
||||||
<div id="news">news feed</div>
|
<div id="news">news feed</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -354,7 +348,7 @@ def getLinks():
|
||||||
<li><img src="web.png">
|
<li><img src="web.png">
|
||||||
<a onMouseover="show('<p>""" + text07 + """</p>')"
|
<a onMouseover="show('<p>""" + text07 + """</p>')"
|
||||||
onMouseout="show('')"
|
onMouseout="show('')"
|
||||||
href="http://free-cad.sf.net/">""" + text08 + """</a></li>
|
href="http://www.freecadweb.org/">""" + text08 + """</a></li>
|
||||||
<li><img src="web.png">
|
<li><img src="web.png">
|
||||||
<a onMouseover="show('<p>""" + text45 + """</p>')"
|
<a onMouseover="show('<p>""" + text45 + """</p>')"
|
||||||
onMouseout="show('')"
|
onMouseout="show('')"
|
||||||
|
@ -362,11 +356,11 @@ def getLinks():
|
||||||
<li><img src="web.png">
|
<li><img src="web.png">
|
||||||
<a onMouseover="show('<p>""" + text46 + """</p>')"
|
<a onMouseover="show('<p>""" + text46 + """</p>')"
|
||||||
onMouseout="show('')"
|
onMouseout="show('')"
|
||||||
href="http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=Tutorials">""" + text39 + """</a></li>
|
href="http://www.freecadweb.org/wiki/index.php?title=Tutorials">""" + text39 + """</a></li>
|
||||||
<li><img src="web.png">
|
<li><img src="web.png">
|
||||||
<a onMouseover="show('<p>""" + text47 + """</p>')"
|
<a onMouseover="show('<p>""" + text47 + """</p>')"
|
||||||
onMouseout="show('')"
|
onMouseout="show('')"
|
||||||
href="http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=Power_users_hub">""" + text40 + """</a></li>
|
href="http://www.freecadweb.org/wiki/index.php?title=Power_users_hub">""" + text40 + """</a></li>
|
||||||
<li><img src="web.png">
|
<li><img src="web.png">
|
||||||
<a onMouseover="show('<p>""" + text48 + """</p>')"
|
<a onMouseover="show('<p>""" + text48 + """</p>')"
|
||||||
onMouseout="show('')"
|
onMouseout="show('')"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user