]> granicus.if.org Git - graphviz/commitdiff
attrs.html: Rename attr.uses to used_by
authorMark Hansen <markhansen@google.com>
Thu, 22 Oct 2020 10:11:58 +0000 (21:11 +1100)
committerMark Hansen <markhansen@google.com>
Thu, 22 Oct 2020 10:11:58 +0000 (21:11 +1100)
Matches table header.

Makes more sense when you're looking at an attribute definition

doc/infosrc/mkattrs.py
doc/infosrc/templates/attrs.html.j2

index 9c59968c901e1ed9583f5755a659eb378a1ea22c..fa461612442550df7db818bea0abe5d385717e61 100755 (executable)
@@ -19,7 +19,7 @@ import templates
 class Attribute:
     name: str
     # use string : this is a string formed of G,N,C,E
-    uses: str
+    used_by: str
     kinds: List[str]
     flags: List[str]
     html_description: str
@@ -41,13 +41,13 @@ with open(sys.argv[1]) as attrs_in:
 
         if line.startswith(':'):
             # This is a header line. Grab out the values.
-            #    :name:uses:kind[:dflt[:minv]];  [notes]
+            #    :name:used_by:kind[:dflt[:minv]];  [notes]
             headers, _, flags = line.rpartition(';')
             parts = headers.split(':')
 
             attr = Attribute(
                 name=parts[1],
-                uses=parts[2],
+                used_by=parts[2],
                 kinds=parts[3].split('/'),
                 flags=[flag for flag in flags.strip().split(',') if flag],
                 # Set an empty string html description, ready to append to.
index 7c24fa8896e81e3edb66eee63d9d4a8d8b23ab5c..7e90421d57b353242c9e8a23b24d10fe80b2c44d 100644 (file)
@@ -92,7 +92,7 @@ of the layout programs.
 {% for attr in attrs %}
 <TR>
   <TD><A ID="{{ attr.a_anchor }}" HREF="#{{ attr.d_anchor }}">{{ attr.name }}</A></TD>
-  <TD>{{ attr.uses }}</TD>
+  <TD>{{ attr.used_by }}</TD>
   <TD>
   {%- for kind in attr.kinds -%}
     {%- if not loop.first -%}