I use the javascript menu of Milonic.
I want to use HTTRACK to make a static copy of the intranet
website.
But the liks in the JAvascript are not taken;
e.g.
16:19:28 Error: "Object Not Found" (404) at link
prit/text=Use%20of%20Technical%20data;url=http://prit/plm.asp?T=1;
(from prit/plm.menu.js)
16:19:28 Error: "Object Not Found" (404) at link
prit/text=Creation%20of%20Technical%20data;url=http://prit/plm.asp?T=2;
(from prit/plm.menu.js)
16:19:28 Error: "Object Not Found" (404) at link
prit/text=Updates%20of%20Technical%20data;url=http://prit/plm.asp?T=3;
(from prit/plm.menu.js)
original javascript source lines:
with(milonic=new menuname("KPI")){
style=menuStyle;
aI("text=Use of Technical data;url=http://prit/plm.asp?T=1;");
aI("text=Creation of Technical
data;url=http://prit/plm.asp?T=2;");
aI("text=Updates of Technical
data;url=http://prit/plm.asp?T=3;");
In the downloaded & modified by httrack I see:
with(milonic=new menuname("KPI")){
style=menuStyle;
aI("text=Use%20of%20Technical%20data;url=http__/prit/plmdb83.html?T=1;");
aI("text=Creation%20of%20Technical%20data;url=http__/prit/plma78a.html?T=2;");
aI("text=Updates%20of%20Technical%20data;url=http__/prit/plmd666.html?T=3;");
|