OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 import os | 5 import os |
6 | 6 |
7 def FormatKey(key): | 7 def FormatKey(key): |
8 """Normalize a key by making sure it has a .html extension, and convert any | 8 """Normalize a key by making sure it has a .html extension, and convert any |
9 '.'s to '_'s. | 9 '.'s to '_'s. |
10 """ | 10 """ |
11 if key.endswith('.html'): | 11 if key.endswith('.html'): |
12 key = key[:-len('.html')] | 12 key = key[:-len('.html')] |
13 safe_key = key.replace('.', '_') | 13 safe_key = key.replace('.', '_') |
14 return '%s.html' % safe_key | 14 return '%s.html' % safe_key |
15 | 15 |
16 def SanitizeAPIName(name, api_path=''): | 16 def SanitizeAPIName(name): |
17 """Sanitizes API filenames that are in subdirectories. | 17 """Sanitizes API filenames that are in subdirectories. |
18 """ | 18 """ |
19 filename = os.path.splitext(name)[0][len(api_path):].replace(os.sep, '_') | 19 filename = os.path.splitext(name)[0].replace(os.sep, '_') |
20 if 'experimental' in filename: | 20 if 'experimental' in filename: |
21 filename = 'experimental_' + filename.replace('experimental_', '') | 21 filename = 'experimental_' + filename.replace('experimental_', '') |
22 return filename | 22 return filename |
OLD | NEW |