Index: trunk/doc/user/09_appendix/action_details.html =================================================================== --- trunk/doc/user/09_appendix/action_details.html (revision 29601) +++ trunk/doc/user/09_appendix/action_details.html (revision 29602) @@ -3220,7 +3220,10 @@

Syntax summary: -Report(Object|DrillReport|FoundPins|NetLength|NetLengthTo|AllNetLengths|[,name]) +Report([DrillReport|FoundPins|NetLengthTo]) +Report(NetLength, [netname]) +Report(Object|Subc, [log]) +Report(AllNetLengths, [unit])
Help text: Produce various report.
Registered by: @@ -3255,13 +3258,13 @@ NetLength - The name and length of the net under the crosshair will be reported to the message log. + The name and length of the net under the crosshair will be reported to the message log. An optional parameter specifies the netname; when present the length of the named network is printed, else the net under the cursor is used.
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 + The name and length of the net under the crosshair will be reported to the message log. An optional parameter specifies the unit name (e.g. mm)
Index: trunk/doc/user/09_appendix/action_reference.html =================================================================== --- trunk/doc/user/09_appendix/action_reference.html (revision 29601) +++ trunk/doc/user/09_appendix/action_reference.html (revision 29602) @@ -13,7 +13,7 @@ @@ -302,7 +302,7 @@ - + Index: trunk/doc/user/09_appendix/action_src/report.html =================================================================== --- trunk/doc/user/09_appendix/action_src/report.html (revision 29601) +++ trunk/doc/user/09_appendix/action_src/report.html (revision 29602) @@ -15,12 +15,13 @@
-This is pcb-rnd 2.2.0 (svn r29554) an interactive printed circuit board editor , Revision: 29589 +This is pcb-rnd 2.2.0 (svn r29554) an interactive printed circuit board editor , Revision: 29601
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([Selected|Object], [footprint], [dumb])
ReportProduce various report.Report(Object|DrillReport|FoundPins|NetLength|NetLengthTo|AllNetLengths|[,name])report plugin
ReportProduce various report.Report([DrillReport|FoundPins|NetLengthTo])
Report(NetLength, [netname])
Report(Object|Subc, [log])
Report(AllNetLengths, [unit])
report plugin
ReportObjectReport on the object under the crosshairReportObject()report plugin
RipUpRipup auto-routed tracksRipUp(All|Selected|Element)
rnReads netlist.rn [name]shand_cmd plugin
NetLength The name and length of the net under the crosshair will be reported to - the message log. + the message log. An optional parameter specifies the netname; when present + the length of the named network is printed, else the net under the cursor + is used.
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 + the message log. An optional parameter specifies the unit name (e.g. mm)
Index: trunk/src_plugins/report/report.c =================================================================== --- trunk/src_plugins/report/report.c (revision 29601) +++ trunk/src_plugins/report/report.c (revision 29602) @@ -70,7 +70,11 @@ conf_report_t conf_report; -static const char pcb_acts_Report[] = "Report(Object|DrillReport|FoundPins|NetLength|NetLengthTo|AllNetLengths|[,name])"; +static const char pcb_acts_Report[] = + "Report([DrillReport|FoundPins|NetLengthTo])\n" + "Report(NetLength, [netname])\n" + "Report(Object|Subc, [log])\n" + "Report(AllNetLengths, [unit])"; static const char pcb_acth_Report[] = "Produce various report."; #define USER_UNITMASK (pcbhl_conf.editor.grid_unit->allow)