Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 13 May 2018 06:16:49 +0000 (UTC)
From:      Thomas Zander <riggs@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r469775 - head/security/vuxml/files
Message-ID:  <201805130616.w4D6Gn34073892@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: riggs
Date: Sun May 13 06:16:49 2018
New Revision: 469775
URL: https://svnweb.freebsd.org/changeset/ports/469775

Log:
  Bump maximum description length to 5000
  
  Details:
  Thanks to www/chromium, we now have a valid entry with 4933 characters.
  Entries this long will probably remain exceptions, but there should
  not be a warning for the currently valid entries.

Modified:
  head/security/vuxml/files/extra-validation.py

Modified: head/security/vuxml/files/extra-validation.py
==============================================================================
--- head/security/vuxml/files/extra-validation.py	Sun May 13 06:01:44 2018	(r469774)
+++ head/security/vuxml/files/extra-validation.py	Sun May 13 06:16:49 2018	(r469775)
@@ -13,7 +13,7 @@ if len(sys.argv) != 2:
 re_date = re.compile(r'^(19|20)[0-9]{2}-[0-9]{2}-[0-9]{2}$')
 
 # warn if description has more than X characters
-DESCRIPTION_LENGTH = 4500
+DESCRIPTION_LENGTH = 5000
 
 tree = ET.parse(sys.argv[1])
 root = tree.getroot()



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201805130616.w4D6Gn34073892>