<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE bugzilla SYSTEM "https://bugs.webkit.org/page.cgi?id=bugzilla.dtd">

<bugzilla version="5.0.4.1"
          urlbase="https://bugs.webkit.org/"
          
          maintainer="admin@webkit.org"
>

    <bug>
          <bug_id>72483</bug_id>
          
          <creation_ts>2011-11-16 02:21:30 -0800</creation_ts>
          <short_desc>Add .dir-locals.el file for Emacs</short_desc>
          <delta_ts>2011-11-24 05:01:06 -0800</delta_ts>
          <reporter_accessible>1</reporter_accessible>
          <cclist_accessible>1</cclist_accessible>
          <classification_id>1</classification_id>
          <classification>Unclassified</classification>
          <product>WebKit</product>
          <component>Tools / Tests</component>
          <version>528+ (Nightly build)</version>
          <rep_platform>Unspecified</rep_platform>
          <op_sys>Unspecified</op_sys>
          <bug_status>RESOLVED</bug_status>
          <resolution>FIXED</resolution>
          
          
          <bug_file_loc></bug_file_loc>
          <status_whiteboard></status_whiteboard>
          <keywords></keywords>
          <priority>P2</priority>
          <bug_severity>Normal</bug_severity>
          <target_milestone>---</target_milestone>
          
          
          <everconfirmed>0</everconfirmed>
          <reporter name="Andy Wingo">wingo</reporter>
          <assigned_to name="Nobody">webkit-unassigned</assigned_to>
          <cc>jsbell</cc>
    
    <cc>mrobinson</cc>
    
    <cc>tommyw</cc>
    
    <cc>webkit.review.bot</cc>
          

      

      

      

          <comment_sort_order>oldest_to_newest</comment_sort_order>  
          <long_desc isprivate="0" >
    <commentid>503725</commentid>
    <comment_count>0</comment_count>
    <who name="Andy Wingo">wingo</who>
    <bug_when>2011-11-16 02:21:30 -0800</bug_when>
    <thetext>Emacs 23 and later support directory-local variables:

  http://www.gnu.org/s/libtool/manual/emacs/Directory-Variables.html

I occasionally see patches fail style checks because of indentation.  Adding a .dir-locals file to the repo would help avoid these, and as it&apos;s invisible to a normal `ls&apos;, it shouldn&apos;t be a burden on anyone.

Patch to be attached.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>503728</commentid>
    <comment_count>1</comment_count>
      <attachid>115353</attachid>
    <who name="Andy Wingo">wingo</who>
    <bug_when>2011-11-16 02:33:47 -0800</bug_when>
    <thetext>Created attachment 115353
Patch</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>503845</commentid>
    <comment_count>2</comment_count>
      <attachid>115374</attachid>
    <who name="Andy Wingo">wingo</who>
    <bug_when>2011-11-16 07:06:26 -0800</bug_when>
    <thetext>Created attachment 115374
Patch</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>503848</commentid>
    <comment_count>3</comment_count>
    <who name="Andy Wingo">wingo</who>
    <bug_when>2011-11-16 07:07:13 -0800</bug_when>
    <thetext>Updated with explicit blocks for c-mode and c++-mode, so that we really do override a user&apos;s default settings.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>503921</commentid>
    <comment_count>4</comment_count>
      <attachid>115353</attachid>
    <who name="Martin Robinson">mrobinson</who>
    <bug_when>2011-11-16 08:40:51 -0800</bug_when>
    <thetext>Comment on attachment 115353
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=115353&amp;action=review

&gt; .dir-locals.el:6
&gt; +  (fill-column . 80)

The most common range I&apos;ve heard is 120-180, but definitely not 80: https://lists.webkit.org/pipermail/webkit-dev/2009-September/009761.html

&gt; .dir-locals.el:7
&gt; +  (tab-width . 8)

Why not 4 here?</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>503935</commentid>
    <comment_count>5</comment_count>
    <who name="Andy Wingo">wingo</who>
    <bug_when>2011-11-16 08:51:37 -0800</bug_when>
    <thetext>I must admit that I do not understand WebKit&apos;s predilection for long lines.  I assumed that people producing long lines were not using Emacs.  But I am fine putting in some other value.

Regarding tab widths, the docs say:

  Documentation:
  *Distance between tab stops (for display of tab characters), in columns.

That is the amount that TAB characters are interpreted as.  TAB characters are not usually present in WK, but where they are, as in Makefiles, they should probably be represented as 8 characters wide.  It is the default though, so it can probably be elided.

Do you have concrete recommendations?</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>503940</commentid>
    <comment_count>6</comment_count>
    <who name="Martin Robinson">mrobinson</who>
    <bug_when>2011-11-16 08:55:44 -0800</bug_when>
    <thetext>(In reply to comment #5)
&gt; I must admit that I do not understand WebKit&apos;s predilection for long lines.  I assumed that people producing long lines were not using Emacs.  But I am fine putting in some other value.

I would say either 180 or having no maximum.  At least in vim it can sometimes be annoying when the editor folds a pre-existing line when you modify it. Perosonally, I&apos;m not a fan of long lines either, but the source contains a lot of code with very long lines.

&gt; That is the amount that TAB characters are interpreted as.  TAB characters are not usually present in WK, but where they are, as in Makefiles, they should probably be represented as 8 characters wide.  It is the default though, so it can probably be elided.

You can probably just omit it. The only place we have tab characters is in our automake files.

I think it&apos;d be best if an emacs user gives the final r+. :)</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>503965</commentid>
    <comment_count>7</comment_count>
      <attachid>115374</attachid>
    <who name="Xan Lopez">xan.lopez</who>
    <bug_when>2011-11-16 09:31:42 -0800</bug_when>
    <thetext>Comment on attachment 115374
Patch

I think it&apos;s best to just omit the maximum for fill-column, WebKit has lots of really crazy-long lines. Other than that, looks great!

Emacs is the default GNU editor.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>503979</commentid>
    <comment_count>8</comment_count>
      <attachid>115396</attachid>
    <who name="Andy Wingo">wingo</who>
    <bug_when>2011-11-16 09:42:37 -0800</bug_when>
    <thetext>Created attachment 115396
Patch</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>503981</commentid>
    <comment_count>9</comment_count>
      <attachid>115396</attachid>
    <who name="Andy Wingo">wingo</who>
    <bug_when>2011-11-16 09:43:18 -0800</bug_when>
    <thetext>Comment on attachment 115396
Patch

Removed the fill-column and tab-width bits.  Xan, cq?</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>506840</commentid>
    <comment_count>10</comment_count>
      <attachid>115396</attachid>
    <who name="Xan Lopez">xan.lopez</who>
    <bug_when>2011-11-21 03:37:20 -0800</bug_when>
    <thetext>Comment on attachment 115396
Patch

Bam.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>506884</commentid>
    <comment_count>11</comment_count>
      <attachid>115396</attachid>
    <who name="WebKit Review Bot">webkit.review.bot</who>
    <bug_when>2011-11-21 04:48:30 -0800</bug_when>
    <thetext>Comment on attachment 115396
Patch

Clearing flags on attachment: 115396

Committed r100902: &lt;http://trac.webkit.org/changeset/100902&gt;</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>506885</commentid>
    <comment_count>12</comment_count>
    <who name="WebKit Review Bot">webkit.review.bot</who>
    <bug_when>2011-11-21 04:48:34 -0800</bug_when>
    <thetext>All reviewed patches have been landed.  Closing bug.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>508087</commentid>
    <comment_count>13</comment_count>
    <who name="Tommy Widenflycht">tommyw</who>
    <bug_when>2011-11-23 05:44:36 -0800</bug_when>
    <thetext>I&apos;m not particularly happy with this since it interferes my my existing .dir-local.el that have something similar but also modifications to the compile command :/

But if it does something useful I guess I can live with it.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>508146</commentid>
    <comment_count>14</comment_count>
    <who name="Martin Robinson">mrobinson</who>
    <bug_when>2011-11-23 08:06:02 -0800</bug_when>
    <thetext>Perhaps there can be a .dir.locals.locals.el or something similar to allow extending the WebKit defaults.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>508252</commentid>
    <comment_count>15</comment_count>
    <who name="Joshua Bell">jsbell</who>
    <bug_when>2011-11-23 11:23:22 -0800</bug_when>
    <thetext>(In reply to comment #14)
&gt; Perhaps there can be a .dir.locals.locals.el or something similar to allow extending the WebKit defaults.

http://code.google.com/p/chromium/wiki/Emacs 

... recommends having .dir-locals.el specify (c-file-style . &quot;WebKit&quot;) for c-mode/c++-mode so that additional customization can be done in your .emacs - this would at least be a standard way to allow users to make additional style changes.

While I&apos;m skeptical that editor-specific style options should be baked into the tree like this, I&apos;d personally be satisfied (for now) if the c-file-style entries were added.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>508721</commentid>
    <comment_count>16</comment_count>
    <who name="Andy Wingo">wingo</who>
    <bug_when>2011-11-24 04:59:49 -0800</bug_when>
    <thetext>(In reply to comment #15)
&gt; http://code.google.com/p/chromium/wiki/Emacs 
&gt; 
&gt; ... recommends having .dir-locals.el specify (c-file-style . &quot;WebKit&quot;)

That&apos;s an interesting page, thanks for the link.

There are definitely things you can do to improve webkit editing if you are willing to edit your .emacs, but my goal with this was to make things better for people that don&apos;t have .emacs customizations.

If you are editing your .emacs, something like:

(defun webkit-c++-mode ()
  &quot;C++ mode with adjusted defaults for use with WebKit.&quot;
  (interactive)
  (c++-mode)
  (c-set-style &quot;WebKit&quot;)
  (setq indent-tabs-mode t)
  (setq c-basic-offset 4))

(setq auto-mode-alist (cons &apos;(&quot;/WebKit/.*\\.[ch]*$&quot; . webkit-c++-mode)
      auto-mode-alist))</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>508722</commentid>
    <comment_count>17</comment_count>
    <who name="Andy Wingo">wingo</who>
    <bug_when>2011-11-24 05:01:06 -0800</bug_when>
    <thetext>Properly indented ;)

(setq auto-mode-alist (cons &apos;(&quot;/WebKit/.*\\.[ch]*$&quot; . webkit-c++-mode)
                      auto-mode-alist))</thetext>
  </long_desc>
      
          <attachment
              isobsolete="1"
              ispatch="1"
              isprivate="0"
          >
            <attachid>115353</attachid>
            <date>2011-11-16 02:33:47 -0800</date>
            <delta_ts>2011-11-16 08:40:51 -0800</delta_ts>
            <desc>Patch</desc>
            <filename>bug-72483-20111116113345.patch</filename>
            <type>text/plain</type>
            <size>1184</size>
            <attacher name="Andy Wingo">wingo</attacher>
            
              <data encoding="base64">U3VidmVyc2lvbiBSZXZpc2lvbjogMTAwNDI0CmRpZmYgLS1naXQgYS8uZGlyLWxvY2Fscy5lbCBi
Ly5kaXItbG9jYWxzLmVsCm5ldyBmaWxlIG1vZGUgMTAwNjQ0CmluZGV4IDAwMDAwMDAwMDAwMDAw
MDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAuLjYxMDQ5NjMxY2M0NTlmMWIyZTk0ZTdiNjZjM2E4
NmZiYWMwOGI0MDAKLS0tIC9kZXYvbnVsbAorKysgYi8uZGlyLWxvY2Fscy5lbApAQCAtMCwwICsx
LDExIEBACis7OyBQZXItZGlyZWN0b3J5IGxvY2FsIHZhcmlhYmxlcyBmb3IgR05VIEVtYWNzIDIz
IGFuZCBsYXRlci4KKworOzsgU3ludGF4OiAoKE1PREUgKFZBUiAuIFZBTCkgLi4uKSAuLi4pCis7
OyBNT0RFIGlzIGEgc3ltYm9sIGxpa2UgYGMtbW9kZScsIG9yIGBuaWwnIGZvciBhbGwgbW9kZXMu
CisoKG5pbAorICAoZmlsbC1jb2x1bW4gLiA4MCkKKyAgKHRhYi13aWR0aCAuIDgpCisgIChpbmRl
bnQtdGFicy1tb2RlIC4gbmlsKQorICAoYy1iYXNpYy1vZmZzZXQgLiA0KSkKKyAoY2hhbmdlLWxv
Zy1tb2RlCisgIChpbmRlbnQtdGFicy1tb2RlIC4gbmlsKSkpCmRpZmYgLS1naXQgYS9DaGFuZ2VM
b2cgYi9DaGFuZ2VMb2cKaW5kZXggYmZhNWRmYjZhZGQ3ZjA2N2RhMzgyOTBlZTVmYTlmYjZhZjYy
MDdmNi4uZmRjYzRlMzRhNzg4NjIyYTc2ODAzMzQ4N2RkNjc1MjM5MTg5NzY3ZSAxMDA2NDQKLS0t
IGEvQ2hhbmdlTG9nCisrKyBiL0NoYW5nZUxvZwpAQCAtMSwzICsxLDEyIEBACisyMDExLTExLTE2
ICBBbmR5IFdpbmdvICA8d2luZ29AaWdhbGlhLmNvbT4KKworICAgICAgICBBZGQgLmRpci1sb2Nh
bHMuZWwgZmlsZSBmb3IgYmV0dGVyIEVtYWNzIGRlZmF1bHRzCisgICAgICAgIGh0dHBzOi8vYnVn
cy53ZWJraXQub3JnL3Nob3dfYnVnLmNnaT9pZD03MjQ4MworCisgICAgICAgIFJldmlld2VkIGJ5
IE5PQk9EWSAoT09QUyEpLgorCisgICAgICAgICogLmRpci1sb2NhbHMuZWw6IFNldCBhcHByb3By
aWF0ZSBkaXJlY3RvcnktbG9jYWwgdmFyaWFibGVzIGZvciBFbWFjcy4KKwogMjAxMS0xMS0xNSAg
U2ltb24gSGF1c21hbm4gIDxzaW1vbi5oYXVzbWFubkBub2tpYS5jb20+CiAKICAgICAgICAgW1F0
XSBDZW50cmFsaXplIGhpZGVfc3ltYm9scyBhbmQgZW5zdXJlIGFsbCBsaWJzIGFyZSBidWlsdCB3
aXRoIHN5bWJvbCB2aXNpYmlsaXR5ICYgYnN5bWJvbGljX2Z1bmN0aW9ucwo=
</data>

          </attachment>
          <attachment
              isobsolete="1"
              ispatch="1"
              isprivate="0"
          >
            <attachid>115374</attachid>
            <date>2011-11-16 07:06:26 -0800</date>
            <delta_ts>2011-11-16 09:42:28 -0800</delta_ts>
            <desc>Patch</desc>
            <filename>bug-72483-20111116160624.patch</filename>
            <type>text/plain</type>
            <size>1394</size>
            <attacher name="Andy Wingo">wingo</attacher>
            
              <data encoding="base64">U3VidmVyc2lvbiBSZXZpc2lvbjogMTAwNDI0CmRpZmYgLS1naXQgYS8uZGlyLWxvY2Fscy5lbCBi
Ly5kaXItbG9jYWxzLmVsCm5ldyBmaWxlIG1vZGUgMTAwNjQ0CmluZGV4IDAwMDAwMDAwMDAwMDAw
MDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAuLmZkMjQxODA3ZjczOGE1N2VhYmIxODhlMzNkZTY3
ZDBmNDYzMGJmMTcKLS0tIC9kZXYvbnVsbAorKysgYi8uZGlyLWxvY2Fscy5lbApAQCAtMCwwICsx
LDIxIEBACis7OyBQZXItZGlyZWN0b3J5IGxvY2FsIHZhcmlhYmxlcyBmb3IgR05VIEVtYWNzIDIz
IGFuZCBsYXRlci4KKworOzsgU3ludGF4OiAoKE1PREUgKFZBUiAuIFZBTCkgLi4uKSAuLi4pCis7
OyBNT0RFIGlzIGEgc3ltYm9sIGxpa2UgYGMtbW9kZScsIG9yIGBuaWwnIGZvciBhbGwgbW9kZXMu
CisoKG5pbAorICAoZmlsbC1jb2x1bW4gLiA4MCkKKyAgKHRhYi13aWR0aCAuIDgpCisgIChpbmRl
bnQtdGFicy1tb2RlIC4gbmlsKQorICAoYy1iYXNpYy1vZmZzZXQgLiA0KSkKKyAoYy1tb2RlCisg
IChmaWxsLWNvbHVtbiAuIDgwKQorICAodGFiLXdpZHRoIC4gOCkKKyAgKGluZGVudC10YWJzLW1v
ZGUgLiBuaWwpCisgIChjLWJhc2ljLW9mZnNldCAuIDQpKQorIChjKystbW9kZQorICAoZmlsbC1j
b2x1bW4gLiA4MCkKKyAgKHRhYi13aWR0aCAuIDgpCisgIChpbmRlbnQtdGFicy1tb2RlIC4gbmls
KQorICAoYy1iYXNpYy1vZmZzZXQgLiA0KSkKKyAoY2hhbmdlLWxvZy1tb2RlCisgIChpbmRlbnQt
dGFicy1tb2RlIC4gbmlsKSkpCmRpZmYgLS1naXQgYS9DaGFuZ2VMb2cgYi9DaGFuZ2VMb2cKaW5k
ZXggYmZhNWRmYjZhZGQ3ZjA2N2RhMzgyOTBlZTVmYTlmYjZhZjYyMDdmNi4uZmRjYzRlMzRhNzg4
NjIyYTc2ODAzMzQ4N2RkNjc1MjM5MTg5NzY3ZSAxMDA2NDQKLS0tIGEvQ2hhbmdlTG9nCisrKyBi
L0NoYW5nZUxvZwpAQCAtMSwzICsxLDEyIEBACisyMDExLTExLTE2ICBBbmR5IFdpbmdvICA8d2lu
Z29AaWdhbGlhLmNvbT4KKworICAgICAgICBBZGQgLmRpci1sb2NhbHMuZWwgZmlsZSBmb3IgYmV0
dGVyIEVtYWNzIGRlZmF1bHRzCisgICAgICAgIGh0dHBzOi8vYnVncy53ZWJraXQub3JnL3Nob3df
YnVnLmNnaT9pZD03MjQ4MworCisgICAgICAgIFJldmlld2VkIGJ5IE5PQk9EWSAoT09QUyEpLgor
CisgICAgICAgICogLmRpci1sb2NhbHMuZWw6IFNldCBhcHByb3ByaWF0ZSBkaXJlY3RvcnktbG9j
YWwgdmFyaWFibGVzIGZvciBFbWFjcy4KKwogMjAxMS0xMS0xNSAgU2ltb24gSGF1c21hbm4gIDxz
aW1vbi5oYXVzbWFubkBub2tpYS5jb20+CiAKICAgICAgICAgW1F0XSBDZW50cmFsaXplIGhpZGVf
c3ltYm9scyBhbmQgZW5zdXJlIGFsbCBsaWJzIGFyZSBidWlsdCB3aXRoIHN5bWJvbCB2aXNpYmls
aXR5ICYgYnN5bWJvbGljX2Z1bmN0aW9ucwo=
</data>

          </attachment>
          <attachment
              isobsolete="0"
              ispatch="1"
              isprivate="0"
          >
            <attachid>115396</attachid>
            <date>2011-11-16 09:42:37 -0800</date>
            <delta_ts>2011-11-21 04:48:30 -0800</delta_ts>
            <desc>Patch</desc>
            <filename>bug-72483-20111116184235.patch</filename>
            <type>text/plain</type>
            <size>1299</size>
            <attacher name="Andy Wingo">wingo</attacher>
            
              <data encoding="base64">U3VidmVyc2lvbiBSZXZpc2lvbjogMTAwNDI0CmRpZmYgLS1naXQgYS9Tb3VyY2UvSmF2YVNjcmlw
dENvcmUvQ2hhbmdlTG9nIGIvU291cmNlL0phdmFTY3JpcHRDb3JlL0NoYW5nZUxvZwppbmRleCAx
MWZjMThmY2Q4YjI3YWNiOGU0NzFjM2UxOTRmMzhlMzg0OTFmNGNjLi40NzdhYjk2YWEzYzA2YzM2
OTAwYWYyNTgwZGQ0N2QwNjExNGEwNjA2IDEwMDY0NAotLS0gYS9Tb3VyY2UvSmF2YVNjcmlwdENv
cmUvQ2hhbmdlTG9nCisrKyBiL1NvdXJjZS9KYXZhU2NyaXB0Q29yZS9DaGFuZ2VMb2cKQEAgLTEs
MyArMSwxMiBAQAorMjAxMS0xMS0xNiAgQW5keSBXaW5nbyAgPHdpbmdvQGlnYWxpYS5jb20+CisK
KyAgICAgICAgQWRkIC5kaXItbG9jYWxzLmVsIGZpbGUgZm9yIGJldHRlciBFbWFjcyBkZWZhdWx0
cworICAgICAgICBodHRwczovL2J1Z3Mud2Via2l0Lm9yZy9zaG93X2J1Zy5jZ2k/aWQ9NzI0ODMK
KworICAgICAgICBSZXZpZXdlZCBieSBOT0JPRFkgKE9PUFMhKS4KKworICAgICAgICAqIC5kaXIt
bG9jYWxzLmVsOiBTZXQgYXBwcm9wcmlhdGUgZGlyZWN0b3J5LWxvY2FsIHZhcmlhYmxlcyBmb3Ig
RW1hY3MuCisKIDIwMTEtMTEtMTYgIERhcmluIEFkbGVyICA8ZGFyaW5AYXBwbGUuY29tPgogCiAg
ICAgICAgIEFkZCBhICJwYXNzIHR5cGUiIGFuZCAicGVlayB0eXBlIiBjb25jZXB0IHRvIEhhc2hU
cmFpdHMKZGlmZiAtLWdpdCBhLy5kaXItbG9jYWxzLmVsIGIvLmRpci1sb2NhbHMuZWwKbmV3IGZp
bGUgbW9kZSAxMDA2NDQKaW5kZXggMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAw
MDAwMC4uMjI5YThhMmJiZjMwMmQ4MTgyZmE5OTc1NTIyZWMxMDdiOGI0MjQwMQotLS0gL2Rldi9u
dWxsCisrKyBiLy5kaXItbG9jYWxzLmVsCkBAIC0wLDAgKzEsMTUgQEAKKzs7IFBlci1kaXJlY3Rv
cnkgbG9jYWwgdmFyaWFibGVzIGZvciBHTlUgRW1hY3MgMjMgYW5kIGxhdGVyLgorCis7OyBTeW50
YXg6ICgoTU9ERSAoVkFSIC4gVkFMKSAuLi4pIC4uLikKKzs7IE1PREUgaXMgYSBzeW1ib2wgbGlr
ZSBgYy1tb2RlJywgb3IgYG5pbCcgZm9yIGFsbCBtb2Rlcy4KKygobmlsCisgIChpbmRlbnQtdGFi
cy1tb2RlIC4gbmlsKQorICAoYy1iYXNpYy1vZmZzZXQgLiA0KSkKKyAoYy1tb2RlCisgIChpbmRl
bnQtdGFicy1tb2RlIC4gbmlsKQorICAoYy1iYXNpYy1vZmZzZXQgLiA0KSkKKyAoYysrLW1vZGUK
KyAgKGluZGVudC10YWJzLW1vZGUgLiBuaWwpCisgIChjLWJhc2ljLW9mZnNldCAuIDQpKQorIChj
aGFuZ2UtbG9nLW1vZGUKKyAgKGluZGVudC10YWJzLW1vZGUgLiBuaWwpKSkK
</data>

          </attachment>
      

    </bug>

</bugzilla>