Restore function to show duplicates

master
trémeur 1 month ago
parent 6c3f949f84
commit dcb6597851

@ -839,6 +839,19 @@ def crayonlog(colour,event):
crayonstring = str(crayonno) + " " + crayonrend crayonstring = str(crayonno) + " " + crayonrend
return crayonstring return crayonstring
def showdupes():
dupeslist = []
previouscard = ""
for card in cardlist:
try:
if card["name"] == previouscard["name"]:
dupeslist.append(card["name"])
except:
pass
previouscard = card
return dupeslist
if __name__ == "__main__":
print("Building index page") print("Building index page")
def indexgen(): def indexgen():
@ -1103,8 +1116,8 @@ def indexgen():
content.close() content.close()
footerwrite(thefile) footerwrite(thefile)
if __name__ == "__main__":
indexgen() indexgen()
print("Building levels page") print("Building levels page")
def levelsgen(): def levelsgen():
@ -1343,8 +1356,8 @@ def levelsgen():
content.close() content.close()
footerwrite(thefile) footerwrite(thefile)
if __name__ == "__main__":
levelsgen() levelsgen()
print("Building portfolios page") print("Building portfolios page")
def portfoliosgen(colour=False): def portfoliosgen(colour=False):
@ -1381,8 +1394,8 @@ def portfoliosgen(colour=False):
content.close() content.close()
footerwrite(thefile) footerwrite(thefile)
if __name__ == "__main__":
portfoliosgen() portfoliosgen()
print("Building collecting page") print("Building collecting page")
def collectinggen(colour=False): def collectinggen(colour=False):
@ -1431,8 +1444,8 @@ def collectingall():
for thevalue in values: for thevalue in values:
collectinggen(thevalue) collectinggen(thevalue)
if __name__ == "__main__":
collectingall() collectingall()
print("Building mass collecting pages") print("Building mass collecting pages")
masslist = sorted(list(variables.masscollect.keys())) masslist = sorted(list(variables.masscollect.keys()))
@ -1490,8 +1503,8 @@ def massall():
massseriesgen(series,massindex) massseriesgen(series,massindex)
massindex += 1 massindex += 1
if __name__ == "__main__":
massall() massall()
print("Building mastered page") print("Building mastered page")
def masteredgen(colour=False): def masteredgen(colour=False):
@ -1524,8 +1537,8 @@ def masteredall():
for thevalue in values: for thevalue in values:
masteredgen(thevalue) masteredgen(thevalue)
if __name__ == "__main__":
masteredall() masteredall()
print("Building trading page") print("Building trading page")
tradelist = [] tradelist = []
@ -1584,8 +1597,8 @@ def tradeall():
tradegen(thevalue) tradegen(thevalue)
tradegen("sig") tradegen("sig")
if __name__ == "__main__":
tradeall() tradeall()
print("Building wanted page") print("Building wanted page")
def wantedgen(): def wantedgen():
@ -1648,8 +1661,8 @@ def wantedgen():
content.close() content.close()
footerwrite(thefile) footerwrite(thefile)
if __name__ == "__main__":
wantedgen() wantedgen()
print("Building search page") print("Building search page")
def searchgen(): def searchgen():
@ -1711,8 +1724,8 @@ def searchgen():
content.write("];\n const searchstring = document.getElementById('cardinput').value;\n const searcharray = searchstring.replaceAll(' ','').replaceAll('\\n',',').replaceAll('\\r',',').toLowerCase().split(',');\n const hpwfound = [];\n const mpwfound = [];\n const lpwfound = [];\n const hptfound = [];\n const mptfound = [];\n const lptfound = [];\n for (const element of searcharray) {\n let cardend = element.substring(element.length, element.length - 2);\n if (!(thecards.includes(cardend))) {\n for (const ending of thecards) {\n searcharray.push(element + ending);\n };\n };\n };\n for (const element of searcharray) {\n if (hpw.includes(element)) {\n hpwfound.push(element);\n } else if (mpw.includes(element)) {\n mpwfound.push(element);\n } else if (lpw.includes(element)) {\n lpwfound.push(element);\n } else if (hpt.includes(element)) {\n hptfound.push(element);\n } else if (mpt.includes(element)) {\n mptfound.push(element);\n } else if (lpt.includes(element)) {\n lptfound.push(element);\n };\n };\n if ((hpwfound.length) > 0) {\n document.getElementById('hpwfound').innerHTML = '<span class=\"sorttitle\">Wanted (high priority):</span> <span class=\"searchresults\">' + hpwfound.join(', ') + '</span>';\n } else {\n document.getElementById('hpwfound').innerHTML = '';\n };\n if ((mpwfound.length) > 0) {\n document.getElementById('mpwfound').innerHTML = '<span class=\"sorttitle\">Wanted (medium priority):</span> <span class=\"searchresults\">' + mpwfound.join(', ') + '</span>';\n } else {\n document.getElementById('mpwfound').innerHTML = '';\n };\n if ((lpwfound.length) > 0) {\n document.getElementById('lpwfound').innerHTML = '<span class=\"sorttitle\">Wanted (low priority):</span> <span class=\"searchresults\">' + lpwfound.join(', ') + '</span>';\n } else {\n document.getElementById('lpwfound').innerHTML = '';\n };\n if ((hptfound.length) > 0) {\n document.getElementById('hptfound').innerHTML = '<span class=\"sorttitle\">Will trade out for <a href=\"/wanted\">high priority cards</a> only:</span> <span class=\"searchresults\">' + hptfound.join(', ') + '</span>';\n } else {\n document.getElementById('hptfound').innerHTML = '';\n };\n if ((mptfound.length) > 0) {\n document.getElementById('mptfound').innerHTML = '<span class=\"sorttitle\">Will trade out for <a href=\"/wanted\">high or medium priority cards</a>:</span> <span class=\"searchresults\">' + mptfound.join(', ') + '</span>';\n } else {\n document.getElementById('mptfound').innerHTML = '';\n };\n if ((lptfound.length) > 0) {\n document.getElementById('lptfound').innerHTML = '<span class=\"sorttitle\">Will trade out for <a href=\"/wanted\">any wanted card</a>:</span> <span class=\"searchresults\">' + lptfound.join(', ') + '</span>';\n } else {\n document.getElementById('lptfound').innerHTML = '';\n };\n if ((hpwfound.length) + (mpwfound.length) + (lpwfound.length) + (hptfound.length) + (mptfound.length) + (lptfound.length) == 0) {\n document.getElementById('nothing').innerHTML = 'No results';\n } else {\n document.getElementById('nothing').innerHTML = '';\n }\n }\n</script>\n </main>\n </body>\n</html>") content.write("];\n const searchstring = document.getElementById('cardinput').value;\n const searcharray = searchstring.replaceAll(' ','').replaceAll('\\n',',').replaceAll('\\r',',').toLowerCase().split(',');\n const hpwfound = [];\n const mpwfound = [];\n const lpwfound = [];\n const hptfound = [];\n const mptfound = [];\n const lptfound = [];\n for (const element of searcharray) {\n let cardend = element.substring(element.length, element.length - 2);\n if (!(thecards.includes(cardend))) {\n for (const ending of thecards) {\n searcharray.push(element + ending);\n };\n };\n };\n for (const element of searcharray) {\n if (hpw.includes(element)) {\n hpwfound.push(element);\n } else if (mpw.includes(element)) {\n mpwfound.push(element);\n } else if (lpw.includes(element)) {\n lpwfound.push(element);\n } else if (hpt.includes(element)) {\n hptfound.push(element);\n } else if (mpt.includes(element)) {\n mptfound.push(element);\n } else if (lpt.includes(element)) {\n lptfound.push(element);\n };\n };\n if ((hpwfound.length) > 0) {\n document.getElementById('hpwfound').innerHTML = '<span class=\"sorttitle\">Wanted (high priority):</span> <span class=\"searchresults\">' + hpwfound.join(', ') + '</span>';\n } else {\n document.getElementById('hpwfound').innerHTML = '';\n };\n if ((mpwfound.length) > 0) {\n document.getElementById('mpwfound').innerHTML = '<span class=\"sorttitle\">Wanted (medium priority):</span> <span class=\"searchresults\">' + mpwfound.join(', ') + '</span>';\n } else {\n document.getElementById('mpwfound').innerHTML = '';\n };\n if ((lpwfound.length) > 0) {\n document.getElementById('lpwfound').innerHTML = '<span class=\"sorttitle\">Wanted (low priority):</span> <span class=\"searchresults\">' + lpwfound.join(', ') + '</span>';\n } else {\n document.getElementById('lpwfound').innerHTML = '';\n };\n if ((hptfound.length) > 0) {\n document.getElementById('hptfound').innerHTML = '<span class=\"sorttitle\">Will trade out for <a href=\"/wanted\">high priority cards</a> only:</span> <span class=\"searchresults\">' + hptfound.join(', ') + '</span>';\n } else {\n document.getElementById('hptfound').innerHTML = '';\n };\n if ((mptfound.length) > 0) {\n document.getElementById('mptfound').innerHTML = '<span class=\"sorttitle\">Will trade out for <a href=\"/wanted\">high or medium priority cards</a>:</span> <span class=\"searchresults\">' + mptfound.join(', ') + '</span>';\n } else {\n document.getElementById('mptfound').innerHTML = '';\n };\n if ((lptfound.length) > 0) {\n document.getElementById('lptfound').innerHTML = '<span class=\"sorttitle\">Will trade out for <a href=\"/wanted\">any wanted card</a>:</span> <span class=\"searchresults\">' + lptfound.join(', ') + '</span>';\n } else {\n document.getElementById('lptfound').innerHTML = '';\n };\n if ((hpwfound.length) + (mpwfound.length) + (lpwfound.length) + (hptfound.length) + (mptfound.length) + (lptfound.length) == 0) {\n document.getElementById('nothing').innerHTML = 'No results';\n } else {\n document.getElementById('nothing').innerHTML = '';\n }\n }\n</script>\n </main>\n </body>\n</html>")
content.close() content.close()
if __name__ == "__main__":
searchgen() searchgen()
print("Building log page") print("Building log page")
def loggen(month=False): def loggen(month=False):
@ -1846,4 +1859,5 @@ def logall():
loggen(False) loggen(False)
loggen(True) loggen(True)
if __name__ == "__main__":
logall() logall()

Loading…
Cancel
Save