mirror of
				https://git.launchpad.net/~ubuntu-release/britney/+git/britney2-ubuntu
				synced 2025-11-04 10:34:05 +00:00 
			
		
		
		
	Use https for links in excuses.html
Signed-off-by: Julien Cristau <jcristau@debian.org>
This commit is contained in:
		
							parent
							
								
									8545dc972a
								
							
						
					
					
						commit
						e2c7dc97d6
					
				
							
								
								
									
										14
									
								
								britney.py
									
									
									
									
									
								
							
							
						
						
									
										14
									
								
								britney.py
									
									
									
									
									
								
							@ -1528,16 +1528,16 @@ class Britney(object):
 | 
				
			|||||||
            excuse.setbugs(old_bugs, new_bugs)
 | 
					            excuse.setbugs(old_bugs, new_bugs)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            if new_bugs:
 | 
					            if new_bugs:
 | 
				
			||||||
                excuse.addhtml("%s <a href=\"http://bugs.debian.org/cgi-bin/pkgreport.cgi?" \
 | 
					                excuse.addhtml("%s <a href=\"https://bugs.debian.org/cgi-bin/pkgreport.cgi?" \
 | 
				
			||||||
                               "src=%s&sev-inc=critical&sev-inc=grave&sev-inc=serious\" " \
 | 
					                               "src=%s&sev-inc=critical&sev-inc=grave&sev-inc=serious\" " \
 | 
				
			||||||
                               "target=\"_blank\">has new bugs</a>!" % (src, quote(src)))
 | 
					                               "target=\"_blank\">has new bugs</a>!" % (src, quote(src)))
 | 
				
			||||||
                excuse.addhtml("Updating %s introduces new bugs: %s" % (src, ", ".join(
 | 
					                excuse.addhtml("Updating %s introduces new bugs: %s" % (src, ", ".join(
 | 
				
			||||||
                    ["<a href=\"http://bugs.debian.org/%s\">#%s</a>" % (quote(a), a) for a in new_bugs])))
 | 
					                    ["<a href=\"https://bugs.debian.org/%s\">#%s</a>" % (quote(a), a) for a in new_bugs])))
 | 
				
			||||||
                update_candidate = False
 | 
					                update_candidate = False
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            if old_bugs:
 | 
					            if old_bugs:
 | 
				
			||||||
                excuse.addhtml("Updating %s fixes old bugs: %s" % (src, ", ".join(
 | 
					                excuse.addhtml("Updating %s fixes old bugs: %s" % (src, ", ".join(
 | 
				
			||||||
                    ["<a href=\"http://bugs.debian.org/%s\">#%s</a>" % (quote(a), a) for a in old_bugs])))
 | 
					                    ["<a href=\"https://bugs.debian.org/%s\">#%s</a>" % (quote(a), a) for a in old_bugs])))
 | 
				
			||||||
            if new_bugs and len(old_bugs) > len(new_bugs):
 | 
					            if new_bugs and len(old_bugs) > len(new_bugs):
 | 
				
			||||||
                excuse.addhtml("%s introduces new bugs, so still ignored (even "
 | 
					                excuse.addhtml("%s introduces new bugs, so still ignored (even "
 | 
				
			||||||
                               "though it fixes more than it introduces, whine at debian-release)" % src)
 | 
					                               "though it fixes more than it introduces, whine at debian-release)" % src)
 | 
				
			||||||
@ -1567,7 +1567,7 @@ class Britney(object):
 | 
				
			|||||||
                    base = 'testing'
 | 
					                    base = 'testing'
 | 
				
			||||||
                else:
 | 
					                else:
 | 
				
			||||||
                    base = 'stable'
 | 
					                    base = 'stable'
 | 
				
			||||||
                text = "Not yet built on <a href=\"http://buildd.debian.org/status/logs.php?arch=%s&pkg=%s&ver=%s&suite=%s\" target=\"_blank\">%s</a> (relative to testing)" % (quote(arch), quote(src), quote(source_u[VERSION]), base, arch)
 | 
					                text = "Not yet built on <a href=\"https://buildd.debian.org/status/logs.php?arch=%s&pkg=%s&ver=%s&suite=%s\" target=\"_blank\">%s</a> (relative to testing)" % (quote(arch), quote(src), quote(source_u[VERSION]), base, arch)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                if arch in self.options.fucked_arches:
 | 
					                if arch in self.options.fucked_arches:
 | 
				
			||||||
                    text = text + " (but %s isn't keeping up, so never mind)" % (arch)
 | 
					                    text = text + " (but %s isn't keeping up, so never mind)" % (arch)
 | 
				
			||||||
@ -1623,15 +1623,15 @@ class Britney(object):
 | 
				
			|||||||
                oodtxt = ""
 | 
					                oodtxt = ""
 | 
				
			||||||
                for v in oodbins.keys():
 | 
					                for v in oodbins.keys():
 | 
				
			||||||
                    if oodtxt: oodtxt = oodtxt + "; "
 | 
					                    if oodtxt: oodtxt = oodtxt + "; "
 | 
				
			||||||
                    oodtxt = oodtxt + "%s (from <a href=\"http://buildd.debian.org/status/logs.php?" \
 | 
					                    oodtxt = oodtxt + "%s (from <a href=\"https://buildd.debian.org/status/logs.php?" \
 | 
				
			||||||
                        "arch=%s&pkg=%s&ver=%s\" target=\"_blank\">%s</a>)" % \
 | 
					                        "arch=%s&pkg=%s&ver=%s\" target=\"_blank\">%s</a>)" % \
 | 
				
			||||||
                        (", ".join(sorted(oodbins[v])), quote(arch), quote(src), quote(v), v)
 | 
					                        (", ".join(sorted(oodbins[v])), quote(arch), quote(src), quote(v), v)
 | 
				
			||||||
                if uptodatebins:
 | 
					                if uptodatebins:
 | 
				
			||||||
                    text = "old binaries left on <a href=\"http://buildd.debian.org/status/logs.php?" \
 | 
					                    text = "old binaries left on <a href=\"https://buildd.debian.org/status/logs.php?" \
 | 
				
			||||||
                        "arch=%s&pkg=%s&ver=%s\" target=\"_blank\">%s</a>: %s" % \
 | 
					                        "arch=%s&pkg=%s&ver=%s\" target=\"_blank\">%s</a>: %s" % \
 | 
				
			||||||
                        (quote(arch), quote(src), quote(source_u[VERSION]), arch, oodtxt)
 | 
					                        (quote(arch), quote(src), quote(source_u[VERSION]), arch, oodtxt)
 | 
				
			||||||
                else:
 | 
					                else:
 | 
				
			||||||
                    text = "missing build on <a href=\"http://buildd.debian.org/status/logs.php?" \
 | 
					                    text = "missing build on <a href=\"https://buildd.debian.org/status/logs.php?" \
 | 
				
			||||||
                        "arch=%s&pkg=%s&ver=%s\" target=\"_blank\">%s</a>: %s" % \
 | 
					                        "arch=%s&pkg=%s&ver=%s\" target=\"_blank\">%s</a>: %s" % \
 | 
				
			||||||
                        (quote(arch), quote(src), quote(source_u[VERSION]), arch, oodtxt)
 | 
					                        (quote(arch), quote(src), quote(source_u[VERSION]), arch, oodtxt)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user