OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 from xml.dom import minidom | 5 from xml.dom import minidom |
6 from grit.format.policy_templates.writers import xml_formatted_writer | 6 from grit.format.policy_templates.writers import xml_formatted_writer |
7 | 7 |
8 | 8 |
9 def GetWriter(config, messages): | 9 def GetWriter(config): |
10 '''Factory method for instanciating the ADMXWriter. Every Writer needs a | 10 '''Factory method for instanciating the ADMXWriter. Every Writer needs a |
11 GetWriter method because the TemplateFormatter uses this method to | 11 GetWriter method because the TemplateFormatter uses this method to |
12 instantiate a Writer. | 12 instantiate a Writer. |
13 ''' | 13 ''' |
14 return ADMXWriter(['win'], config, messages) | 14 return ADMXWriter(['win'], config) |
15 | 15 |
16 | 16 |
17 class ADMXWriter(xml_formatted_writer.XMLFormattedWriter): | 17 class ADMXWriter(xml_formatted_writer.XMLFormattedWriter): |
18 '''Class for generating an ADMX policy template. It is used by the | 18 '''Class for generating an ADMX policy template. It is used by the |
19 PolicyTemplateGenerator to write the admx file. | 19 PolicyTemplateGenerator to write the admx file. |
20 ''' | 20 ''' |
21 | 21 |
22 # DOM root node of the generated ADMX document. | 22 # DOM root node of the generated ADMX document. |
23 _doc = None | 23 _doc = None |
24 | 24 |
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
319 self._AddSupportedOn(policy_definitions_elem, | 319 self._AddSupportedOn(policy_definitions_elem, |
320 self.config['win_supported_os']) | 320 self.config['win_supported_os']) |
321 self._AddCategories(policy_definitions_elem, | 321 self._AddCategories(policy_definitions_elem, |
322 self.config['win_category_path']) | 322 self.config['win_category_path']) |
323 self._active_policies_elem = self.AddElement(policy_definitions_elem, | 323 self._active_policies_elem = self.AddElement(policy_definitions_elem, |
324 'policies') | 324 'policies') |
325 self._active_policy_group_name = self.config['win_category_path'][-1] | 325 self._active_policy_group_name = self.config['win_category_path'][-1] |
326 | 326 |
327 def GetTemplateText(self): | 327 def GetTemplateText(self): |
328 return self._doc.toprettyxml(indent=' ') | 328 return self._doc.toprettyxml(indent=' ') |
OLD | NEW |