Commit 237e7381 authored by Ivan Tyagov's avatar Ivan Tyagov

Remove no allowed characters in reference.

parent f89be5ed
...@@ -70,9 +70,9 @@ if site_list in MARKER:\n ...@@ -70,9 +70,9 @@ if site_list in MARKER:\n
membership_criterion_category_list = context.getMembershipCriterionCategoryList()\n membership_criterion_category_list = context.getMembershipCriterionCategoryList()\n
multimembership_criterion_base_category_list = context.getMultimembershipCriterionBaseCategoryList()\n multimembership_criterion_base_category_list = context.getMultimembershipCriterionBaseCategoryList()\n
\n \n
reference = title.replace(\' \', \'-\')\n reference = title.replace(\' \', \'-\').replace(\'?\', \'\').replace(\':\', \'\')\n
exisiting_document = context.getDocumentValue(reference)\n existing_document = context.getDocumentValue(reference)\n
if exisiting_document is not None:\n if existing_document is not None:\n
# if there are other document which reference duplicates just add some random part\n # if there are other document which reference duplicates just add some random part\n
# so we can distinguish)\n # so we can distinguish)\n
reference = \'%s-%s\' %(context.Base_generateRandomString(), reference)\n reference = \'%s-%s\' %(context.Base_generateRandomString(), reference)\n
......
110 111
\ No newline at end of file \ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment