Index: trunk/doc/user/09_appendix/action_details.html =================================================================== --- trunk/doc/user/09_appendix/action_details.html (revision 20582) +++ trunk/doc/user/09_appendix/action_details.html (revision 20583) @@ -463,7 +463,85 @@ it. Note that freeze/thaw requests may nest, with the netlist being fully thawed only when all pending freezes are thawed. You can bypass the nesting by using forcethaw , which resets the freeze count and immediately updates the GUI. +

+ Argument summary: +

+ +

+ + + + + + + + + + + + + + + + + + + + + + +
+ + + +
+ find + + Nets which apply are marked @emph{found} and are drawn in the + +connected-color + + color. +
+ select + + Nets which apply are selected. +
+ rats + + Nets which apply are marked as available for the rats nest. +
+ norats + + Nets which apply are marked as not available for the rats nest. +
+ clear + + Clears the netlist. +
+ add + + Add the given pin to the given netlist, creating either if needed. +
+ swap + + Swap the connections one end of two selected rats and pins. +
+ sort + + Called after a list of add's, this sorts the netlist. +
+ freeze +
+ thaw +
+ forcethaw +
+ Temporarily prevents changes to the netlist from being reflected in the GUI. +
+ +

printcalibrate

This will print a calibration page, which you would measure and type the measurements in, so that future printouts will be more precise. Index: trunk/doc/user/09_appendix/action_src/netlist.html =================================================================== --- trunk/doc/user/09_appendix/action_src/netlist.html (revision 20582) +++ trunk/doc/user/09_appendix/action_src/netlist.html (revision 20583) @@ -17,3 +17,39 @@ only when all pending freezes are thawed. You can bypass the nesting by using forcethaw, which resets the freeze count and immediately updates the GUI. +

+Argument summary: +

+

+ +
+ + +
find + Nets which apply are marked @emph{found} and are drawn in the + connected-color color. + +
select + Nets which apply are selected. + +
rats + Nets which apply are marked as available for the rats nest. + +
norats + Nets which apply are marked as not available for the rats nest. + +
clear + Clears the netlist. + +
add + Add the given pin to the given netlist, creating either if needed. + +
swap + Swap the connections one end of two selected rats and pins. + +
sort + Called after a list of add's, this sorts the netlist. + +
freeze
thaw
forcethaw +
Temporarily prevents changes to the netlist from being reflected in the GUI. +
Index: trunk/src/netlist_act.c =================================================================== --- trunk/src/netlist_act.c (revision 20582) +++ trunk/src/netlist_act.c (revision 20583) @@ -160,45 +160,6 @@ /* DOC: netlist.html */ -/* %start-doc actions Netlist - -@table @code - -@item find -Nets which apply are marked @emph{found} and are drawn in the -@code{connected-color} color. - -@item select -Nets which apply are selected. - -@item rats -Nets which apply are marked as available for the rats nest. - -@item norats -Nets which apply are marked as not available for the rats nest. - -@item clear -Clears the netlist. - -@item add -Add the given pin to the given netlist, creating either if needed. - -@item swap -Swap the connections one end of two selected rats and pins. - -@item sort -Called after a list of add's, this sorts the netlist. - -@item freeze -@itemx thaw -@itemx forcethaw -Temporarily prevents changes to the netlist from being reflected in -the GUI. - -@end table - -%end-doc */ - typedef void (*NFunc) (pcb_lib_menu_t *, pcb_lib_entry_t *); static fgw_error_t pcb_act_Netlist(fgw_arg_t *res, int argc, fgw_arg_t *argv)