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

Changeset 98793 in webkit


Ignore:
Timestamp:
Oct 28, 2011, 6:56:13 PM (15 years ago)
Author:
abarth@webkit.org
Message:

Rename ExceptionCodeDescription.in to DOMExceptions.in
https://bugs.webkit.org/show_bug.cgi?id=71157

Reviewed by Eric Seidel.

.:

  • Source/cmake/WebKitMacros.cmake:

Source/WebCore:

This file is now used for more than just the descriptions of the exceptions.

  • CMakeLists.txt:
  • CodeGenerators.pri:
  • DerivedSources.make:
  • GNUmakefile.am:
  • WebCore.gyp/WebCore.gyp:
  • WebCore.gyp/scripts/action_makenames.py:
  • dom/DOMExceptions.in: Copied from Source/WebCore/dom/ExceptionCodeDescription.in.
  • dom/ExceptionCodeDescription.in: Removed.
  • dom/make_dom_exceptions.pl: Copied from Source/WebCore/dom/make_exception_code_description.pl.
  • dom/make_exception_code_description.pl: Removed.
Location:
trunk
Files:
9 edited
2 moved

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r98711 r98793  
     12011-10-28  Adam Barth  <abarth@webkit.org>
     2
     3        Rename ExceptionCodeDescription.in to DOMExceptions.in
     4        https://bugs.webkit.org/show_bug.cgi?id=71157
     5
     6        Reviewed by Eric Seidel.
     7
     8        * Source/cmake/WebKitMacros.cmake:
     9
    1102011-10-28  Adam Barth  <abarth@webkit.org>
    211
  • trunk/Source/WebCore/CMakeLists.txt

    r98790 r98793  
    23332333
    23342334
    2335 GENERATE_EXCEPTION_CODE_DESCRIPTION(${WEBCORE_DIR}/dom/ExceptionCodeDescription.in ExceptionCodeDescription.cpp)
     2335GENERATE_EXCEPTION_CODE_DESCRIPTION(${WEBCORE_DIR}/dom/DOMExceptions.in ExceptionCodeDescription.cpp)
    23362336LIST(APPEND WebCore_SOURCES ${DERIVED_SOURCES_WEBCORE_DIR}/ExceptionCodeDescription.cpp)
    23372337
  • trunk/Source/WebCore/ChangeLog

    r98792 r98793  
     12011-10-28  Adam Barth  <abarth@webkit.org>
     2
     3        Rename ExceptionCodeDescription.in to DOMExceptions.in
     4        https://bugs.webkit.org/show_bug.cgi?id=71157
     5
     6        Reviewed by Eric Seidel.
     7
     8        This file is now used for more than just the descriptions of the exceptions.
     9
     10        * CMakeLists.txt:
     11        * CodeGenerators.pri:
     12        * DerivedSources.make:
     13        * GNUmakefile.am:
     14        * WebCore.gyp/WebCore.gyp:
     15        * WebCore.gyp/scripts/action_makenames.py:
     16        * dom/DOMExceptions.in: Copied from Source/WebCore/dom/ExceptionCodeDescription.in.
     17        * dom/ExceptionCodeDescription.in: Removed.
     18        * dom/make_dom_exceptions.pl: Copied from Source/WebCore/dom/make_exception_code_description.pl.
     19        * dom/make_exception_code_description.pl: Removed.
     20
    1212011-10-28  Chris Rogers  <crogers@google.com>
    222
  • trunk/Source/WebCore/CodeGenerators.pri

    r98713 r98793  
    3737EVENT_TARGET_FACTORY = $$PWD/dom/EventTargetFactory.in
    3838
    39 EXCEPTION_CODE_DESCRIPTION = $$PWD/dom/ExceptionCodeDescription.in
     39DOM_EXCEPTIONS = $$PWD/dom/DOMExceptions.in
    4040
    4141COLORDATA_GPERF = $$PWD/platform/ColorData.gperf
     
    775775# GENERATOR 5-G:
    776776exceptioncodedescription.output = $${WC_GENERATED_SOURCES_DIR}/ExceptionCodeDescription.cpp
    777 exceptioncodedescription.input = EXCEPTION_CODE_DESCRIPTION
    778 exceptioncodedescription.wkScript = $$PWD/dom/make_exception_code_description.pl
    779 exceptioncodedescription.commands = perl -I$$PWD/bindings/scripts $$exceptioncodedescription.wkScript --input $$EXCEPTION_CODE_DESCRIPTION --outputDir $$WC_GENERATED_SOURCES_DIR
    780 exceptioncodedescription.depends = $$PWD/dom/make_exception_code_description.pl $$EXCEPTION_CODE_DESCRIPTION
     777exceptioncodedescription.input = DOM_EXCEPTIONS
     778exceptioncodedescription.wkScript = $$PWD/dom/make_dom_exceptions.pl
     779exceptioncodedescription.commands = perl -I$$PWD/bindings/scripts $$exceptioncodedescription.wkScript --input $$DOM_EXCEPTIONS --outputDir $$WC_GENERATED_SOURCES_DIR
     780exceptioncodedescription.depends = $$PWD/dom/make_dom_exceptions.pl $$DOM_EXCEPTIONS
    781781addExtraCompiler(exceptioncodedescription)
    782782
  • trunk/Source/WebCore/DerivedSources.make

    r98755 r98793  
    858858        perl -I $(WebCore)/bindings/scripts $< --input $(WebCore)/dom/EventTargetFactory.in
    859859
    860 ExceptionCodeDescription.cpp ExceptionCodeDescription.h ExceptionHeaders.h ExceptionInterfaces.h : dom/make_exception_code_description.pl dom/ExceptionCodeDescription.in
    861         perl -I $(WebCore)/bindings/scripts $< --input $(WebCore)/dom/ExceptionCodeDescription.in
     860ExceptionCodeDescription.cpp ExceptionCodeDescription.h ExceptionHeaders.h ExceptionInterfaces.h : dom/make_dom_exceptions.pl dom/DOMExceptions.in
     861        perl -I $(WebCore)/bindings/scripts $< --input $(WebCore)/dom/DOMExceptions.in
    862862
    863863# --------
  • trunk/Source/WebCore/GNUmakefile.am

    r98755 r98793  
    697697        $(AM_V_GEN)$(PERL) -I$(WebCore)/bindings/scripts $< --input $(WebCore)/dom/EventTargetFactory.in --outputDir "$(GENSOURCES_WEBCORE)"
    698698
    699 DerivedSources/WebCore/ExceptionCodeDescription.cpp DerivedSources/WebCore/ExceptionCodeDescription.h DerivedSources/WebCore/ExceptionHeaders.h DerivedSources/WebCore/ExceptionInterfaces.h: $(WebCore)/dom/make_exception_code_description.pl $(WebCore)/dom/ExceptionCodeDescription.in
    700         $(AM_V_GEN)$(PERL) -I$(WebCore)/bindings/scripts $< --input $(WebCore)/dom/ExceptionCodeDescription.in --outputDir "$(GENSOURCES_WEBCORE)"
     699DerivedSources/WebCore/ExceptionCodeDescription.cpp DerivedSources/WebCore/ExceptionCodeDescription.h DerivedSources/WebCore/ExceptionHeaders.h DerivedSources/WebCore/ExceptionInterfaces.h: $(WebCore)/dom/make_dom_exceptions.pl $(WebCore)/dom/DOMExceptions.in
     700        $(AM_V_GEN)$(PERL) -I$(WebCore)/bindings/scripts $< --input $(WebCore)/dom/DOMExceptions.in --outputDir "$(GENSOURCES_WEBCORE)"
    701701
    702702# All Web Inspector generated files are created with this one call to CodeGeneratorInspector.py
     
    876876        Source/WebCore/css/CSSPropertyNames.in \
    877877        Source/WebCore/css/CSSValueKeywords.in \
     878        Source/WebCore/dom/DOMExceptions.in \
    878879        Source/WebCore/css/fullscreen.css \
    879880        Source/WebCore/css/fullscreenQuickTime.css \
     
    896897        Source/WebCore/dom/EventFactory.in \
    897898        Source/WebCore/dom/EventTargetFactory.in \
    898         Source/WebCore/dom/ExceptionCodeDescription.in \
     899        Source/WebCore/dom/make_dom_exceptions.pl \
     900        Source/WebCore/dom/make_event_factory.pl \
    899901        Source/WebCore/dom/make_names.pl \
    900         Source/WebCore/dom/make_event_factory.pl \
    901         Source/WebCore/dom/make_exception_code_description.pl \
    902902        Source/WebCore/html/HTMLAttributeNames.in \
    903903        Source/WebCore/html/HTMLTagNames.in \
  • trunk/Source/WebCore/WebCore.gyp/WebCore.gyp

    r98755 r98793  
    699699          'action_name': 'ExceptionCodeDescription',
    700700          'inputs': [
    701             '../dom/make_exception_code_description.pl',
    702             '../dom/ExceptionCodeDescription.in',
     701            '../dom/make_dom_exceptions.pl',
     702            '../dom/DOMExceptions.in',
    703703          ],
    704704          'outputs': [
  • trunk/Source/WebCore/WebCore.gyp/scripts/action_makenames.py

    r98711 r98793  
    120120        if inputBasename == 'make_names.pl' \
    121121            or inputBasename == 'make_event_factory.pl' \
    122             or inputBasename == 'make_exception_code_description.pl':
     122            or inputBasename == 'make_dom_exceptions.pl':
    123123            assert makeNamesInput == None
    124124            makeNamesInput = inputAbs
     
    133133        elif inputBasename.endswith('EventFactory.in') \
    134134            or inputBasename.endswith('EventTargetFactory.in') \
    135             or inputBasename.endswith('ExceptionCodeDescription.in'):
     135            or inputBasename.endswith('DOMExceptions.in'):
    136136            eventsInput = inputAbsPosix
    137137        elif inputBasename.endswith('Names.in'):
  • trunk/Source/cmake/WebKitMacros.cmake

    r98711 r98793  
    5050
    5151MACRO (GENERATE_EXCEPTION_CODE_DESCRIPTION _infile _outfile)
    52     SET(NAMES_GENERATOR ${WEBCORE_DIR}/dom/make_exception_code_description.pl)
     52    SET(NAMES_GENERATOR ${WEBCORE_DIR}/dom/make_dom_exceptions.pl)
    5353
    5454    ADD_CUSTOM_COMMAND(
Note: See TracChangeset for help on using the changeset viewer.