From 9bde5b91d6916091e703f71caed78619b7e72a2b Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Wed, 22 Aug 2012 11:26:50 +0000 Subject: [PATCH] Added support for conflrev documents based on branch /personal/rcross/v4.32@4722, but tweaked to return only the directory, not the full directory+name+ext path, in order to behave the same way as for other document types. - Legacy-Id: 4779 --- ietf/doc/models.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ietf/doc/models.py b/ietf/doc/models.py index c42b54c3f..a5cec2ffd 100644 --- a/ietf/doc/models.py +++ b/ietf/doc/models.py @@ -72,6 +72,8 @@ class DocumentInfo(models.Model): return os.path.join(settings.AGENDA_PATH, meeting, self.type_id) + "/" elif self.type_id == "charter": return settings.CHARTER_PATH + elif self.type_id == "conflrev": + return settings.CONFLICT_REVIEW_PATH else: raise NotImplemented