Index: trunk/doc/user/09_appendix/action_details.html =================================================================== --- trunk/doc/user/09_appendix/action_details.html (revision 20601) +++ trunk/doc/user/09_appendix/action_details.html (revision 20602) @@ -88,6 +88,34 @@

The join flag determines whether a line or arc, drawn to intersect a polygon, electrically connects to the polygon or not. When joined, the line/arc is simply drawn over the polygon, making an electrical connection. When not joined, a gap is drawn between the line and the polygon, insulating them from each other. +

changename

+

+Arguments: +

+ + + + + + + + + +
+ Object + + Changes the name of the element under the cursor. +
+ Layout + + Changes the name of the layout. This is printed on the fab drawings. +
+ Layer + + Changes the name of the currently active layer. +
+ +

changepinname

This can be especially useful for annotating pin names from a schematic to the layout without requiring knowledge of the pcb file format. Index: trunk/doc/user/09_appendix/action_src/changename.html =================================================================== --- trunk/doc/user/09_appendix/action_src/changename.html (nonexistent) +++ trunk/doc/user/09_appendix/action_src/changename.html (revision 20602) @@ -0,0 +1,15 @@ +Arguments: +

+ + +
Object + Changes the name of the element under the cursor. + +
Layout + Changes the name of the layout. This is printed on the fab drawings. + +
Layer + Changes the name of the currently active layer. + +
+ Index: trunk/src/change_act.c =================================================================== --- trunk/src/change_act.c (revision 20601) +++ trunk/src/change_act.c (revision 20602) @@ -471,29 +471,9 @@ return 0; } -/* --------------------------------------------------------------------------- */ - static const char pcb_acts_ChangeName[] = "ChangeName(Object)\n" "ChangeName(Layout|Layer)"; - static const char pcb_acth_ChangeName[] = "Sets the name (or pin number) of objects."; - -/* %start-doc actions ChangeName - -@table @code - -@item Object -Changes the name of the element under the cursor. - -@item Layout -Changes the name of the layout. This is printed on the fab drawings. - -@item Layer -Changes the name of the currently active layer. - -@end table - -%end-doc */ - +/* DOC: changename.html */ static fgw_error_t pcb_act_ChangeName(fgw_arg_t *res, int argc, fgw_arg_t *argv) { int op;