The po4a.cfg rules to parse the HTML and Python files were set to
parse the files as manual pages by mistake. Corrected this in po4a.cfg,
as well as converted the parsed HTML files to XHTML for more reliable
parsing, as the po4a parser is targeted at XHTML.
This make it easier to translate the HTML and Python files, and
require the POT file to be regenerated.
When using the tool database interface ([EMCIO]DB_PROGRAM)
it may be useful to reload tooldata from within
long-running auto-mode gcode programs to benefit
from updates in the database.
This commit uses: #define ALWAYS_ALLOW_RELOAD_TOOLDATA
with a sync and updates of actual position.
Alternate provisions:
Use #undef ALWAYS_ALLOW_RELOAD_TOOLDATA
to disallow tooldata reload if there is a
currently loaded tool
Conflicts:
src/hal/drivers/mesa-hostmot2/sserial.c
src/po/gmoccapy/zh_CN.po
src/po/zh_CN.po
I resolved the merge conflicts in the Chinese translations by choosing the
version in master, on the advise of Solitarily (our Chinese translator).
If you write to 59 Temple Place you're unlikely to get a response.
Let's realign the address with a more up-to-date one from [1].
[1] https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
This is purely a cosmetic change, doesn't affect the meaning of the
license. Done to make rpmlint happy.
Signed-off-by: Lubomir Rintel <lkundrak@v3.sk>
g74 (left-hand), g84 (right-hand)
- assumes spindle running cw(g84), ccw(g74)
- feedrate > 0
- takes optional P word (dwell at bottom of hole before feedrate retract)
canon: add optional wait_for_atspeed parameter
normally, turning the spindle on makes the next feed move wait for spindle
at speed. A floating tap needs an immediate reverse feed out, so the
wait needs to be suppressed in this case.
Pass this from canon through task to motion, and do the right thing in
motion. Also adapt gcodemodule.cc,saicanon.cc for new calling convention,
and make task pass it on to motion from canon.
Tests for G84/G74 Floating tapping cycles
Closes#120.
Signed-off-by: Tero Kaarlela <tero.kaarlela@eka-sorvaus.fi>
also fix placement of anchors, it was discovered that an anchor
must be on the line before the title and nothing else on the line
or the doc magic would generate a different link.
Signed-off-by: John Thornton <bjt128@gmail.com>