/usr/lib/python2.6/site-packages/tablib/packages/openpyxl/writer
NameSizeModeActions
charts.py104810644editdlrm
charts.pyc105640644editdlrm
drawings.py82680644editdlrm
drawings.pyc78660644editdlrm
dump_worksheet.py81580644editdlrm
dump_worksheet.pyc89580644editdlrm
excel.py63320644editdlrm
excel.pyc54570644editdlrm
strings.py29410644editdlrm
strings.pyc31550644editdlrm
styles.py101890644editdlrm
styles.pyc90840644editdlrm
theme.py109330644editdlrm
theme.pyc75640644editdlrm
workbook.py107690644editdlrm
workbook.pyc90590644editdlrm
worksheet.py86870644editdlrm
worksheet.pyc71690644editdlrm
__init__.py14100644editdlrm
__init__.pyc4720644editdlrm
Edit: /usr/lib/python2.6/site-packages/tablib/packages/openpyxl/writer/theme.py (10933B)
# -*- coding: utf-8 -*- # file openpyxl/writer/theme.py # Copyright (c) 2010 openpyxl # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. # # @license: http://www.opensource.org/licenses/mit-license.php # @author: Eric Gazoni """Write the theme xml based on a fixed string.""" # package imports from ..shared.xmltools import fromstring, get_document_content def write_theme(): """Write the theme xml.""" xml_node = fromstring( '\n' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '') return get_document_content(xml_node)