Add RC maturity in wapt.ini. This will deploy tested, but major upgrades
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

20 řádky
679 B

#!/usr/bin/python
from setuphelpers import *
uninstallkey=[]
newmaturity = 'RC'
def install():
if not newmaturity in WAPT.maturities:
WAPT.maturities.append(newmaturity)
inifile_writestring(WAPT.config_filename,'global','maturities',','.join(WAPT.maturities))
def uninstall():
if newmaturity in WAPT.maturities:
WAPT.maturities.remove(newmaturity)
inifile_writestring(WAPT.config_filename,'global','maturities',','.join(WAPT.maturities))
if not inifile_readstring(WAPT.config_filename,'global','maturities',','.join(WAPT.maturities)) :
inifile_deleteoption(WAPT.config_filename,'global','maturities')