Problem:
- Threads not being show when opening ticket
- No JS or other apparent UI errors
Error in Apache logs:
#!/usr/bin/env python3 | |
# Fetch id, name, and scope-content data for documentary units | |
# and write as tab-separated values. | |
import sys, requests, csv, urllib | |
if len(sys.argv) < 1: | |
sys.stderr.write("usage: scopecontent.py <initial-api-url>\n") | |
sys.exit(1) |
#!/usr/bin/env python3 | |
# Fetch id, name, and scope-content data for documentary units | |
# and write as tab-separated values. | |
import sys, requests, csv, json | |
if len(sys.argv) < 1: | |
sys.stderr.write("usage: history.py <initial-api-url>\n") | |
sys.exit(1) |
query exampleQuery($cursor: Cursor) { | |
repositories(after: $cursor) { | |
items { | |
id | |
description { | |
name | |
} | |
} | |
pageInfo { | |
nextPage |
#!/usr/bin/env python3 | |
import csv, ijson, sys | |
items = ijson.items(sys.stdin, "data.documentaryUnits.items.item") | |
csvout = csv.writer(sys.stdout, quoting = csv.QUOTE_MINIMAL) | |
for item in items: | |
for description in item["descriptions"]: | |
row = [ |