Changeset 65359 in webkit


Ignore:
Timestamp:
Aug 13, 2010 11:44:40 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-08-13 Eric Seidel <eric@webkit.org>

Unreviewed. Build fix only.

Add support for MathML entities
https://bugs.webkit.org/show_bug.cgi?id=43949

  • Scripts/create-html-entity-table:
    • Hack sys.path to avoid executing 2.5 dependent python on systems (like chromium-win and Tiger) which do not have 2.5 python.
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r65358 r65359  
     12010-08-13  Eric Seidel  <eric@webkit.org>
     2
     3        Unreviewed.  Build fix only.
     4
     5        Add support for MathML entities
     6        https://bugs.webkit.org/show_bug.cgi?id=43949
     7
     8        * Scripts/create-html-entity-table:
     9         - Hack sys.path to avoid executing 2.5 dependent python
     10           on systems (like chromium-win and Tiger) which do not have 2.5 python.
     11
    1122010-08-13  Adam Barth  <abarth@webkit.org>
    213
  • trunk/WebKitTools/Scripts/create-html-entity-table

    r65358 r65359  
    3232import sys
    3333
    34 import webkitpy.thirdparty.simplejson as simplejson
     34# Hack sys.path to avoid executing webkitpy __init__.py code which may
     35# use Python 2.5 features.  This code needs to run on Python 2.3 in order
     36# to support Mac OS X Tiger.
     37scripts_directory = sys.path[0]
     38sys.path.append("%s/webkitpy/thirdparty" % scripts_directory)
     39
     40import simplejson
    3541
    3642
Note: See TracChangeset for help on using the changeset viewer.