Add more category types.

This commit is contained in:
Sergio Martínez Portela 2025-03-11 01:19:05 +01:00
parent 8376c0ffa9
commit 754a389749

View File

@ -4,6 +4,20 @@ import copy
import tempfile import tempfile
import os import os
def get_emoji_for_node(node):
if node['class'] == 'listing':
return '🪧 '
if 'podcast' in node['shallow_tags']:
return '🎙️ '
if 'webradio' in node['shallow_tags']:
return '📻 '
if 'blog' in node['shallow_tags']:
return '📰 '
return ''
@ops_cache.cache @ops_cache.cache
def gen(headline_id, graph, doc_to_headline_remapping): def gen(headline_id, graph, doc_to_headline_remapping):
@ -102,16 +116,12 @@ 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( f.write(" label=\"{}\"\n".format(
emoji + g[node_id]['title'].replace("\"", "'") get_emoji_for_node(g[node_id]) + g[node_id]['title'].replace("\"", "'")
)) ))
f.write("\n") f.write("\n")
@ -122,12 +132,8 @@ 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=\"" + emoji + v["title"].replace("\"", "'") + "\", " + "[label=\"" + get_emoji_for_node(v) + 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) + "\""
@ -140,12 +146,8 @@ 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=\"" + emoji + v["title"].replace("\"", "'") + "\", " + "[label=\"" + get_emoji_for_node(v) + v["title"].replace("\"", "'") + "\", "
+ "fontname=\"" + font_name + "\", " + "fontname=\"" + font_name + "\", "
+ "URL=\"" + k + ".node.html\"];", file=f) + "URL=\"" + k + ".node.html\"];", file=f)