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

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

Issue 12093101: Add even more documentation back to 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') | no next file » | 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 817 matching lines...) Expand 10 before | Expand all | Expand 10 after
828 def GetComments(library_name, interface_name, member_name=None): 828 def GetComments(library_name, interface_name, member_name=None):
829 """ Finds all comments for the interface or member and returns a list. """ 829 """ Finds all comments for the interface or member and returns a list. """
830 830
831 # Add documentation from JSON. 831 # Add documentation from JSON.
832 comments = [] 832 comments = []
833 library_name = 'dart.dom.%s' % library_name 833 library_name = 'dart.dom.%s' % library_name
834 if library_name in _dom_json and interface_name in _dom_json[library_name]: 834 if library_name in _dom_json and interface_name in _dom_json[library_name]:
835 if (member_name and 'members' in _dom_json[library_name][interface_name] and 835 if (member_name and 'members' in _dom_json[library_name][interface_name] and
836 (member_name in _dom_json[library_name][interface_name]['members'])): 836 (member_name in _dom_json[library_name][interface_name]['members'])):
837 comments = _dom_json[library_name][interface_name]['members'][member_name] 837 comments = _dom_json[library_name][interface_name]['members'][member_name]
838 elif 'comment' in _dom_json[library_name][interface_name]: 838 elif (not member_name and 'comment' in
839 _dom_json[library_name][interface_name]):
839 comments = _dom_json[library_name][interface_name]['comment'] 840 comments = _dom_json[library_name][interface_name]['comment']
840 841
841 if (len(comments)): 842 if (len(comments)):
842 comments = ['\n'.join(comments)] 843 comments = ['\n'.join(comments)]
843 844
844 return comments 845 return comments
845 846
846 def GetAnnotationsAndComments(library_name, interface_name, member_name=None): 847 def GetAnnotationsAndComments(library_name, interface_name, member_name=None):
847 annotations = GetComments(library_name, interface_name, member_name) 848 annotations = GetComments(library_name, interface_name, member_name)
848 annotations = annotations + (FindCommonAnnotations(library_name, interface_nam e, 849 annotations = annotations + (FindCommonAnnotations(library_name, interface_nam e,
(...skipping 598 matching lines...) Expand 10 before | Expand all | Expand 10 after
1447 self) 1448 self)
1448 1449
1449 if type_data.clazz == 'SVGTearOff': 1450 if type_data.clazz == 'SVGTearOff':
1450 dart_interface_name = self._renamer.RenameInterface( 1451 dart_interface_name = self._renamer.RenameInterface(
1451 self._database.GetInterface(type_name)) 1452 self._database.GetInterface(type_name))
1452 return SVGTearOffIDLTypeInfo( 1453 return SVGTearOffIDLTypeInfo(
1453 type_name, type_data, dart_interface_name, self) 1454 type_name, type_data, dart_interface_name, self)
1454 1455
1455 class_name = '%sIDLTypeInfo' % type_data.clazz 1456 class_name = '%sIDLTypeInfo' % type_data.clazz
1456 return globals()[class_name](type_name, type_data) 1457 return globals()[class_name](type_name, type_data)
OLDNEW
« no previous file with comments | « tools/dom/docs/docs.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698