Chromium Code Reviews| Index: components/policy/tools/remove_localized_app_restrictions.py |
| diff --git a/components/policy/tools/remove_localized_app_restrictions.py b/components/policy/tools/remove_localized_app_restrictions.py |
| new file mode 100755 |
| index 0000000000000000000000000000000000000000..489dc292bc64ca83e2a6c95432f1c994c7150f3e |
| --- /dev/null |
| +++ b/components/policy/tools/remove_localized_app_restrictions.py |
| @@ -0,0 +1,26 @@ |
| +#!/usr/bin/env python |
| +# Copyright (c) 2015 The Chromium Authors. All rights reserved. |
|
bartfab (slow)
2015/04/09 12:04:14
Nit: s/(c) //
knn
2015/04/09 13:07:42
Done.
|
| +# Use of this source code is governed by a BSD-style license that can be |
| +# found in the LICENSE file. |
| + |
| +'''python %prog resources_dir |
| + |
| +resources_dir specifies the root directory of the localized app restrictions |
| +resources to purge''' |
| + |
| +import os |
| +import re |
| +import sys |
| + |
| +def main(resources_dir): |
| + match = re.compile('^values-.*-v21$') |
| + for dir in os.listdir(resources_dir): |
| + if match.search(dir): |
| + path = os.path.join(resources_dir, dir) |
| + os.remove(os.path.join(path, 'restriction_values.xml')) |
| + os.rmdir(path) |
| + open(os.path.join(resources_dir, 'remove_localized_resources.d.stamp'), 'w') |
| + return 0 |
| + |
| +if __name__ == '__main__': |
| + sys.exit(main(sys.argv[1])) |