Lines Matching full:print
145 print("- %s `%s`" % (commit.commit.hexsha[:7], commit.commit.summary))
146 print("\t- Authored by %s <%s>" % (commit.commit.author.name, commit.commit.author.email))
147 print("\t- Committed at %s" % commit.commit.committed_datetime.isoformat())
148 print("\t- GitHub Link: %s" % "%s/commit/%s" % (github_url, commit.commit.hexsha))
152 print("- %s: `%s`" % (issue.issue_id, issue.issue.fields.summary))
154 print("\t- _%s_" % type)
156 print("\t- Assigned to %s" % issue.issue.fields.assignee.displayName)
158 print("\t- No assignee!")
159 # If actually under review, print reviewer
161 print("\t- Reviewer: %s" % issue.issue.fields.customfield_10031.displayName)
162 print("\t- Jira Link: %s" % issue_id_to_url(issue.issue_id, **kwargs))
163 print("\t- Status: %s" % issue.issue.fields.status.name)
165 print("\t- Resolution: " + issue.issue.fields.resolution.name)
168 print("\t- Fix Version: " + version.name)
170 print("\t- Fix Version: _none_")
172 …print("\t- Component(s): " + (' '.join(sorted([str(component.name) for component in issue.issue.fi…
183 # print("@@@ %s = %s / %s" % (issue_id, commit, commit.summary), file=sys.stderr)
196 print ("## git cherry %s %s %s (branch cut)" % (a, b, branchCut), file=sys.stderr)
203 # print("Exclude: %s" % sha, file=sys.stderr)
205 print("## Collected %d commit(s) to exclude" % len(excludeThese))
248 print("Loaded issues %d-%d" % (start + 1, start + len(issues)), file=sys.stderr)
250 print(":warning: No issues matched the query.") # leave this as a warning
266 # print("Cache hit: issue %s " % (issue_id), file=sys.stderr)
276 … print("Loaded single issue %s (%d in cache) " % (issue_id, len(jira_issue_map)), file=sys.stderr)
280 print("[Top](#table-of-contents)")
281 print()
291 """Print a section (###) header, including anchor"""
292 print("### %s" % (section))
293 #print("### %s%s" % (aname(section), section))
297 …print("TIP: Have you pulled the latest main? This script only looks at local commits.", file=sys.s…
299 …print("WARNING: Jira credentials not supplied. Sensitive tickets will not be found.", file=sys.std…
342 print("<!--")
343 print("Copyright (C) 2021 and later: Unicode, Inc. and others.")
344 print("License & terms of use: http://www.unicode.org/copyright.html")
345 print("-->")
347 print("Commit Report")
348 print("=============")
349 print()
350 print("Environment:")
351 print("- Now: %s" % datetime.datetime.now().isoformat())
352 print("- Latest Commit: %s/commit/%s" % (args.github_url, commits[0].commit.hexsha))
353 print("- Jira Query: `%s`" % args.jira_query)
354 print("- Rev Range: `%s`" % args.rev_range)
355 …print("- Authenticated: %s" % ("`Yes`" if authenticated else "`No` (sensitive tickets not shown)"))
356 print()
357 print("## Table Of Contents")
359 print("- [%s](#%s)" % (section, sectionToFragment(section)))
360 print()
361 print("## Problem Categories")
364 …print("Tip: Tickets with type 'Task' or 'User Guide' or resolution 'Fixed by Other Ticket' are ign…
365 print()
379 print("\t - **Note: Has cherry-picked commits. Fix Version may be wrong.**")
380 print()
382 print("*Success: No problems in this category!*")
386 print("Tip: Fixed tickets should have resolution 'Fixed by Other Ticket' or 'Fixed'.")
387 print("Duplicate tickets should have their fixVersion tag removed.")
388 print("Tickets with resolution 'Fixed by Other Ticket' are not allowed to have commits.")
389 print()
406 print("\t- No commits, and they are REQUIRED.")
408 print("\t- Has commits, and they are FORBIDDEN.")
409 print()
411 print("*Success: No problems in this category!*")
415 print()
418 … print("Tip: If you see your name here, make sure to label your commits correctly in the future.")
419 print()
427 print()
429 print("*Success: No problems in this category!*")
431 print()
434 print("Tip: Check that these tickets have the correct fixVersion tag.")
435 print()
442 print("#### Issue %s" % issue_id)
443 print()
444 print("_issue was not found in `%s`_" % args.jira_query) # TODO: link to query?
449 print("*Jira issue does not seem to exist*")
450 print()
451 print("##### Commits with Issue %s" % issue_id)
452 print()
455 print("@@@ ALREADY MERGED")
457 print()
459 print("*Success: No problems in this category!*")
461 print()
468 print("Tip: Consider closing the ticket if it is fixed.")
469 print()
485 print("skipping for now- %s is under review" % issue_id, file=sys.stderr)
495 print("#### Open Issues by Component")
496 print()
498 …print(" - **%s**: %s" % (component, ' '.join("[%s](#issue-%s)" % (issue_id, sectionToFragment(iss…
500 print()
501 print()
514 print("#### Issue %s" % issue_id)
515 print()
516 print("_Jira issue is open_")
520 print("*Jira issue does not seem to exist*")
521 print()
522 print("##### Commits with Issue %s" % issue_id)
523 print()
527 … # print("@@@@ %s = %s / %s" % (issue_id, commit, commit.commit.summary), file=sys.stderr)
529 print()
531 print("*Success: No problems in this category!*")
534 print()
536 print("These issues are otherwise accounted for above, but are in review.")
541 print()
542 print("## Total Problems: %s" % total_problems)
543 print("## Issues under review: %s" % len(issues_in_review)) # not counted as a problem.