Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(290)

Unified Diff: remoting/tools/remove_official_branding.py

Issue 11275101: Fix branding in chromoting string resources (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/tools/json_to_grd.py ('k') | remoting/webapp/_locales.official/ar/messages.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/tools/remove_official_branding.py
diff --git a/remoting/tools/remove_official_branding.py b/remoting/tools/remove_official_branding.py
deleted file mode 100755
index 06f9f818389221df5aaad11bf16070dc20f31fca..0000000000000000000000000000000000000000
--- a/remoting/tools/remove_official_branding.py
+++ /dev/null
@@ -1,46 +0,0 @@
-#!/usr/bin/env python
-# Copyright (c) 2012 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-"""Replaces "Chrome Remote Desktop" with "Chromoting" in GRD files"""
-
-import sys
-from optparse import OptionParser
-import xml.dom.minidom as minidom
-
-def update_xml_node(element):
- for child in element.childNodes:
- if child.nodeType == minidom.Node.ELEMENT_NODE:
- update_xml_node(child)
- elif child.nodeType == minidom.Node.TEXT_NODE:
- child.replaceWholeText(
- child.data.replace("Chrome Remote Desktop", "Chromoting"))
-
-def remove_official_branding(input, output):
- xml = minidom.parse(input)
-
- # Remove all translations.
- for translations in xml.getElementsByTagName("translations"):
- for translation in xml.getElementsByTagName("translation"):
- translations.removeChild(translation)
-
- # Update branding.
- update_xml_node(xml)
-
- out = file(output, "w")
- out.write(xml.toxml(encoding = "UTF-8"))
- out.close()
-
-def main():
- usage = 'Usage: remove_official_branding <input.grd> <output.grd>'
- parser = OptionParser(usage=usage)
- options, args = parser.parse_args()
- if len(args) != 2:
- parser.error('two positional arguments expected')
-
- return remove_official_branding(args[0], args[1])
-
-if __name__ == '__main__':
- sys.exit(main())
-
« no previous file with comments | « remoting/tools/json_to_grd.py ('k') | remoting/webapp/_locales.official/ar/messages.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698