Explore usage of automatic icons on node graphs.

This commit is contained in:
Sergio Martínez Portela 2025-03-11 01:04:59 +01:00
parent e35fafb18e
commit 8376c0ffa9
2 changed files with 21 additions and 3 deletions

View File

@ -102,11 +102,17 @@ def gen(headline_id, graph, doc_to_headline_remapping):
f.write('K=0.3\n') f.write('K=0.3\n')
f.write('edge[len = 1]\n') f.write('edge[len = 1]\n')
def draw_subgraph(node_id, depth): def draw_subgraph(node_id, depth):
emoji = ''
if g[node_id]['class'] == 'listing':
emoji = '🪧 '
f.write("subgraph cluster_{} {{\n".format(node_id.replace("-", "_"))) f.write("subgraph cluster_{} {{\n".format(node_id.replace("-", "_")))
f.write(' URL="./{}.node.html"\n'.format(node_id)) f.write(' URL="./{}.node.html"\n'.format(node_id))
f.write(' class="{}"\n'.format('cluster-depth-' + str(depth - 1))) f.write(' class="{}"\n'.format('cluster-depth-' + str(depth - 1)))
f.write(" fontname=\"{}\"\n".format(font_name)) f.write(" fontname=\"{}\"\n".format(font_name))
f.write(" label=\"{}\"\n".format(g[node_id]['title'].replace("\"", "'"))) f.write(" label=\"{}\"\n".format(
emoji + g[node_id]['title'].replace("\"", "'")
))
f.write("\n") f.write("\n")
# print("T: {}".format(in_emacs_tree), file=sys.stderr) # print("T: {}".format(in_emacs_tree), file=sys.stderr)
@ -116,8 +122,12 @@ def gen(headline_id, graph, doc_to_headline_remapping):
if k in in_emacs_tree: if k in in_emacs_tree:
draw_subgraph(k, depth=depth + 1) draw_subgraph(k, depth=depth + 1)
else: else:
emoji = ''
if v['class'] == 'listing':
emoji = '🪧 '
print(" _" + k.replace("-", "_") print(" _" + k.replace("-", "_")
+ "[label=\"" + v["title"].replace("\"", "'") + "\", " + "[label=\"" + emoji + v["title"].replace("\"", "'") + "\", "
+ "URL=\"" + k + ".node.html\", " + "URL=\"" + k + ".node.html\", "
+ "fontname=\"" + font_name + "\", " + "fontname=\"" + font_name + "\", "
+ "class=\"cluster-depth-" + str(depth) + "\"" + "class=\"cluster-depth-" + str(depth) + "\""
@ -130,8 +140,12 @@ def gen(headline_id, graph, doc_to_headline_remapping):
for k, v in g.items(): for k, v in g.items():
if k not in in_emacs: if k not in in_emacs:
emoji = ''
if v['class'] == 'listing':
emoji = '🪧 '
print("_" + k.replace("-", "_") print("_" + k.replace("-", "_")
+ "[label=\"" + v["title"].replace("\"", "'") + "\", " + "[label=\"" + emoji + v["title"].replace("\"", "'") + "\", "
+ "fontname=\"" + font_name + "\", " + "fontname=\"" + font_name + "\", "
+ "URL=\"" + k + ".node.html\"];", file=f) + "URL=\"" + k + ".node.html\"];", file=f)

View File

@ -273,6 +273,10 @@ def regen_all(src_top, dest_top, subpath, *, docs=None, db=None):
"title": org_rw.org_rw.token_list_to_plaintext(headline.title.contents).strip(), "title": org_rw.org_rw.token_list_to_plaintext(headline.title.contents).strip(),
"links": links, "links": links,
"depth": headline.depth, "depth": headline.depth,
"shallow_tags": headline.shallow_tags,
"all_tags": headline.tags,
"state": headline.state,
"class": headline.get_property('CLASS'),
} }
if headline.id in main_headline_to_docid: if headline.id in main_headline_to_docid:
graph[main_headline_to_docid[headline.id]] = graph[headline.id] graph[main_headline_to_docid[headline.id]] = graph[headline.id]