ISO for a sysvinit distribution
- BeagleBrainz
- Offline
- User is blocked
- Posts: 1437
- Thank you received: 570
One thing that needs attention is that when clicking the links on the gcode.html (local) they link to linuxcnc.org/docs/devel/html/gcode/g-code.html .......unless the gcode.html page is edited.
Please Log in or Create an account to join the conversation.
Thanks for that, I could probably squeeze them in in a pinch..Ran through a HTML doc build there is about 30MB of stuff.
Edit: It is 300Mb, not 300Kb of remaining space.
Kinda makes you wonder whether it's worth doing. I am sure if there are broken links someone will complain.One thing that needs attention is that when clicking the links on the gcode.html (local) they link to linuxcnc.org/docs/devel/html/gcode/g-code.html .......unless the gcode.html page is edited.
Please Log in or Create an account to join the conversation.
- BeagleBrainz
- Offline
- User is blocked
- Posts: 1437
- Thank you received: 570
if(document.location.protocol == "file:") {
try {
var x = document.implementation.createDocument("", "", null);
x.load("gcode/g-code.html");
x.onerror = fixup_urls;
} catch(err) {
fixup_urls();
}
}
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
- BeagleBrainz
- Offline
- User is blocked
- Posts: 1437
- Thank you received: 570
If firefox that snippet
Changing that snippet to
if(document.location.protocol == "file:") {
try {
var x = document.implementation.createDocument("", "", null);
x.load("gcode/g-code.html");
x.onerror = fixup_urls;
} catch(err) {
fixup_urls();
alert (err);
}
}
I get "TypeError: x.load is not a function" message using fire fox.
It only happens if the protocol is file://
Only my local weberserver it works fine.
Please Log in or Create an account to join the conversation.
I am going to follow the crowd and move to Rob's Mint images and hopefully they will end up being the official LinuxCNC images.
Please Log in or Create an account to join the conversation.
- BeagleBrainz
- Offline
- User is blocked
- Posts: 1437
- Thank you received: 570
And what happens when I finish fighting with my employer and either get back onsite or have to start looking for work.
Apparently I'm not fit enough to get assigned jobs but fit enough to be left on the books. Hopefully FairWork comes up with a solution.
Please Log in or Create an account to join the conversation.
Crikey, the way things are going at the moment we won't be allowed out to go to work. I guess the'll have Corona Cops on every corner.And what happens when I finish fighting with my employer and either get back onsite or have to start looking for work.
Apparently I'm not fit enough to get assigned jobs but fit enough to be left on the books. Hopefully FairWork comes up with a solution.
Please Log in or Create an account to join the conversation.
- twoflowers
- Offline
- User is blocked
- Posts: 120
- Thank you received: 32
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.