⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 160173 in webkit


Ignore:
Timestamp:
Dec 5, 2013, 6:32:46 AM (13 years ago)
Author:
Carlos Garcia Campos
Message:

[GTK] Fix gtk-doc warnings when generating DOM bindings API docs
https://bugs.webkit.org/show_bug.cgi?id=125302

Reviewed by Philippe Normand.

  • gtk/generate-webkitdom-doc-files:

(WebKitDOMDocGeneratorSections.write_footer): Add a new section
containing a private subsection for WEBKIT_API, WEBKIT_DEPRECATED
and WEBKIT_DEPRECATED_FOR macros.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r160170 r160173  
     12013-12-05  Carlos Garcia Campos  <cgarcia@igalia.com>
     2
     3        [GTK] Fix gtk-doc warnings when generating DOM bindings API docs
     4        https://bugs.webkit.org/show_bug.cgi?id=125302
     5
     6        Reviewed by Philippe Normand.
     7
     8        * gtk/generate-webkitdom-doc-files:
     9        (WebKitDOMDocGeneratorSections.write_footer): Add a new section
     10        containing a private subsection for WEBKIT_API, WEBKIT_DEPRECATED
     11        and WEBKIT_DEPRECATED_FOR macros.
     12
    1132013-12-05  Laszlo Vidacs  <lac@inf.u-szeged.hu>
    214
  • trunk/Tools/gtk/generate-webkitdom-doc-files

    r159614 r160173  
    189189            sys.stdout.write('</SECTION>\n\n')
    190190
     191    def write_footer(self):
     192        sys.stdout.write('<SECTION>\n')
     193        sys.stdout.write('<FILE>webkitdomdefines</FILE>\n<TITLE>WebKitDOMDefines</TITLE>\n')
     194        sys.stdout.write('<SUBSECTION Private>\n')
     195        sys.stdout.write('WEBKIT_API\nWEBKIT_DEPRECATED\nWEBKIT_DEPRECATED_FOR\n')
     196        sys.stdout.write('</SECTION>\n\n')
     197
    191198
    192199symbol_files = sys.stdin.read().strip('\n').split(' ')
Note: See TracChangeset for help on using the changeset viewer.