I have a Web-page associated with my board but, unfortunately, it became too large to be hosted using "Website Maker" in the ZetaBoards ACP during a recent edit and update.
Part of the problem with the edited web-page being larger is that it contains over five-hundred Links to various Wiki Pages. So the termappears that many times in the page (with different targets in the xxxxxx location.
Is there any way I can insert a Script to Shorten the repeated part of the URL in my Page, without running a "Google.goo" or "TinyURL" for each of the 500+ targets?
It SEEMS to me that I should be able to create a Script in the Board Template somewhere that would do something like
Part of the problem with the edited web-page being larger is that it contains over five-hundred Links to various Wiki Pages. So the term
Code: Select all
<a href=" http://en.wikipedia.org/wiki/xxxxxxCode: Select all
<TR><TD Class="tlb"><a href="http://en.wikipedia.org/wiki/England">England</a></TD><TD>26</TD><TD Class="tlb"><a href="http://en.wikipedia.org/wiki/Netherlands">Netherlands</a></TD><TD>19 </TD><TD Class="tlb"><a href="http://en.wikipedia.org/wiki/Vatican_City"> Vatican City </a></TD><TD Class="trb">138</TD></TR>
<TR><TD Class="tlb"><a href="http://en.wikipedia.org/wiki/Equatorial_Guinea">Equatorial Guinea</a></TD><TD>199</TD><TD Class="tlb"><a href="http://en.wikipedia.org/wiki/Netherlands_Antilles">Netherlands Antilles</a></TD><TD>7</TD><TD Class="tlb"><a href="http://en.wikipedia.org/wiki/Venezuela">Venezuela</a></TD><TD Class="trb">5</TD></TR>
<TR><TD Class="tlb"><a href="http://en.wikipedia.org/wiki/Eritrea">Eritrea</a></TD><TD>333 </TD><TD Class="tlb"><a href="http://en.wikipedia.org/wiki/New_Caledonia">New Caledonia</a></TD><TD>172</TD><TD Class="tlb"><a href="http://en.wikipedia.org/wiki/Vietnam">Vietnam</a></TD><TD Class="trbr">242</TD></TR>It SEEMS to me that I should be able to create a Script in the Board Template somewhere that would do something like
- SCRIPT
ASSIGN $string $urlA="http://en.wikipedia.org/wiki/"
/SCRIPT
Code: Select all
<TR><TD Class="tlb"><a href=$urlA+England">England</a></TD><TD>26</TD><TD Class="tlb"><a href=$urlA+Netherlands">Netherlands</a></TD><TD>19 </TD><TD Class="tlb"><a href=$urlA+Vatican_City"> Vatican City </a></TD><TD Class="trb">138</TD></TR>
<TR><TD Class="tlb"><a href=$urlA+Equatorial_Guinea">Equatorial Guinea</a></TD><TD>199</TD><TD Class="tlb"><a href=$urlA+Netherlands_Antilles">Netherlands Antilles</a></TD><TD>7</TD><TD Class="tlb"><a href=$urlA+Venezuela">Venezuela</a></TD><TD Class="trb">5</TD></TR>
<TR><TD Class="tlb"><a href=$urlA+Eritrea">Eritrea</a></TD><TD>333 </TD><TD Class="tlb"><a href=$urlA+New_Caledonia">New Caledonia</a></TD><TD>172</TD><TD Class="tlb"><a href=$urlA+Vietnam">Vietnam</a></TD><TD Class="trbr">242</TD></TR>
button. Backseat Moderation will not be tolerated. Poor Support will not be tolerated. Report any posts that fit these categories.
/en.wikipedia.org/wiki/ links that are currently deposited on your webpage, you can use the Notepad replace tool (Ctrl + H).


