Index: trunk/doc/user/09_appendix/action_details.html =================================================================== --- trunk/doc/user/09_appendix/action_details.html (revision 20632) +++ trunk/doc/user/09_appendix/action_details.html (revision 20633) @@ -1128,6 +1128,46 @@ redo action allows you to recover from the last undo command. You might want to do this if you thought that undo was going to revert something other than what it actually did (in case you are confused about which operations are un-doable), or if you have been backing up through a long undo list and over-shoot your stopping point. Any change that is made since the undo in question will trim the redo list. For example if you add ten lines, then undo three of them you could use redo to put them back, but if you move a line on the board before performing the redo, you will lose the ability to "redo" the three "undone" lines. +

report

+

+Arguments: +

+ + + + + + + + + + + + + +
+ Object + + The object under the crosshair will be reported, describing various aspects of the object. +
+ DrillReport + + A report summarizing the number of drill sizes used, and how many of each, will be produced. +
+ FoundPins + + A report listing all pins and pads which are marked as "found" will be produced. +
+ NetLength + + The name and length of the net under the crosshair will be reported to the message log. +
+ AllNetLengths + + The name and length of the net under the crosshair will be reported to the message log. An optional parameter specifies mm, mil, pcb, or in units +
+ +

reportdialog

This is a shortcut for Index: trunk/doc/user/09_appendix/action_reference.html =================================================================== --- trunk/doc/user/09_appendix/action_reference.html (revision 20632) +++ trunk/doc/user/09_appendix/action_reference.html (revision 20633) @@ -12,7 +12,7 @@

Action Reference

@@ -176,7 +176,7 @@ - + Index: trunk/doc/user/09_appendix/action_src/report.html =================================================================== --- trunk/doc/user/09_appendix/action_src/report.html (nonexistent) +++ trunk/doc/user/09_appendix/action_src/report.html (revision 20633) @@ -0,0 +1,26 @@ +Arguments: +

+

\n -This is pcb-rnd 2.0.0 (svn r18442) an interactive printed circuit board editor , Revision: 20631 +This is pcb-rnd 2.0.0 (svn r18442) an interactive printed circuit board editor , Revision: 20632
Action Description Syntax Plugin
AboutPresent the about boxAbout()dialogs plugin
RenumberBlockTODORenumberBlock(old_base,new_base)renumber plugin
RenumberBufferTODORenumberBlock(old_base,new_base)renumber plugin
ReplaceFootprintReplace the footprint of the selected components with the footprint specified.ReplaceFootprint()
ReportProduce various report.Report(Object|DrillReport|FoundPins|NetLength|NetLengthTo|AllNetLengths|[,name])report plugin
ReportProduce various report.Report(Object|DrillReport|FoundPins|NetLength|NetLengthTo|AllNetLengths|[,name])report plugin
ReportObjectReport on the object under the crosshairReportObject()report plugin
ReturnSimulate a passing or failing action.Return(0|1)oldactions plugin
RipUpRipup auto-routed tracksRipUp(All|Selected|Element)
+
Object + The object under the crosshair will be reported, describing various + aspects of the object. + +
DrillReport + A report summarizing the number of drill sizes used, and how many of + each, will be produced. + +
FoundPins + A report listing all pins and pads which are marked as "found" will + be produced. + +
NetLength + The name and length of the net under the crosshair will be reported to + the message log. + +
AllNetLengths + The name and length of the net under the crosshair will be reported to + the message log. An optional parameter specifies mm, mil, pcb, or in + units + +
+ Index: trunk/src_plugins/report/report.c =================================================================== --- trunk/src_plugins/report/report.c (revision 20632) +++ trunk/src_plugins/report/report.c (revision 20633) @@ -766,40 +766,7 @@ return 0; } -/* --------------------------------------------------------------------------- - * reports on an object - */ - - -/* %start-doc actions Report - -@table @code - -@item Object -The object under the crosshair will be reported, describing various -aspects of the object. - -@item DrillReport -A report summarizing the number of drill sizes used, and how many of -each, will be produced. - -@item FoundPins -A report listing all pins and pads which are marked as ``found'' will -be produced. - -@item NetLength -The name and length of the net under the crosshair will be reported to -the message log. - -@item AllNetLengths -The name and length of the net under the crosshair will be reported to -the message log. An optional parameter specifies mm, mil, pcb, or in -units - -@end table - -%end-doc */ - +/* DOC: report.html */ static fgw_error_t pcb_act_Report(fgw_arg_t *res, int argc, fgw_arg_t *argv) { const char *cmd, *name;