Compare commits

...

3 commits

Author SHA1 Message Date
j
0b5d56ed94 Merge remote-tracking branch 'production/master' 2018-11-15 15:01:37 +00:00
j
569a6be800 zoom 2018-11-15 15:01:29 +00:00
j
19d4367ec7 case 2018-11-15 11:55:44 +00:00
7 changed files with 46 additions and 7 deletions

View file

@ -30,7 +30,7 @@ if __name__ == '__main__':
edit = api.getEdit(id=i['id'])['data']
if edit['status'] == 'private':
continue
path = i['id'].replace(':', '_').replace('/', '_') + '.json'
path = i['id'].replace(':', '\uf022').replace('/', '_').replace('|', '_') + '.json'
path = ox.decode_html(path)
path = os.path.join(target, path)
ox.makedirs(os.path.dirname(path))

View file

@ -12,9 +12,12 @@ def get_extension(api, oshash):
r = api.findMedia({'query': {
'conditions': [{'key': 'oshash', 'value': oshash}]
}, 'keys': ['extension']})['data']
return r['items'][0]['extension']
return r['items'][0]['extension'].lower()
COLON = '\uf022'
COLON = ':'
if __name__ == '__main__':
if len(sys.argv) > 1:
target = sys.argv[1]
@ -28,7 +31,7 @@ if __name__ == '__main__':
api = ox.api.signin('https://%s/api/' % site)
keep = []
r = api.find({'range': [0, 1000], 'keys': ['id']})
r = api.find({'range': [0, 10000], 'keys': ['id']})
for i in r['data']['items']:
item = api.get(id=i['id'], keys=['id', 'streams', 'title', 'director', 'year', 'instances'])['data']
director = item.get('director', ['Unknown Director'])
@ -38,7 +41,10 @@ if __name__ == '__main__':
path = ox.decode_html(path)
prefix = ox.decode_html(item['title'])
keep.append(unicodedata.normalize('NFD', os.path.join(target, path, 'annotations.json')))
path = path.replace(':', COLON)
prefix = prefix.replace(':', COLON)
keep.append(unicodedata.normalize('NFD', os.path.join(target, path, 'annotations.json')).lower())
parts = []
if len(item['streams']) == 1:
@ -46,6 +52,7 @@ if __name__ == '__main__':
ext = get_extension(api, id)
name = '%s.%s' % (item['title'], ext)
name = ox.decode_html(name)
name = name.replace(':', COLON)
part = 1
parts.append([os.path.join(path, name), item['id'], id, part])
else:
@ -54,12 +61,14 @@ if __name__ == '__main__':
ext = get_extension(api, id)
name = '%s.Part %d.%s' % (prefix, part, ext)
name = ox.decode_html(name)
name = name.replace(':', COLON)
parts.append([os.path.join(path, name), item['id'], id, part])
part += 1
for path, id, oshash, part in parts:
abspath = os.path.join(target, path)
if os.path.exists(abspath) and ox.oshash(abspath) != oshash:
print('file changed', abspath[len(target):])
os.unlink(abspath)
if not os.path.exists(abspath):
url = 'https://%s/%s/download/source/%s' % (site, id, part)
@ -68,11 +77,11 @@ if __name__ == '__main__':
api.save_url(url, abspath)
except:
print('failed to download', url)
keep.append(unicodedata.normalize('NFD', abspath))
keep.append(unicodedata.normalize('NFD', abspath).lower())
for root, folders, files in os.walk(target):
for f in files:
path = os.path.join(root, f)
if unicodedata.normalize('NFD', path) not in keep:
if unicodedata.normalize('NFD', path).lower() not in keep:
print('deleting', path)
os.unlink(path)

View file

@ -264,6 +264,8 @@
"soup": {},
"tea": {}
},
"tech": {
},
"miscellaneous": {
"bicycle": {},
"make-up": {},

View file

@ -1,3 +1,4 @@
<meta charset="utf-8" />
<script src="/static/oxjs/min/Ox.js"></script>
<script>
function pandora_api(action, data, callback) {

View file

@ -19,3 +19,9 @@ body {
stroke: #ccc;
stroke-width: 1.5px;
}
.zoom {
position: fixed;
top: 5px;
right: 5px;
}

View file

@ -7,6 +7,10 @@
<title>Ontology Tree</title>
</head>
<body>
<div class="zoom">
<button class="plus">+</button>
<button class="minus">-</button>
</div>
<script src="index.js"></script>
</body>
</html>

View file

@ -51,6 +51,22 @@ function resize() {
update(root);
}
function zoom(size) {
height = size;
tree.size([height, width]);
svg.attr("width", width).attr("height", height + margin.top + margin.bottom)
document.querySelector('svg').attributes.height.value = height + margin.top + margin.bottom
resize()
}
document.querySelector('.zoom button.plus').addEventListener('click', function(event) {
zoom(height*1.5)
})
document.querySelector('.zoom button.minus').addEventListener('click', function(event) {
zoom(height/1.5)
})
function get_color(d) {
if (d.children || d._children) {
@ -95,7 +111,8 @@ function update(source) {
})
.text(function(d) {
if (d.children || d._children) {
return d.name;
//return d.name;
return d.name + '(' + (d.children || d._children).length +')';
}
return d.name + ' (' + d.size + ')';
})