Re: gEDA-user: skpi_drc patch

2011-06-21 Thread DJ Delorie
> I can edit the pcb.texi document, but I have no clue where to put the related > information. > > Or... shall I create an other document? Say... a text file? > > What is our documentation policy? We don't have anything for "known attributes" yet. I'm open to suggestions. For now, a note in t

Re: gEDA-user: skpi_drc patch

2011-06-20 Thread Kovacs Levente
On Mon, 20 Jun 2011 00:21:24 -0400 DJ Delorie wrote: > Can you work on some documentation for it too? Sure. I can edit the pcb.texi document, but I have no clue where to put the related information. Or... shall I create an other document? Say... a text file? What is our documentation policy?

Re: gEDA-user: skpi_drc patch

2011-06-19 Thread DJ Delorie
Applied. Thanks! Can you work on some documentation for it too? ___ geda-user mailing list geda-user@moria.seul.org http://www.seul.org/cgi-bin/mailman/listinfo/geda-user

Re: gEDA-user: skpi_drc patch

2011-06-19 Thread Levente Kovacs
On Fri, 17 Jun 2011 17:30:22 -0400 DJ Delorie wrote: > You want the (already global) AttributeGet() function. > > l->no_drc = AttributeGet (l, "PCB::skip-drc") != NULL; > > This does assume that the attribute has *some* value, even if the > value is the empty string. Thanks for pointing this

Re: gEDA-user: skpi_drc patch

2011-06-17 Thread DJ Delorie
> + l->no_drc = lookup_attr (&(l->Attributes), "PCB::skip-drc") != NULL; You want the (already global) AttributeGet() function. l->no_drc = AttributeGet (l, "PCB::skip-drc") != NULL; This does assume that the attribute has *some* value, even if the value is the empty string. __

gEDA-user: skpi_drc patch

2011-06-17 Thread Levente Kovacs
Attached you can find the "skip_drc" patch for the current head. It would be nice if it was checked in to git HEAD. Thanks, Levente -- Levente Kovacs http://levente.logonex.eu diff --git a/src/action.c b/src/action.c index 4f2e401..af93c19 100644 --- a/src/action.c +++ b/src/action.c @@ -6947,