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

Side by Side Diff: tools/dom/scripts/generator.py

Issue 12061008: Renaming dart:html library from 'html' to 'dart.html' (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 10 months 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tools/dom/docs/docs.json ('k') | tools/dom/scripts/systemhtml.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/python 1 #!/usr/bin/python
2 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3 # for details. All rights reserved. Use of this source code is governed by a 3 # for details. All rights reserved. Use of this source code is governed by a
4 # BSD-style license that can be found in the LICENSE file. 4 # BSD-style license that can be found in the LICENSE file.
5 5
6 """This module provides shared functionality for systems to generate 6 """This module provides shared functionality for systems to generate
7 Dart APIs from the IDL database.""" 7 Dart APIs from the IDL database."""
8 8
9 import copy 9 import copy
10 import json 10 import json
(...skipping 813 matching lines...) Expand 10 before | Expand all | Expand 10 after
824 "@SupportedBrowser(SupportedBrowser.FIREFOX)", 824 "@SupportedBrowser(SupportedBrowser.FIREFOX)",
825 "@SupportedBrowser(SupportedBrowser.SAFARI)", 825 "@SupportedBrowser(SupportedBrowser.SAFARI)",
826 ], 826 ],
827 } 827 }
828 828
829 def GetComments(interface_name, member_name=None, library_name=None): 829 def GetComments(interface_name, member_name=None, library_name=None):
830 """ Finds all comments for the interface or member and returns a list. """ 830 """ Finds all comments for the interface or member and returns a list. """
831 831
832 # Add documentation from JSON. 832 # Add documentation from JSON.
833 comments = [] 833 comments = []
834 834 library_name = 'dart.dom.%s' % library_name
835 if library_name in _dom_json and interface_name in _dom_json[library_name]: 835 if library_name in _dom_json and interface_name in _dom_json[library_name]:
836 if member_name and (member_name in 836 if member_name and (member_name in
837 _dom_json[library_name][interface_name]['members']): 837 _dom_json[library_name][interface_name]['members']):
838 comments = _dom_json[library_name][interface_name]['members'][member_name] 838 comments = _dom_json[library_name][interface_name]['members'][member_name]
839 elif 'comment' in _dom_json[library_name][interface_name]: 839 elif 'comment' in _dom_json[library_name][interface_name]:
840 comments = _dom_json[library_name][interface_name]['comment'] 840 comments = _dom_json[library_name][interface_name]['comment']
841 841
842 if (len(comments)): 842 if (len(comments)):
843 comments = ['\n'.join(comments)] 843 comments = ['\n'.join(comments)]
844 844
(...skipping 606 matching lines...) Expand 10 before | Expand all | Expand 10 after
1451 self) 1451 self)
1452 1452
1453 if type_data.clazz == 'SVGTearOff': 1453 if type_data.clazz == 'SVGTearOff':
1454 dart_interface_name = self._renamer.RenameInterface( 1454 dart_interface_name = self._renamer.RenameInterface(
1455 self._database.GetInterface(type_name)) 1455 self._database.GetInterface(type_name))
1456 return SVGTearOffIDLTypeInfo( 1456 return SVGTearOffIDLTypeInfo(
1457 type_name, type_data, dart_interface_name, self) 1457 type_name, type_data, dart_interface_name, self)
1458 1458
1459 class_name = '%sIDLTypeInfo' % type_data.clazz 1459 class_name = '%sIDLTypeInfo' % type_data.clazz
1460 return globals()[class_name](type_name, type_data) 1460 return globals()[class_name](type_name, type_data)
OLDNEW
« no previous file with comments | « tools/dom/docs/docs.json ('k') | tools/dom/scripts/systemhtml.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698