当前位置: 首页>>代码示例>>Python>>正文


Python BaseElement.setAttribute方法代码示例

本文整理汇总了Python中useless.xmlgen.base.BaseElement.setAttribute方法的典型用法代码示例。如果您正苦于以下问题:Python BaseElement.setAttribute方法的具体用法?Python BaseElement.setAttribute怎么用?Python BaseElement.setAttribute使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在useless.xmlgen.base.BaseElement的用法示例。


在下文中一共展示了BaseElement.setAttribute方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: __init__

# 需要导入模块: from useless.xmlgen.base import BaseElement [as 别名]
# 或者: from useless.xmlgen.base.BaseElement import setAttribute [as 别名]
 def __init__(self, row):
     BaseElement.__init__(self, 'tr')
     table = BaseElement('table')
     top = BaseElement('tr', bgcolor='DarkSeaGreen')
     table.appendChild(top)
     mid = BaseElement('tr', bgcolor='DarkSeaGreen3')
     table.appendChild(mid)
     bottom = BaseElement('tr', bgcolor='DarkSeaGreen2')
     table.appendChild(bottom)
     action = TextElement('td', row.action)
     action.setAttribute('align', 'left')
     posted = TextElement('td', row.posted)
     posted.setAttribute('align', 'right')
     top.appendChild(action)
     top.appendChild(posted)
     mid.appendChild(TextElement('td', row.workdone))
     instatus = TextElement('td', row.instatus)
     outstatus = TextElement('td', row.outstatus)
     instatus.setAttribute('align', 'left')
     outstatus.setAttribute('align', 'right')
     bottom.appendChild(instatus)
     bottom.appendChild(outstatus)
     self.appendChild(top)
     self.appendChild(mid)
     self.appendChild(bottom)
     if row.instatus != row.outstatus:
         bottom.setAttribute('bgcolor', 'GoldenRod')
开发者ID:BackupTheBerlios,项目名称:konsultant-svn,代码行数:29,代码来源:xmlgen.py

示例2: _subjectdata

# 需要导入模块: from useless.xmlgen.base import BaseElement [as 别名]
# 或者: from useless.xmlgen.base.BaseElement import setAttribute [as 别名]
    def _subjectdata(self, subject, action):
        td = BaseElement("td")

        font = BaseElement("font")
        font.setAttribute("color", "gold")
        element = TextElement("b", subject)
        font.appendChild(element)
        td.appendChild(font)

        font = BaseElement("font")
        font.setAttribute("color", "yellow")
        element = Text()
        font.appendChild(element)
        element.data = "(%s)" % action
        td.appendChild(font)
        return td
开发者ID:BackupTheBerlios,项目名称:konsultant-svn,代码行数:18,代码来源:xmlgen.py

示例3: __init__

# 需要导入模块: from useless.xmlgen.base import BaseElement [as 别名]
# 或者: from useless.xmlgen.base.BaseElement import setAttribute [as 别名]
 def __init__(self, title):
     BaseElement.__init__(self, "table")
     self.setAttribute("border", "1")
     # self.setAttribute('width', '100%')
     self.setAttribute("cellpadding", "2")
     self.setAttribute("cellspacing", "0")
     self.setAttribute("bgcolor", "cornsilk4")
     row = BaseElement("tr")
     td = BaseElement("td")
     self.appendChild(row)
     row.appendChild(td)
     font = BaseElement("font")
     font.setAttribute("color", "gold")
     td.appendChild(font)
     element = TextElement("b", title)
     font.appendChild(element)
开发者ID:BackupTheBerlios,项目名称:konsultant-svn,代码行数:18,代码来源:xmlgen.py


注:本文中的useless.xmlgen.base.BaseElement.setAttribute方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。