使用 beautifulsoup 更新 InstallShield .ism (MSI) 文件并保持其格式

问题描述 投票:0回答:2

我正在尝试使用当前构建版本更新我的 .ism 文件。我可以毫无问题地查找和替换构建字符串。然而,我正在努力让我的 .ism 文件在经过 beautiful soup 处理后保持其格式。以下是我尝试使用 beautiful soup 来查找和更新构建版本字符串:

def upVerIsm(origFile,newFile):
    openIsm = origFile
    outputIsm = newFile
    soup = BeautifulSoup(openIsm)

    tblProp = soup.find("table", {"name":"Property"})
    rows = tblProp.find_all("row")
    for row in rows:
        firstCell = row.contents[0].get_text()
        if firstCell == "ProductVersion":
        tmpProdVer = row.contents[1].string.replace_with(updVerStr) 

    if(flgMstrVer):
        tblReg = soup.find("table", {"name":"Registry"})
        # get all rows within registry table
        rows = tblReg.find_all("row")
        for row in rows:
            td4 = row.contents[3].get_text()
            if td4 == "MasterVersion":
               td5 = row.contents[4].get_text()
               tmpMstrStr = re.split('_',unicode(td5))
               newBuildStr = tmpMstrStr[0] + "_" + tmpMstrStr[1] + "_" + tmpMstrStr[2] + "_B" + version_num
              row.contents[4].string.replace_with(str(newBuildStr)) 
              print row

     # tmpIsm = soup.encode("ascii","ignore")
     # updatedIsm = soup.prettify(formatter=None) # if i do this i get the ascii code error: (UnicodeEncodeError: 'ascii' codec can't encode character u'\u2019' in position 666845: ordinal not in range(128))
    updatedIsm = str(soup) # this alters the content of the .ism file and breaks the build
    outputIsm.write(updatedIsm)   

    return outputIsm,openIsm # new,original files respectively

我被困住了,想要一些指点,感谢您的阅读!

python unicode windows-installer beautifulsoup installshield
2个回答
1
投票

您不需要更新ISM,您只需将构建版本(以及许多其他内容)传递到编译器中即可。如果您确实想要更新 ISM,InstallShield 提供了一个自动化界面。您打开项目,更新属性,然后保存并关闭项目。

此外,尽管我很喜欢 InstallShield,但 ISM 只是底层 MSI 表数据的 DTD XML 转换。如果代码表现力确实是您的首要任务,那么基于 WiX XSD 的 XML 就是您的最佳选择。


0
投票

Fls.//Allcdx, Ism.aut.hkng.iiii.srs.rthchld.ann.snfrst.313msi/02/066-49(1.9.8.6.dvd.e.p.a__-fed.Als.msi.ovr.sght.- all.6cdx,2code 1 :1- 控制.

© www.soinside.com 2019 - 2024. All rights reserved.