Lines Matching +full:linkify +full:- +full:it
2 # This file is borrowed from the aws/aws-cli project with the following modifications:
3 # - Add a 'deprecation' category, and validation for the category value
4 # - Modify the 'linkify' method to use Markdown syntax instead of reStructuredText (rst)
5 # - Better error reporting when one or more of the fields are empty
6 # - Change filename format to use a the SHA1 digest of the content instead of a random number
7 # - Change references to aws/cli to aws/aws-sdk-java
15 bin/new-change
24 # or "AWS SDK for Java v2" if it's an SDK change to the core, runtime etc
61 # or "AWS SDK for Java v2" if it's an SDK change to the core, runtime etc
67 # Leave it empty if you would prefer not to be mentioned.
130 def linkify(match): function
136 new_description = re.sub('(?<!\[)#\d+', linkify, description)
143 dirname = os.path.join(CHANGES_DIR, 'next-release')
156 contents_digest = hashlib.sha1(contents.encode('utf-8')).hexdigest()
157 filename = '{type_name}-{summary}-{digest}.json'.format(
213 parser.add_argument('-t', '--type', dest='change_type',
216 parser.add_argument('-c', '--category', dest='category',
218 parser.add_argument('-u', '--contributor', dest='contributor',
220 parser.add_argument('-d', '--description', dest='description',
222 parser.add_argument('-r', '--repo', default='aws/aws-sdk-java-v2',
223 help='Optional repo name, e.g: aws/aws-sdk-java')