25 lines
785 B
Python
25 lines
785 B
Python
# Copyright The IETF Trust 2013-2020, All Rights Reserved
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
def get_full_path(doc):
|
|
'''
|
|
Returns for name of file on disk with full path. This should really be a method on doc
|
|
NOTE: this currently only works for material file types
|
|
'''
|
|
import os
|
|
|
|
if doc.type_id not in ('slides','agenda','minutes') or not doc.uploaded_filename:
|
|
return None
|
|
return os.path.join(doc.get_file_path(), doc.uploaded_filename)
|
|
|
|
|
|
def get_start_date(doc):
|
|
'''
|
|
This function takes a document object and returns the date of the first
|
|
new revision doc event
|
|
'''
|
|
# originally based on doc shim layer
|
|
event = doc.docevent_set.filter(type='new_revision').order_by('time')
|
|
return event[0].time.date() if event else None
|