Changeset 434

Show
Ignore:
Timestamp:
08/11/08 10:52:54 (4 months ago)
Author:
odole
Message:

merge with webkit revision 35662

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/BAL/OWBAL/Concretizations/Internationalization/Generic/BCTextBoundariesGeneric.cpp

    r307 r434  
    3434#include "StringImpl.h" 
    3535#include "TextBreakIterator.h" 
     36 
     37//include for printf with gcc-4.3 
     38#include <stdio.h> 
    3639 
    3740namespace OWBAL { 
  • trunk/BAL/WKAL/Concretizations/Fonts/Embedded/BCFontCustomPlatformDataEmbedded.cpp

    r243 r434  
    3636FontCustomPlatformData::~FontCustomPlatformData() 
    3737{ 
    38     printf("FontCustomPlatformData::~FontCustomPlatformData()\n"); 
    39     //cairo_font_face_destroy(m_fontFace); 
    4038} 
    4139 
    4240FontPlatformData FontCustomPlatformData::fontPlatformData(int size, bool bold, bool italic, FontRenderingMode) 
    4341{ 
    44     printf("FontCustomPlatformData::fontPlatformData\n"); 
    4542    return FontPlatformData(m_fontFace, size, bold, italic); 
    4643} 
     
    5350FontCustomPlatformData* createFontCustomPlatformData(SharedBuffer* buffer) 
    5451{ 
    55     printf("createFontCustomPlatformData\n"); 
    5652    ASSERT_ARG(buffer, buffer); 
    5753 
  • trunk/BAL/WKAL/Concretizations/Fonts/Embedded/BCSimpleFontDataEmbedded.cpp

    r411 r434  
    5656void SimpleFontData::platformDestroy() 
    5757{ 
    58     printf("SimpleFontData::platformDestroy\n"); 
    5958    BalNotImplemented(); 
    6059} 
     
    8988void SimpleFontData::setFont(BalFont* cr) const 
    9089{ 
    91     printf("SimpleFontData::setFont\n"); 
    9290    ASSERT(cr); 
    9391    m_font.setFont(cr); 
  • trunk/ChangeLog

    r319 r434  
    1 2008-06-18  Marco Barisione  <marco.barisione@collabora.co.uk> 
    2  
    3         Reviewed by Alp Toker. 
    4  
    5         https://bugs.webkit.org/show_bug.cgi?id=19171 
    6         [GTK] GTypes for enumerations 
    7  
    8         Generate GTypes for public enumerations so they can be used as 
    9         properties. 
    10  
    11         * GNUmakefile.am: Generate webkit-enum-types.cpp and 
    12         webkit-enum-types.h. 
    13  
    14 2008-06-16  Simon Hausmann  <hausmann@webkit.org> 
    15  
    16         Fix the Qt build. testkjs.pro is now called jsc.pro. 
    17  
    18         * WebKit.pro: 
    19  
    20 2008-06-15  Alp Toker  <alp@nuanti.com> 
    21  
    22         Rubber-stamped by Maciej. 
    23  
    24         Install 'jsc' application by default. 
    25  
    26         * GNUmakefile.am: 
    27  
    28 2008-06-08  Alp Toker  <alp@nuanti.com> 
    29  
    30         autotools/GTK+ build system cleanup. Don't include WebKit API in the 
    31         WebCore build as it's no longer needed since r34426. 
    32  
    33         * GNUmakefile.am: 
    34  
    35 2008-06-08  Alp Toker  <alp@nuanti.com> 
    36  
    37         Rubber-stamped by Mark Rowe. 
    38  
    39         Bring back -fstrict-aliasing for JavaScriptCore which was removed in 
    40         r31821, since aliasing issues have now been fixed. 
    41  
    42         Use -O3, not -O2 for the JavaScriptCore build. 
    43  
    44         * GNUmakefile.am: 
    45         * configure.ac: 
    46  
    47 2008-06-05  Christian Dywan  <christian@twotoasts.de> 
    48  
    49         Reviewed by Alp Toker. 
    50  
    51         https://bugs.webkit.org/show_bug.cgi?id=14141 
    52         Please add a version to the Gtk port 
    53  
    54         * GNUmakefile.am: 
    55  
    56 2008-06-02  Alp Toker  <alp@nuanti.com> 
    57  
    58         GTK+/autotools Windows build system fixes. 
    59  
    60         * GNUmakefile.am: 
    61         * configure.ac: 
    62  
    63 2008-06-02  Jan Michael Alonzo  <jmalonzo@webkit.org> 
    64  
    65         Reviewed by Alp Toker. 
    66  
    67         Build WebCore GTK+ sources as part of WebCore, not WebKit. 
    68         Split common and GTK+-specific sources into separate file lists. 
    69  
    70         * GNUmakefile.am: 
    71  
    72 2008-06-01  Josh Triplett  <josh@freedesktop.org> 
    73  
    74         Reviewed by Alp Toker. 
    75  
    76         http://bugs.webkit.org/show_bug.cgi?id=16891 
    77         [GTK] autotools build is slow 
    78  
    79         Add dolt revision 5e9eef10 to the autotools build system. Speeds up 
    80         the build, often by a factor of two or more on supported platforms, 
    81         otherwise falls back to libtool. 
    82  
    83         See http://dolt.freedesktop.org for details. 
    84  
    85         * acinclude.m4: Added. 
    86         * configure.ac: 
    87  
    88 2008-05-25  Jan Michael Alonzo  <jmalonzo@webkit.org> 
    89  
    90         Reviewed by Alp Toker. 
    91  
    92         http://bugs.webkit.org/show_bug.cgi?id=19142 
    93         [Gtk] Remove build options --svg-experimental and --cross-document-messaging 
    94  
    95         * configure.ac: 
    96  
    97 2008-05-24  Alp Toker  <alp@nuanti.com> 
    98  
    99         GTK+/Win32 build fixes. Link against Windows ICU without using 
    100         icu-config since it's not available on that platform. 
    101  
    102         Link against Ws2_32 when the curl http backend is chosen since we 
    103         use select() directly. 
    104  
    105         * configure.ac: 
    106  
    107 2008-05-23  Alp Toker  <alp@nuanti.com> 
    108  
    109         GTK+ fixes for building without database support. 
    110  
    111         * configure.ac: 
    112  
    113 2008-05-20  Jan Michael Alonzo  <jmalonzo@webkit.org> 
    114  
    115         Reviewed by Alp Toker. 
    116  
    117         Fix for previous autotools change. 
    118  
    119         * configure.ac: 
    120  
    121 2008-05-20  Jan Michael Alonzo  <jmalonzo@webkit.org> 
    122  
    123         Reviewed by Alp. 
    124  
    125         http://bugs.webkit.org/show_bug.cgi?id=18483 
    126         [Gtk] Autotools should match build-webkit default flags 
    127  
    128         * configure.ac: 
    129  
    130 2008-05-19  Alp Toker  <alp@nuanti.com> 
    131  
    132         GTK+ build fix for Mac/Win. Don't check for FreeType/FontConfig when 
    133         the Pango font backend is selected. 
    134  
    135         * GNUmakefile.am: 
    136         * configure.ac: 
    137  
    138 2008-05-16  Julien Chaffraix  <jchaffraix@webkit.org> 
    139  
    140         Reviewed by Eric. 
    141  
    142         Preparatory work for bug 9191: JS*ElementWrapperFactory should be autogenerated 
    143  
    144         * configure.ac: Add HTML_FLAGS and set it when video is enabled. 
    145  
    146 2008-05-15  Ariya Hidayat  <ariya.hidayat@trolltech.com> 
    147  
    148         Reviewed by Simon. 
    149  
    150         Since WebKitGtk is fully using autotools now, clean-up the .pro/.pri files 
    151         from gtk-port. 
    152  
    153         * WebKit.pri: 
    154         * WebKit.pro: 
    155  
    156 2008-05-09  Anders Carlsson  <andersca@apple.com> 
    157  
    158         Reviewed by Mark. 
    159  
    160         Add x86_64 rule. 
    161          
    162         * Makefile: 
    163  
    164 2008-05-09  Simon Hausmann  <hausmann@webkit.org> 
    165  
    166         Reviewed by Holger. 
    167  
    168         Removed explicit linkage against libxml and libxslt on Qt/Mac builds. 
    169          
    170         This dependency is completely unnecessary here and creates only problems by 
    171         propagating through WebCore.pro over libQtWebKit.prl right now customer 
    172         applications. 
    173          
    174  
    175         * WebKit.pri: 
    176  
    177 2008-05-02  Anders Carlsson  <andersca@apple.com> 
    178  
    179         Reviewed by Mark. 
    180  
    181         Add an "x86_64" make rule. 
    182          
    183         * Makefile.shared: 
    184  
    185 2008-05-02  Jan Michael Alonzo  <jmalonzo@unpluggable.com> 
    186  
    187         Reviewed by Eric. 
    188  
    189         https://bugs.webkit.org/show_bug.cgi?id=18811 
    190         Enable dashboard and offline web apps in autotools 
    191  
    192         * configure.ac: 
    193  
    194 2008-05-01  Marc Ordinas i Llopis  <marc.ordinasillopis@collabora.co.uk> 
    195  
    196         Reviewed by Alp Toker. 
    197  
    198         https://bugs.webkit.org/show_bug.cgi?id=14750 
    199         Added support for NPAPI plugins on Gtk and Qt-x11 ports. 
    200  
    201         * GNUmakefile.am: Added Xt library. 
    202  
    203 2008-04-29  David Kilzer  <ddkilzer@apple.com> 
    204  
    205         BUILD FIX for ENABLE(DASHBOARD_SUPPORT) 
    206  
    207         * configure.ac: Added conditional for ENABLE_DASHBOARD_SUPPORT. 
    208  
    209 2008-04-22  Alp Toker  <alp@nuanti.com> 
    210  
    211         GTK+ debug build fix for changes in r32257. 
    212  
    213         * GNUmakefile.am: 
    214  
    215 2008-04-18  Jan Michael Alonzo  <jmalonzo@unpluggable.com> 
    216  
    217         Reviewed by Alp Toker. 
    218  
    219         http://bugs.webkit.org/show_bug.cgi?id=16620 
    220         [GTK] Autotools make dist and make check support 
    221  
    222         Cleanups. 
    223  
    224         * GNUmakefile.am: 
    225  
    226 2008-04-11  Mark Rowe  <mrowe@apple.com> 
    227  
    228         Rubber-stamped by Antti Koivisto. 
    229  
    230         * GNUmakefile.am: Disable a warning that GCC 4.3 triggers all over the show. 
    231  
    232 2008-04-17  Alp Toker  <alp@atoker.com> 
    233  
    234         GTK+ build fix. Back out the libjpeg check part of r32008 from bug 
    235         #17865 (reopened). 
    236  
    237         * configure.ac: 
    238  
    239 2008-04-17  Jan Michael Alonzo  <jmalonzo@unpluggable.com> 
    240  
    241         Reviewed by Alp Toker. 
    242  
    243         http://bugs.webkit.org/show_bug.cgi?id=17865 
    244         [Gtk] Improve detection of jpeglib and glib tools 
    245  
    246         Improve detecting jpeglib and glib tools 
    247  
    248         * configure.ac: Throw an error if the dependencies above are 
    249         currently not installed 
    250  
    251 2008-04-14  Xan Lopez  <xan@gnome.org> 
    252  
    253         Reviewed by Alp Toker. 
    254  
    255         http://bugs.webkit.org/show_bug.cgi?id=17917 
    256         Bug 17917: Cookie support for HTTP soup backend 
    257  
    258         Bumped the libsoup required version to 2.23 for cookie support. 
    259  
    260         * configure.ac: 
    261  
    262 2008-04-11  Mark Rowe  <mrowe@apple.com> 
    263  
    264         Rubber-stamped by Anders Carlsson. 
    265  
    266         Fix https://bugs.webkit.org/show_bug.cgi?id=18430 
    267         Bug 18430: SIGSEGV on amd64 when built with gcc 4.3 
    268  
    269         GCC 4.3 generates bad code in some instances when working with our HashTables 
    270         as some of the HashTable code violates the strict aliasing requirements.  Since 
    271         GCC 4.2 this code has generated warnings when -fstrict-aliasing is enabled. Until 
    272         the code can be fixed to be safe with strict aliasing enabled, we will disable 
    273         strict aliasing. 
    274  
    275         * GNUmakefile.am: 
    276  
    277 2008-03-12  Michael Emmel  <mike.emmel@gmail.com> 
    278  
    279         Reviewed by Alp Toker. 
    280  
    281         http://bugs.webkit.org/show_bug.cgi?id=18397 
    282         Fix leaving spaces before parens in functions 
    283  
    284         * WebKitTools/Scripts/wkstyle: 
    285  
    286 2008-04-07  Jan Michael Alonzo  <jmalonzo@unpluggable.com> 
    287  
    288         Build fix, rubber-stamped and landed by ap. 
    289  
    290         * configure.ac: Add autoconf flag for HTML5 client-side session and persistent storage support. 
    291  
    292 2008-03-21  Rodney Dawes  <dobey@wayofthemonkey.com> 
    293  
    294         Reviewed by Holger. 
    295  
    296         Remove the JSCore include path options from global_cppflags. 
    297         Place JSCore include path options in javascriptcore_cppflags. 
    298         Add javascriptcore_cppflags to libWebCore_la_CPPFLAGS. 
    299  
    300         * GNUmakefile.am: 
    301  
    302 2008-03-20  Jasper Bryant-Greene  <jasper@unix.geek.nz> 
    303  
    304         Reviewed by Anders. 
    305  
    306         Resolves http://bugs.webkit.org/show_bug.cgi?id=16092 
    307         "[GTK] Middle-mouse click should allow opening a URL in a new tab" 
    308  
    309         Added WebKitNavigationAction object to GTK API 
    310  
    311         * GNUmakefile.am: 
    312  
    313 2008-03-12  Xan Lopez  <xan@gnome.org> 
    314  
    315         Reviewed by Alp Toker. 
    316  
    317         http://bugs.webkit.org/show_bug.cgi?id=15229 
    318  
    319         Add optional font backend support with freetype and pango 
    320         backends. Default is freetype for now. 
    321  
    322         Original patch by Sven Herzberg <sven@imendio.com> 
    323  
    324         * configure.ac: 
    325  
    326 2008-03-11  Xan Lopez  <xan@gnome.org> 
    327  
    328         Reviewed by Alp Toker. 
    329  
    330         http://bugs.webkit.org/show_bug.cgi?id=16476 
    331  
    332         Add support for multiple http backends, and add soup backend (off by default). 
    333          
    334         * GNUmakefile.am: 
    335         * configure.ac: 
    336  
    337 2008-03-07  Simon Hausmann  <hausmann@webkit.org> 
    338  
    339         Reviewed by Darin. 
    340  
    341         Done with Lars. 
    342  
    343         Added plugins subdirectory to the include path. 
    344  
    345         * WebKit.pri: 
    346  
    347 2008-03-09  Alp Toker  <alp@atoker.com> 
    348  
    349         GTK+ build fix for r30913. 
    350  
    351         Use UNICODE_CFLAGS for C++ sources as well as C sources. 
    352  
    353         * GNUmakefile.am: 
    354  
    355 2008-03-09  Jürg Billeter  <j@bitron.ch> 
    356  
    357         Reviewed by Alp Toker. 
    358  
    359         Conditionalise ICU for Unicode in the GTK+ port. 
    360  
    361         * GNUmakefile.am: 
    362         * configure.ac: 
    363  
    364 2008-03-03  Brent Fulgham  <bfulgham@gmail.com> 
    365  
    366         Reviewed by Alp Toker. 
    367  
    368         http://bugs.webkit.org/show_bug.cgi?id=17644 
    369         Build GTK on Mac OS X using native ICU library 
    370  
    371         Use Apple native ICU libraries when building GTK 
    372         webkit on Mac OS. 
    373  
    374         * configure.ac: 
    375  
    376 2008-03-02  Brent Fulgham  <bfulgham@gmail.com> 
    377  
    378         Reviewed by Alp Toker. 
    379  
    380         Add ICU_CPPFLAGS earlier in include path for WebCore 
    381         so that we find $(icu_cppflags)/unicode/utf8.h, rather than 
    382         the wtf/unicode/UTF8.h on case-insensitive file systems. 
    383  
    384         * GNUmakefile.am: 
    385  
    386 2008-03-02  Alp Toker  <alp@atoker.com> 
    387  
    388         Reviewed by Mark Rowe. 
    389  
    390         Split the WebKit GTK+ build out of the WebCore build and change the 
    391         shared object name to match the package name. 
    392  
    393         * GNUmakefile.am: 
    394  
    395 2008-02-28  Alp Toker  <alp@atoker.com> 
    396  
    397         Fix a configure script typo spotted by Kalle Vahlman. 
    398  
    399         * configure.ac: 
    400  
    401 2008-02-26  Timothy Hatcher  <timothy@apple.com> 
    402  
    403         Reviewed by Darin Adler. 
    404  
    405         Add "64" and "64u" make rules to allow easy building of 64-bit versions. 
    406  
    407         make 64: will build Intel-only 64-bit. 
    408         make 64u: will build 4-way universal for PPC and Intel. 
    409  
    410         * Makefile: 
    411         * Makefile.shared: 
    412  
    413 2008-02-23  Jan Michael Alonzo  <jmalonzo@unpluggable.com> 
    414  
    415         Rubber stamped by Darin. 
    416  
    417         Add separator '\' after libJavaScriptCore_la_LIBADD and cleanup 
    418         whitespaces introduced in the previous commit. 
    419  
    420         * GNUmakefile.am:  
    421  
    422 2008-02-23  Jan Michael Alonzo  <jmalonzo@unpluggable.com> 
    423  
    424         Rubber-stamped by Darin. 
    425  
    426         * GNUmakefile.am: Add both GLOBALDEPS and WEBKITDEPS instead of DEPENDENCIES. 
    427         * configure.ac: Break dependent modules into GLOBALDEPS and WEBKITDEPS. 
    428  
    429 2008-02-21  Alp Toker  <alp@atoker.com> 
    430  
    431         Fix a configure script typo. 
    432  
    433         * configure.ac: 
    434  
    435 2008-02-21  Alp Toker  <alp@atoker.com> 
    436  
    437         GTK+/autotools SVG experimental build fix 
    438  
    439         Don't enable SVG filters in --enable-svg-experimental. 
    440  
    441         This feature isn't supported at all yet. Developers can enable it 
    442         explicitly by passing --enable-svg-filters if needed. 
    443  
    444         * configure.ac: 
    445  
    446 2008-02-21  Mike Auty  <mike.auty@gmail.com> 
    447  
    448         Reviewed by Alp Toker. 
    449  
    450         http://bugs.webkit.org/show_bug.cgi?id=17445 
    451         [GTK] WebKit doesn't compile with LDFLAGS="-Wl,--as-needed" 
    452  
    453         The GNUmakefile.am files make use of the LDFLAGS variable to include library 
    454         additions such as -ljpeg etc.  Unfortunately, if these inclusions aren't made 
    455         in LIBADD/LDADD variables, then they are mis-ordered during the linking. 
    456  
    457         The as-needed flag discards libraries whose functions have not been needed by 
    458         earlier libraries, which therefore makes the ordering important. 
    459  
    460         This moves all -l library inclusion statements from LDFLAGS variables to 
    461         LIBADD/LDADD variables. 
    462  
    463         * GNUmakefile.am: 
    464  
    465 2008-02-15  Alp Toker  <alp@atoker.com> 
    466  
    467         Reviewed by Holger. 
    468  
    469         GTK+ configure script cleanups 
    470  
    471         Categorize the configuration summary printout. 
    472         Bump GTK+ requirement to 2.8. 
    473         Rename 'webkit_target' to just 'target'. 
    474         Don't check for pthread on Win32. 
    475  
    476         * configure.ac: 
    477  
    478 2008-02-14  Adam Roben  <aroben@apple.com> 
    479  
    480         Turn on cross-document messaging support by default 
    481  
    482         Reviewed by Darin. 
    483  
    484         * configure.ac: 
    485  
    486 2008-02-14  Adam Roben  <aroben@apple.com> 
    487  
    488         Conditionalize cross-document messaging support 
    489  
    490         The cross-document messaging parts of HTML 5 are in flux and we want 
    491         ports to be able to turn off the support as needed. 
    492  
    493         Note that the support is turned off by default right now. A subsequent 
    494         commit will turn it on by default. 
    495  
    496         Reviewed by Darin. 
    497  
    498         * configure.ac: 
    499  
    500 2008-02-12  Rodney Dawes  <dobey@wayofthemonkey.com> 
    501  
    502         Reviewed by Alp Toker. 
    503  
    504         Add a --with-hildon argument to configure.ac for adding MAEMO_CHANGES 
    505         to the CPPFLAGS for WebCore and WebKit 
    506         Add a pkgconfig check for hildon-1 when --with-hildon specified 
    507         Output the use of Hildon support in the summary 
    508         Add HILDON_CPPFLAGS to webkitgtk_cppflags 
    509         Add HILDON_CFLAGS to libWebKitGtk_la_CFLAGS 
    510         Add HILDON_LIBS to libWebKitGtk_la_LDFLAGS 
    511  
    512         * configure.ac: 
    513         * GNUmakefile.am: 
    514  
    515 2008-02-08  Alp Toker  <alp@atoker.com> 
    516  
    517         Rubber-stamped by Maciej. 
    518  
    519         Bump autoconf CAIRO_REQUIRED_VERSION up to 1.4. 
    520  
    521         * configure.ac: 
    522  
    523 2008-02-06  Timothy Hatcher  <timothy@apple.com> 
    524  
    525         Rubber-stamped by Mark Rowe. 
    526  
    527         Dump of bugs.webkit.org's Bugzilla instance. 
    528  
    529         * BugsSite: Added. 
    530         * BugsSite/.htaccess: Added. 
    531         * BugsSite/Bugzilla: Added. 
    532         * BugsSite/Bugzilla.pm: Added. 
    533         * BugsSite/Bugzilla/.cvsignore: Added. 
    534         * BugsSite/Bugzilla/.htaccess: Added. 
    535         * BugsSite/Bugzilla/Attachment.pm: Added. 
    536         * BugsSite/Bugzilla/Auth: Added. 
    537         * BugsSite/Bugzilla/Auth.pm: Added. 
    538         * BugsSite/Bugzilla/Auth/Login: Added. 
    539         * BugsSite/Bugzilla/Auth/Login/WWW: Added. 
    540         * BugsSite/Bugzilla/Auth/Login/WWW.pm: Added. 
    541         * BugsSite/Bugzilla/Auth/Login/WWW/CGI: Added. 
    542         * BugsSite/Bugzilla/Auth/Login/WWW/CGI.pm: Added. 
    543         * BugsSite/Bugzilla/Auth/Login/WWW/CGI/Cookie.pm: Added. 
    544         * BugsSite/Bugzilla/Auth/Login/WWW/Env.pm: Added. 
    545         * BugsSite/Bugzilla/Auth/README: Added. 
    546         * BugsSite/Bugzilla/Auth/Verify: Added. 
    547         * BugsSite/Bugzilla/Auth/Verify/DB.pm: Added. 
    548         * BugsSite/Bugzilla/Auth/Verify/LDAP.pm: Added. 
    549         * BugsSite/Bugzilla/Bug.pm: Added. 
    550         * BugsSite/Bugzilla/BugMail.pm: Added. 
    551         * BugsSite/Bugzilla/CGI.pm: Added. 
    552         * BugsSite/Bugzilla/Chart.pm: Added. 
    553         * BugsSite/Bugzilla/Config.pm: Added. 
    554         * BugsSite/Bugzilla/Constants.pm: Added. 
    555         * BugsSite/Bugzilla/DB: Added. 
    556         * BugsSite/Bugzilla/DB.pm: Added. 
    557         * BugsSite/Bugzilla/DB/Mysql.pm: Added. 
    558         * BugsSite/Bugzilla/DB/Pg.pm: Added. 
    559         * BugsSite/Bugzilla/DB/Schema: Added. 
    560         * BugsSite/Bugzilla/DB/Schema.pm: Added. 
    561         * BugsSite/Bugzilla/DB/Schema/Mysql.pm: Added. 
    562         * BugsSite/Bugzilla/DB/Schema/Pg.pm: Added. 
    563         * BugsSite/Bugzilla/Error.pm: Added. 
    564         * BugsSite/Bugzilla/Flag.pm: Added. 
    565         * BugsSite/Bugzilla/FlagType.pm: Added. 
    566         * BugsSite/Bugzilla/Group.pm: Added. 
    567         * BugsSite/Bugzilla/Search.pm: Added. 
    568         * BugsSite/Bugzilla/Series.pm: Added. 
    569         * BugsSite/Bugzilla/Template: Added. 
    570         * BugsSite/Bugzilla/Template.pm: Added. 
    571         * BugsSite/Bugzilla/Template/Plugin: Added. 
    572         * BugsSite/Bugzilla/Template/Plugin/Bugzilla.pm: Added. 
    573         * BugsSite/Bugzilla/Template/Plugin/Hook.pm: Added. 
    574         * BugsSite/Bugzilla/Template/Plugin/User.pm: Added. 
    575         * BugsSite/Bugzilla/Token.pm: Added. 
    576         * BugsSite/Bugzilla/User: Added. 
    577         * BugsSite/Bugzilla/User.pm: Added. 
    578         * BugsSite/Bugzilla/User/Setting.pm: Added. 
    579         * BugsSite/Bugzilla/Util.pm: Added. 
    580         * BugsSite/CGI.pl: Added. 
    581         * BugsSite/PrettyPatch: Added. 
    582         * BugsSite/PrettyPatch/PrettyPatch.rb: Added. 
    583         * BugsSite/PrettyPatch/prettify.rb: Added. 
    584         * BugsSite/QUICKSTART: Added. 
    585         * BugsSite/README: Added. 
    586         * BugsSite/UPGRADING: Added. 
    587         * BugsSite/UPGRADING-pre-2.8: Added. 
    588         * BugsSite/ant.jpg: Added. 
    589         * BugsSite/attachment-aroben.cgi: Added. 
    590         * BugsSite/attachment.cgi: Added. 
    591         * BugsSite/buglist.cgi: Added. 
    592         * BugsSite/bugzilla.dtd: Added. 
    593         * BugsSite/chart.cgi: Added. 
    594         * BugsSite/checksetup.pl: Added. 
    595         * BugsSite/colchange.cgi: Added. 
    596         * BugsSite/collectstats.pl: Added. 
    597         * BugsSite/config.cgi: Added. 
    598         * BugsSite/contrib: Added. 
    599         * BugsSite/contrib/BugzillaEmail.pm: Added. 
    600         * BugsSite/contrib/README: Added. 
    601         * BugsSite/contrib/README.Mailif: Added. 
    602         * BugsSite/contrib/bug_email.pl: Added. 
    603         * BugsSite/contrib/bugmail_help.html: Added. 
    604         * BugsSite/contrib/bugzilla-submit: Added. 
    605         * BugsSite/contrib/bugzilla-submit/README: Added. 
    606         * BugsSite/contrib/bugzilla-submit/bugdata.txt: Added. 
    607         * BugsSite/contrib/bugzilla-submit/bugzilla-submit: Added. 
    608         * BugsSite/contrib/bugzilla-submit/bugzilla-submit.xml: Added. 
    609         * BugsSite/contrib/bugzilla.procmailrc: Added. 
    610         * BugsSite/contrib/bugzilla_email_append.pl: Added. 
    611         * BugsSite/contrib/bugzilla_ldapsync.rb: Added. 
    612         * BugsSite/contrib/bzdbcopy.pl: Added. 
    613         * BugsSite/contrib/cmdline: Added. 
    614         * BugsSite/contrib/cmdline/bugcount: Added. 
    615         * BugsSite/contrib/cmdline/bugids: Added. 
    616         * BugsSite/contrib/cmdline/buglist: Added. 
    617         * BugsSite/contrib/cmdline/bugs: Added. 
    618         * BugsSite/contrib/cmdline/bugslink: Added. 
    619         * BugsSite/contrib/cmdline/makequery: Added. 
    620         * BugsSite/contrib/cmdline/query.conf: Added. 
    621         * BugsSite/contrib/cvs-update.pl: Added. 
    622         * BugsSite/contrib/gnats2bz.pl: Added. 
    623         * BugsSite/contrib/gnatsparse: Added. 
    624         * BugsSite/contrib/gnatsparse/README: Added. 
    625         * BugsSite/contrib/gnatsparse/gnatsparse.py: Added. 
    626         * BugsSite/contrib/gnatsparse/magic.py: Added. 
    627         * BugsSite/contrib/gnatsparse/specialuu.py: Added. 
    628         * BugsSite/contrib/jb2bz.py: Added. 
    629         * BugsSite/contrib/mysqld-watcher.pl: Added. 
    630         * BugsSite/contrib/sendbugmail.pl: Added. 
    631         * BugsSite/contrib/sendunsentbugmail.pl: Added. 
    632         * BugsSite/contrib/syncLDAP.pl: Added. 
    633         * BugsSite/contrib/yp_nomail.sh: Added. 
    634         * BugsSite/createaccount.cgi: Added. 
    635         * BugsSite/data: Added. 
    636         * BugsSite/data/.htaccess: Added. 
    637         * BugsSite/data/attachments: Added. 
    638         * BugsSite/data/attachments/.htaccess: Added. 
    639         * BugsSite/data/duplicates: Added. 
    640         * BugsSite/data/mail: Added. 
    641         * BugsSite/data/mimedump-tmp: Added. 
    642         * BugsSite/data/mining: Added. 
    643         * BugsSite/data/nomail: Added. 
    644         * BugsSite/data/params: Added. 
    645         * BugsSite/data/template: Added. 
    646         * BugsSite/data/template/template: Added. 
    647         * BugsSite/data/template/template/en: Added. 
    648         * BugsSite/data/template/template/en/custom: Added. 
    649         * BugsSite/data/template/template/en/custom/account: Added. 
    650         * BugsSite/data/template/template/en/custom/account/auth: Added. 
    651         * BugsSite/data/template/template/en/custom/account/auth/ldap-error.html.tmpl: Added. 
    652         * BugsSite/data/template/template/en/custom/account/auth/login-small.html.tmpl: Added. 
    653         * BugsSite/data/template/template/en/custom/account/auth/login.html.tmpl: Added. 
    654         * BugsSite/data/template/template/en/custom/account/cancel-token.txt.tmpl: Added. 
    655         * BugsSite/data/template/template/en/custom/account/create.html.tmpl: Added. 
    656         * BugsSite/data/template/template/en/custom/account/created.html.tmpl: Added. 
    657         * BugsSite/data/template/template/en/custom/account/email: Added. 
    658         * BugsSite/data/template/template/en/custom/account/email/change-new.txt.tmpl: Added. 
    659         * BugsSite/data/template/template/en/custom/account/email/change-old.txt.tmpl: Added. 
    660         * BugsSite/data/template/template/en/custom/account/email/confirm.html.tmpl: Added. 
    661         * BugsSite/data/template/template/en/custom/account/exists.html.tmpl: Added. 
    662         * BugsSite/data/template/template/en/custom/account/password: Added. 
    663         * BugsSite/data/template/template/en/custom/account/password/forgotten-password.txt.tmpl: Added. 
    664         * BugsSite/data/template/template/en/custom/account/password/set-forgotten-password.html.tmpl: Added. 
    665         * BugsSite/data/template/template/en/custom/account/prefs: Added. 
    666         * BugsSite/data/template/template/en/custom/account/prefs/account.html.tmpl: Added. 
    667         * BugsSite/data/template/template/en/custom/account/prefs/email.html.tmpl: Added. 
    668         * BugsSite/data/template/template/en/custom/account/prefs/footer.html.tmpl: Added. 
    669         * BugsSite/data/template/template/en/custom/account/prefs/permissions.html.tmpl: Added. 
    670         * BugsSite/data/template/template/en/custom/account/prefs/prefs.html.tmpl: Added. 
    671         * BugsSite/data/template/template/en/custom/account/prefs/saved-searches.html.tmpl: Added. 
    672         * BugsSite/data/template/template/en/custom/account/prefs/settings.html.tmpl: Added. 
    673         * BugsSite/data/template/template/en/custom/admin: Added. 
    674         * BugsSite/data/template/template/en/custom/admin/classifications: Added. 
    675         * BugsSite/data/template/template/en/custom/admin/classifications/add.html.tmpl: Added. 
    676         * BugsSite/data/template/template/en/custom/admin/classifications/del.html.tmpl: Added. 
    677         * BugsSite/data/template/template/en/custom/admin/classifications/delete.html.tmpl: Added. 
    678         * BugsSite/data/template/template/en/custom/admin/classifications/edit.html.tmpl: Added. 
    679         * BugsSite/data/template/template/en/custom/admin/classifications/new.html.tmpl: Added. 
    680         * BugsSite/data/template/template/en/custom/admin/classifications/reclassify.html.tmpl: Added. 
    681         * BugsSite/data/template/template/en/custom/admin/classifications/select.html.tmpl: Added. 
    682         * BugsSite/data/template/template/en/custom/admin/classifications/update.html.tmpl: Added. 
    683         * BugsSite/data/template/template/en/custom/admin/components: Added. 
    684         * BugsSite/data/template/template/en/custom/admin/components/confirm-delete.html.tmpl: Added. 
    685         * BugsSite/data/template/template/en/custom/admin/components/create.html.tmpl: Added. 
    686         * BugsSite/data/template/template/en/custom/admin/components/created.html.tmpl: Added. 
    687         * BugsSite/data/template/template/en/custom/admin/components/deleted.html.tmpl: Added. 
    688         * BugsSite/data/template/template/en/custom/admin/components/edit.html.tmpl: Added. 
    689         * BugsSite/data/template/template/en/custom/admin/components/footer.html.tmpl: Added. 
    690         * BugsSite/data/template/template/en/custom/admin/components/list.html.tmpl: Added. 
    691         * BugsSite/data/template/template/en/custom/admin/components/select-product.html.tmpl: Added. 
    692         * BugsSite/data/template/template/en/custom/admin/components/updated.html.tmpl: Added. 
    693         * BugsSite/data/template/template/en/custom/admin/fieldvalues: Added. 
    694         * BugsSite/data/template/template/en/custom/admin/fieldvalues/confirm-delete.html.tmpl: Added. 
    695         * BugsSite/data/template/template/en/custom/admin/fieldvalues/create.html.tmpl: Added. 
    696         * BugsSite/data/template/template/en/custom/admin/fieldvalues/created.html.tmpl: Added. 
    697         * BugsSite/data/template/template/en/custom/admin/fieldvalues/deleted.html.tmpl: Added. 
    698         * BugsSite/data/template/template/en/custom/admin/fieldvalues/edit.html.tmpl: Added. 
    699         * BugsSite/data/template/template/en/custom/admin/fieldvalues/footer.html.tmpl: Added. 
    700         * BugsSite/data/template/template/en/custom/admin/fieldvalues/list.html.tmpl: Added. 
    701         * BugsSite/data/template/template/en/custom/admin/fieldvalues/select-field.html.tmpl: Added. 
    702         * BugsSite/data/template/template/en/custom/admin/fieldvalues/updated.html.tmpl: Added. 
    703         * BugsSite/data/template/template/en/custom/admin/flag-type: Added. 
    704         * BugsSite/data/template/template/en/custom/admin/flag-type/confirm-delete.html.tmpl: Added. 
    705         * BugsSite/data/template/template/en/custom/admin/flag-type/edit.html.tmpl: Added. 
    706         * BugsSite/data/template/template/en/custom/admin/flag-type/list.html.tmpl: Added. 
    707         * BugsSite/data/template/template/en/custom/admin/groups: Added. 
    708         * BugsSite/data/template/template/en/custom/admin/groups/change.html.tmpl: Added. 
    709         * BugsSite/data/template/template/en/custom/admin/groups/create.html.tmpl: Added. 
    710         * BugsSite/data/template/template/en/custom/admin/groups/created.html.tmpl: Added. 
    711         * BugsSite/data/template/template/en/custom/admin/groups/delete.html.tmpl: Added. 
    712         * BugsSite/data/template/template/en/custom/admin/groups/deleted.html.tmpl: Added. 
    713         * BugsSite/data/template/template/en/custom/admin/groups/edit.html.tmpl: Added. 
    714         * BugsSite/data/template/template/en/custom/admin/groups/list.html.tmpl: Added. 
    715         * BugsSite/data/template/template/en/custom/admin/groups/remove.html.tmpl: Added. 
    716         * BugsSite/data/template/template/en/custom/admin/keywords: Added. 
    717         * BugsSite/data/template/template/en/custom/admin/keywords/confirm-delete.html.tmpl: Added. 
    718         * BugsSite/data/template/template/en/custom/admin/keywords/create.html.tmpl: Added. 
    719         * BugsSite/data/template/template/en/custom/admin/keywords/created.html.tmpl: Added. 
    720         * BugsSite/data/template/template/en/custom/admin/keywords/edit.html.tmpl: Added. 
    721         * BugsSite/data/template/template/en/custom/admin/keywords/list.html.tmpl: Added. 
    722         * BugsSite/data/template/template/en/custom/admin/keywords/rebuild-cache.html.tmpl: Added. 
    723         * BugsSite/data/template/template/en/custom/admin/milestones: Added. 
    724         * BugsSite/data/template/template/en/custom/admin/milestones/confirm-delete.html.tmpl: Added. 
    725         * BugsSite/data/template/template/en/custom/admin/milestones/create.html.tmpl: Added. 
    726         * BugsSite/data/template/template/en/custom/admin/milestones/created.html.tmpl: Added. 
    727         * BugsSite/data/template/template/en/custom/admin/milestones/deleted.html.tmpl: Added. 
    728         * BugsSite/data/template/template/en/custom/admin/milestones/edit.html.tmpl: Added. 
    729         * BugsSite/data/template/template/en/custom/admin/milestones/footer.html.tmpl: Added. 
    730         * BugsSite/data/template/template/en/custom/admin/milestones/list.html.tmpl: Added. 
    731         * BugsSite/data/template/template/en/custom/admin/milestones/select-product.html.tmpl: Added. 
    732         * BugsSite/data/template/template/en/custom/admin/milestones/updated.html.tmpl: Added. 
    733         * BugsSite/data/template/template/en/custom/admin/products: Added. 
    734         * BugsSite/data/template/template/en/custom/admin/products/confirm-delete.html.tmpl: Added. 
    735         * BugsSite/data/template/template/en/custom/admin/products/deleted.html.tmpl: Added. 
    736         * BugsSite/data/template/template/en/custom/admin/products/footer.html.tmpl: Added. 
    737         * BugsSite/data/template/template/en/custom/admin/products/groupcontrol: Added. 
    738         * BugsSite/data/template/template/en/custom/admin/products/groupcontrol/confirm-edit.html.tmpl: Added. 
    739         * BugsSite/data/template/template/en/custom/admin/products/groupcontrol/edit.html.tmpl: Added. 
    740         * BugsSite/data/template/template/en/custom/admin/products/list-classifications.html.tmpl: Added. 
    741         * BugsSite/data/template/template/en/custom/admin/products/list.html.tmpl: Added. 
    742         * BugsSite/data/template/template/en/custom/admin/settings: Added. 
    743         * BugsSite/data/template/template/en/custom/admin/settings/edit.html.tmpl: Added. 
    744         * BugsSite/data/template/template/en/custom/admin/settings/updated.html.tmpl: Added. 
    745         * BugsSite/data/template/template/en/custom/admin/table.html.tmpl: Added. 
    746         * BugsSite/data/template/template/en/custom/admin/users: Added. 
    747         * BugsSite/data/template/template/en/custom/admin/users/confirm-delete.html.tmpl: Added. 
    748         * BugsSite/data/template/template/en/custom/admin/users/create.html.tmpl: Added. 
    749         * BugsSite/data/template/template/en/custom/admin/users/edit.html.tmpl: Added. 
    750         * BugsSite/data/template/template/en/custom/admin/users/list.html.tmpl: Added. 
    751         * BugsSite/data/template/template/en/custom/admin/users/listselectvars.html.tmpl: Added. 
    752         * BugsSite/data/template/template/en/custom/admin/users/search.html.tmpl: Added. 
    753         * BugsSite/data/template/template/en/custom/admin/users/userdata.html.tmpl: Added. 
    754         * BugsSite/data/template/template/en/custom/admin/versions: Added. 
    755         * BugsSite/data/template/template/en/custom/admin/versions/confirm-delete.html.tmpl: Added. 
    756         * BugsSite/data/template/template/en/custom/admin/versions/create.html.tmpl: Added. 
    757         * BugsSite/data/template/template/en/custom/admin/versions/created.html.tmpl: Added. 
    758         * BugsSite/data/template/template/en/custom/admin/versions/deleted.html.tmpl: Added. 
    759         * BugsSite/data/template/template/en/custom/admin/versions/edit.html.tmpl: Added. 
    760         * BugsSite/data/template/template/en/custom/admin/versions/footer.html.tmpl: Added. 
    761         * BugsSite/data/template/template/en/custom/admin/versions/list.html.tmpl: Added. 
    762         * BugsSite/data/template/template/en/custom/admin/versions/select-product.html.tmpl: Added. 
    763         * BugsSite/data/template/template/en/custom/admin/versions/updated.html.tmpl: Added. 
    764         * BugsSite/data/template/template/en/custom/attachment: Added. 
    765         * BugsSite/data/template/template/en/custom/attachment/choose.html.tmpl: Added. 
    766         * BugsSite/data/template/template/en/custom/attachment/content-types.html.tmpl: Added. 
    767         * BugsSite/data/template/template/en/custom/attachment/create.html.tmpl: Added. 
    768         * BugsSite/data/template/template/en/custom/attachment/created.html.tmpl: Added. 
    769         * BugsSite/data/template/template/en/custom/attachment/diff-file.html.tmpl: Added. 
    770         * BugsSite/data/template/template/en/custom/attachment/diff-footer.html.tmpl: Added. 
    771         * BugsSite/data/template/template/en/custom/attachment/diff-header.html.tmpl: Added. 
    772         * BugsSite/data/template/template/en/custom/attachment/edit.html.tmpl: Added. 
    773         * BugsSite/data/template/template/en/custom/attachment/list.html.tmpl: Added. 
    774         * BugsSite/data/template/template/en/custom/attachment/show-multiple.html.tmpl: Added. 
    775         * BugsSite/data/template/template/en/custom/attachment/updated.html.tmpl: Added. 
    776         * BugsSite/data/template/template/en/custom/bug: Added. 
    777         * BugsSite/data/template/template/en/custom/bug/activity: Added. 
    778         * BugsSite/data/template/template/en/custom/bug/activity/show.html.tmpl: Added. 
    779         * BugsSite/data/template/template/en/custom/bug/activity/table.html.tmpl: Added. 
    780         * BugsSite/data/template/template/en/custom/bug/choose.html.tmpl: Added. 
    781         * BugsSite/data/template/template/en/custom/bug/comments.html.tmpl: Added. 
    782         * BugsSite/data/template/template/en/custom/bug/create: Added. 
    783         * BugsSite/data/template/template/en/custom/bug/create/comment-guided.txt.tmpl: Added. 
    784         * BugsSite/data/template/template/en/custom/bug/create/comment.txt.tmpl: Added. 
    785         * BugsSite/data/template/template/en/custom/bug/create/create-guided.html.tmpl: Added. 
    786         * BugsSite/data/template/template/en/custom/bug/create/create.html.tmpl: Added. 
    787         * BugsSite/data/template/template/en/custom/bug/create/created.html.tmpl: Added. 
    788         * BugsSite/data/template/template/en/custom/bug/create/make-template.html.tmpl: Added. 
    789         * BugsSite/data/template/template/en/custom/bug/create/user-message.html.tmpl: Added. 
    790         * BugsSite/data/template/template/en/custom/bug/dependency-graph.html.tmpl: Added. 
    791         * BugsSite/data/template/template/en/custom/bug/dependency-tree.html.tmpl: Added. 
    792         * BugsSite/data/template/template/en/custom/bug/edit.html.tmpl: Added. 
    793         * BugsSite/data/template/template/en/custom/bug/knob.html.tmpl: Added. 
    794         * BugsSite/data/template/template/en/custom/bug/navigate.html.tmpl: Added. 
    795         * BugsSite/data/template/template/en/custom/bug/process: Added. 
    796         * BugsSite/data/template/template/en/custom/bug/process/bugmail.html.tmpl: Added. 
    797         * BugsSite/data/template/template/en/custom/bug/process/confirm-duplicate.html.tmpl: Added. 
    798         * BugsSite/data/template/template/en/custom/bug/process/header.html.tmpl: Added. 
    799         * BugsSite/data/template/template/en/custom/bug/process/midair.html.tmpl: Added. 
    800         * BugsSite/data/template/template/en/custom/bug/process/next.html.tmpl: Added. 
    801         * BugsSite/data/template/template/en/custom/bug/process/results.html.tmpl: Added. 
    802         * BugsSite/data/template/template/en/custom/bug/process/verify-new-product.html.tmpl: Added. 
    803         * BugsSite/data/template/template/en/custom/bug/show-multiple.html.tmpl: Added. 
    804         * BugsSite/data/template/template/en/custom/bug/show.html.tmpl: Added. 
    805         * BugsSite/data/template/template/en/custom/bug/show.xml.tmpl: Added. 
    806         * BugsSite/data/template/template/en/custom/bug/summarize-time.html.tmpl: Added. 
    807         * BugsSite/data/template/template/en/custom/bug/time.html.tmpl: Added. 
    808         * BugsSite/data/template/template/en/custom/bug/votes: Added. 
    809         * BugsSite/data/template/template/en/custom/bug/votes/delete-all.html.tmpl: Added. 
    810         * BugsSite/data/template/template/en/custom/bug/votes/list-for-bug.html.tmpl: Added. 
    811         * BugsSite/data/template/template/en/custom/bug/votes/list-for-user.html.tmpl: Added. 
    812         * BugsSite/data/template/template/en/custom/config.js.tmpl: Added. 
    813         * BugsSite/data/template/template/en/custom/config.rdf.tmpl: Added. 
    814         * BugsSite/data/template/template/en/custom/flag: Added. 
    815         * BugsSite/data/template/template/en/custom/flag/list.html.tmpl: Added. 
    816         * BugsSite/data/template/template/en/custom/global: Added. 
    817         * BugsSite/data/template/template/en/custom/global/banner.html.tmpl: Added. 
    818         * BugsSite/data/template/template/en/custom/global/choose-classification.html.tmpl: Added. 
    819         * BugsSite/data/template/template/en/custom/global/choose-product.html.tmpl: Added. 
    820         * BugsSite/data/template/template/en/custom/global/code-error.html.tmpl: Added. 
    821         * BugsSite/data/template/template/en/custom/global/confirm-user-match.html.tmpl: Added. 
    822         * BugsSite/data/template/template/en/custom/global/field-descs.none.tmpl: Added. 
    823         * BugsSite/data/template/template/en/custom/global/footer.html.tmpl: Added. 
    824         * BugsSite/data/template/template/en/custom/global/header.html.tmpl: Added. 
    825         * BugsSite/data/template/template/en/custom/global/help-header.html.tmpl: Added. 
    826         * BugsSite/data/template/template/en/custom/global/help.html.tmpl: Added. 
    827         * BugsSite/data/template/template/en/custom/global/hidden-fields.html.tmpl: Added. 
    828         * BugsSite/data/template/template/en/custom/global/initialize.none.tmpl: Added. 
    829         * BugsSite/data/template/template/en/custom/global/message.html.tmpl: Added. 
    830         * BugsSite/data/template/template/en/custom/global/messages.html.tmpl: Added. 
    831         * BugsSite/data/template/template/en/custom/global/select-menu.html.tmpl: Added. 
    832         * BugsSite/data/template/template/en/custom/global/setting-descs.none.tmpl: Added. 
    833         * BugsSite/data/template/template/en/custom/global/site-navigation.html.tmpl: Added. 
    834         * BugsSite/data/template/template/en/custom/global/useful-links.html.tmpl: Added. </