home *** CD-ROM | disk | FTP | other *** search
/ Freelog 125 / Freelog_MarsAvril2015_No125.iso / Bureautique / LibreOffice / LibreOffice_4.3.5_Win_x86.msi / CGContent.py < prev    next >
Text File  |  2014-05-25  |  2KB  |  40 lines

  1. #
  2. # This file is part of the LibreOffice project.
  3. #
  4. # This Source Code Form is subject to the terms of the Mozilla Public
  5. # License, v. 2.0. If a copy of the MPL was not distributed with this
  6. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
  7. #
  8. # This file incorporates work covered by the following license notice:
  9. #
  10. #   Licensed to the Apache Software Foundation (ASF) under one or more
  11. #   contributor license agreements. See the NOTICE file distributed
  12. #   with this work for additional information regarding copyright
  13. #   ownership. The ASF licenses this file to you under the Apache
  14. #   License, Version 2.0 (the "License"); you may not use this file
  15. #   except in compliance with the License. You may obtain a copy of
  16. #   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  17. #
  18. from ...common.ConfigGroup import ConfigGroup
  19. from ..WebConfigSet import WebConfigSet
  20. from ...common.XMLHelper import XMLHelper
  21. from .CGDocument import CGDocument
  22.  
  23. class CGContent(ConfigGroup):
  24.  
  25.     def __init__(self):
  26.         self.cp_Index = -1
  27.         self.dirName = str()
  28.         self.cp_Name = str()
  29.         self.cp_Description = str()
  30.         self.cp_Documents = WebConfigSet(CGDocument)
  31.         self.cp_Contents = WebConfigSet(CGContent)
  32.  
  33.     def createDOM(self, parent):
  34.         myElement = XMLHelper.addElement(
  35.             parent, "content",
  36.             ["name", "directory-name", "description", "directory"],
  37.             [self.cp_Name, self.dirName, self.cp_Description, self.dirName])
  38.         self.cp_Documents.createDOM(myElement)
  39.         return myElement
  40.