User mat - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T20:03:18Z http://stackoverflow.com/feeds/user/42083 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/386459/how-can-i-ignore-accents-when-comparing-strings-in-perl 6 How can I ignore accents when comparing strings in Perl? mat 2008-12-22T15:06:04Z 2009-01-28T04:24:57Z <p>I have this quiz application where I match what people type with the right answer. For now, what I do is basically that :</p> <pre><code>if ($input =~ /$answer/i) { print "you won"; } </code></pre> <p>It's nice, as if the answer is "fish" the user can type "a fish" and be counted a good answer.</p> <p>The problem I'm facing is that, well, my users as I are french, and I'd like to be able to accept, say, a user typing "taton", and the answer being "tâton".</p> <p>So, what I could do, is :</p> <pre><code>use POSIX qw(locale_h); use locale; setlocale(LC_TYPE, "fr_FR.ISO8859-15"); setlocale(LC_COLLATE, "fr_FR.ISO8859-15"); </code></pre> <p>And in my check routine, do a :</p> <pre><code>$input = lc($input); $input =~ tr/àáâãäåçèéêëìíîïñòóôõöùúûüýÿ/aaaaaaceeeeiiiinooooouuuuyy/; </code></pre> <p>and something likewise with the answer.</p> <p>I don't like it, because I have to hard code things, and the day I decide I'm leaving the ISO-8859-15 world for the UTF-8 world, I'm doomed.</p> <p>So, I'm looking for a way to compare strings, that will make <code>"tâton" eq "taton"</code>, <code>"maçon" eq "macon"</code> or <code>"macon" =~ /maçon/</code> be true.</p> http://stackoverflow.com/questions/461406/what-is-the-most-efficient-method-of-setting-default-parameter-values-in-javascri/461427#461427 3 Answer by mat for What is the most efficient method of setting default parameter values in javascript? mat 2009-01-20T14:10:28Z 2009-01-20T14:10:28Z <p>I usually use the second one because it adds less signal.</p> http://stackoverflow.com/questions/461367/is-there-an-http-proxy-tool-that-can-substitute-browsed-content/461413#461413 1 Answer by mat for Is there an HTTP proxy tool that can substitute browsed content? mat 2009-01-20T14:06:33Z 2009-01-20T14:06:33Z <p>I've been using <a href="http://search.cpan.org/dist/HTTP-Proxy" rel="nofollow">HTTP::Proxy</a> for a long time, and it has always helped me fiddle with things on the fly.</p> http://stackoverflow.com/questions/458249/tools-to-reduce-generated-html-size/458266#458266 3 Answer by mat for Tools to reduce generated HTML size mat 2009-01-19T16:45:04Z 2009-01-19T16:45:04Z <p>You could try <a href="http://tidy.sf.net" rel="nofollow">tidy</a> it will clean up many things.</p> http://stackoverflow.com/questions/381496/mysql-inner-join-question/381526#381526 1 Answer by mat for MySQL inner join question mat 2008-12-19T16:57:32Z 2008-12-28T20:39:21Z <p>I think :</p> <pre><code>SELECT ut.urlclicked, COUNT(ur.id) FROM urltracker ut JOIN urlreferrer ur ON (ut.id = ur.url_id) GROUP BY ut.urlclicked </code></pre> <p>should do it.</p> http://stackoverflow.com/questions/336715/what-are-good-books-for-learning-perl/336725#336725 8 Answer by mat for What are good books for learning Perl? mat 2008-12-03T10:14:15Z 2008-12-27T13:24:55Z <p>I'd say that my first choice, if you've never touched Perl before, will be O'Reilly's <a href="http://oreilly.com/catalog/9780596520106/" rel="nofollow">Learning Perl</a> by Randal Schwartz, Tom Phoenix, and brian d foy. My second one, which is a bit higher, would be <a href="http://oreilly.com/catalog/9780596000271/" rel="nofollow">Programming Perl</a> by Larry Wall himself. One more, that is not, a book you'll really read like a novel, will be the <a href="http://oreilly.com/catalog/9780596003135/" rel="nofollow">Perl Cookbook</a> which will give you a ton of little ways to do things. That's for the basics, you'll find a lot of other topics on the <a href="http://perl.oreilly.com/" rel="nofollow">Perl</a>'s section of O'Reilly's collection. </p> <p>Now, it's not a list of books you <em>should</em> buy, everyone has different needs and learn differently, but if you have a book shop nearby and they have those books, you should definitively have a look at them and see if they fit your needs. (Which I'm certain they will.)</p> http://stackoverflow.com/questions/386554/example-c-function-using-volatile-variables/386561#386561 3 Answer by mat for Example C Function using volatile variables mat 2008-12-22T15:45:01Z 2008-12-22T15:45:01Z <p>Pick your favorite open source operating system, and look for old device drivers, you'll find some who have no other way of working.</p> http://stackoverflow.com/questions/385023/why-do-you-use-typedef-when-declaring-an-enum-in-c/385045#385045 4 Answer by mat for Why do you use typedef when declaring an enum in C++ ? mat 2008-12-21T22:07:02Z 2008-12-21T22:12:39Z <p>It's a C heritage, in C, if you do :</p> <pre><code>enum TokenType { blah1 = 0x00000000, blah2 = 0X01000000, blah3 = 0X02000000 }; </code></pre> <p>you'll have to use it doing something like :</p> <pre><code>enum TokenType foo; </code></pre> <p>But if you do this :</p> <pre><code>typedef enum e_TokenType { blah1 = 0x00000000, blah2 = 0X01000000, blah3 = 0X02000000 } TokenType; </code></pre> <p>You'll be able to declare :</p> <pre><code>TokenType foo; </code></pre> <p>But in C++, you can only do the first one and use it as if it were in a C typedef.</p> http://stackoverflow.com/questions/383888/what-is-the-easiest-alternative-to-a-generic-array-in-java/383892#383892 0 Answer by mat for What is the easiest alternative to a generic array in Java? mat 2008-12-20T23:47:17Z 2008-12-20T23:47:17Z <p>I may be wrong, but your declaration seems strange, shouldn't you have :</p> <pre><code>private T[] elements; </code></pre> http://stackoverflow.com/questions/383801/why-cant-i-connect-to-postgres-from-perl/383808#383808 -2 Answer by mat for Why can't I connect to postgres from Perl? mat 2008-12-20T22:11:01Z 2008-12-20T22:11:01Z <p>Are you certain <code>localhost</code> contains only <code>127.0.0.1</code>, and not, maybe, <code>::1</code> ?</p> <p>Try to put <code>127.0.0.1</code> instead of <code>localhost</code>.</p> http://stackoverflow.com/questions/380423/rails-activeresource-require-js-to-do-delete-by-linkto/380452#380452 1 Answer by mat for Rails active_resource require JS to do delete by link_to? mat 2008-12-19T09:13:03Z 2008-12-19T09:13:03Z <p>What it generates is a form with method="delete", your best bet is to make the form yourself, the only thing is that the submit button won't be a link, but a button.</p> <p>You should not, by any mean, try to do it with a basic <code>&lt;a href=""&gt;</code>, because a disruptive action (create, update, delete) should not be made with a <code>GET</code> request.</p> http://stackoverflow.com/questions/379202/get-cvs-to-chgrp-on-checkin/379223#379223 2 Answer by mat for Get CVS to chgrp on checkin mat 2008-12-18T20:51:18Z 2008-12-18T20:51:18Z <p>Well, CVS has really no file metadata out of binary and executable.</p> <p>There are a few things you can do</p> <ul> <li>do a chmod g+s bar on the server directory where you want it to stay bar</li> <li>write a small shell wrapper which will replace the real cvs, do a chgrp and call the real cvs afterwards.</li> </ul> http://stackoverflow.com/questions/374497/using-curl-and-batch-line-iterations/374501#374501 2 Answer by mat for Using cURL and batch line iterations mat 2008-12-17T13:17:41Z 2008-12-17T15:41:20Z <p>You should try with the <code>-g</code> aka <code>--globoff</code> cURL option.</p> <p>The default behavior is to :</p> <blockquote> <p>You can specify multiple URLs or parts of URLs by writing part sets within braces as in:</p> <pre><code>http://site.{one,two,three}.com </code></pre> <p>or you can get sequences of alphanumeric series by using [] as in:</p> <pre><code>ftp://ftp.numericals.com/file[1-100].txt ftp://ftp.numericals.com/file[001-100].txt (with leading zeros) ftp://ftp.letters.com/file[a-z].txt </code></pre> <p>No nesting of the sequences is supported at the moment, but you can use several ones next to each other:</p> <pre><code>http://any.org/archive[1996-1999]/vol[1-4]/part{a,b,c}.html </code></pre> <p>You can specify any amount of URLs on the command line. They will be fetched in a sequential manner in the specified order.</p> <p>Since curl 7.15.1 you can also specify step counter for the ranges, so that you can get every Nth number or letter:</p> <pre><code>http://www.numericals.com/file[1-100:10].txt http://www.letters.com/file[a-z:2].txt </code></pre> </blockquote> <p>You can even do :</p> <pre><code> curl -T "img[1-1000].png" ftp://ftp.picturemania.com/upload/ </code></pre> <p>But in your case, you really don't want that, so you should use the <code>-g</code> flag to tell it not to do globbing at all.</p> http://stackoverflow.com/questions/373926/lightweight-open-source-pdf-library-in-c/373955#373955 1 Answer by mat for Lightweight, open source PDF library in C#? mat 2008-12-17T08:13:34Z 2008-12-17T08:13:34Z <p>If you really need something small, why not craft yourself your own PDF library ? The <a href="http://www.adobe.com/devnet/pdf/pdf_reference.html" rel="nofollow">PDF Reference</a> are availables online freely, and it's not that hard to write pdf's, it's really just a funny looking text file.</p> http://stackoverflow.com/questions/372370/how-can-i-split-a-string-into-chunks-of-two-characters-each-in-perl/372762#372762 12 Answer by mat for How can I split a string into chunks of two characters each in Perl? mat 2008-12-16T21:18:35Z 2008-12-16T21:18:35Z <p>If you really mean to use <code>split</code>, you can do a :</p> <pre><code>grep {length &gt; 0} split(/(..)/, $string); </code></pre> <p>But I think the fastest way would be with <code>unpack</code> :</p> <pre><code>unpack("(A2)*", $string); </code></pre> <p>Both these methods have the "advantage" that if the string has an odd number of characters, it will output the last one one it's own.</p> http://stackoverflow.com/questions/371322/i-have-to-read-invoice-data-from-a-convoluted-ascii-file-how-would-you-guard-aga/371344#371344 0 Answer by mat for I have to read invoice data from a convoluted ASCII file, how would you guard against future changes? mat 2008-12-16T13:46:37Z 2008-12-16T13:46:37Z <p>Well, your file format looks much like the french protocol called <a href="http://www.etebac.com/" rel="nofollow">Etebac</a> used between banks and their customers.</p> <p>It's a fixed width text format.</p> <p>The best you can do is use some kind of <code>unpack</code> function :</p> <pre><code>$ perl -MData::Dumper -e 'print Dumper(unpack("A8 x A5 A8 A8 A6 A30 A30", "55651108 3090617.10.0806:46:32101639Example Company Construction Company Example Road. 9 9524 Example City"))' $VAR1 = '55651108'; $VAR2 = '30906'; $VAR3 = '17.10.08'; $VAR4 = '06:46:32'; $VAR5 = '101639'; $VAR6 = 'Example Company'; $VAR7 = 'Construction Company'; </code></pre> <p>What you should do is for every input, check that it is what it's supposed to be, that is, XX.XX.XX, or YY:YY:YY or that it does not start with a space, and abort if it does.</p> http://stackoverflow.com/questions/368744/shell-scripting-die-on-any-error/368754#368754 13 Answer by mat for Shell scripting: die on any error mat 2008-12-15T15:43:34Z 2008-12-16T03:59:14Z <p>With standard <code>sh</code> and <code>bash</code>, you can</p> <pre><code>set -e </code></pre> <p>It will </p> <pre><code>$ help set ... -e Exit immediately if a command exits with a non-zero status. </code></pre> <p>It also works (from what I could gather) with <code>zsh</code>. It also should work for any Bourne shell descendant.</p> <p>With <code>csh</code>/<code>tcsh</code>, you have to launch your script with <code>#!/bin/csh -e</code></p> http://stackoverflow.com/questions/369908/sql-statement-to-collect-data-in-a-day-by-day-hour-for-hour-fashion/369929#369929 2 Answer by mat for SQL statement to collect data in a day-by-day, hour-for-hour fashion... mat 2008-12-15T22:32:37Z 2008-12-16T00:05:21Z <p>Hum, depending on your database engine, you'll get different results, but with PostgreSQL, I would do something like that :</p> <pre><code>SELECT date_trunc('hour', table.date), count(table.id) FROM table GROUP BY date_trunc('hour', table.date) ORDER BY date_trunc('hour', table.date) </code></pre> <p>The <a href="http://www.postgresql.org/docs/8.3/static/functions-datetime.html" rel="nofollow"><code>date_trunc</code></a> function truncates a timestamp field up to a certain point. That query would return you hour by hour, the number of queries, you would just have to do the sums in your software.</p> <p>If you really mean to have a SQL query returning exactly what you want, I think you'll have to make a function returning a sql set with the proper data, but I think it's easier to do it in your code.</p> http://stackoverflow.com/questions/369209/should-i-use-moduleinstall-or-modulebuild/369229#369229 3 Answer by mat for Should I use Module::Install or Module::Build? mat 2008-12-15T18:12:19Z 2008-12-15T23:30:11Z <p>Well, <code>Module::Build</code> is a pretty good module, it's supposed to be a drop in replacement for <code>ExtUtils::MakeMaker</code>, that is, replace the Makefile.PL by a Build.PL, which generate a Build instead of a Makefile. It was also meant as "simple things should stay simple, hard things should be possible".</p> <p><code>Module::Install</code> takes a different approach and generates a Makefile.</p> <p>Also, don't forget that not everyone runs the latest version of everything :-)</p> <p>I don't remember any comparison of those modules, but I think you could find a few things from <a href="http://cpanratings.perl.org/dist/Module-Build" rel="nofollow"><code>Module::Build</code></a> and <a href="http://cpanratings.perl.org/dist/Module-Install" rel="nofollow"><code>Module::Install</code></a> respective cpanratings pages.</p> http://stackoverflow.com/questions/370047/what-is-the-most-elegant-way-to-remove-a-path-from-the-path-variable-in-bash/370056#370056 2 Answer by mat for What is the most elegant way to remove a path from the $PATH variable in Bash? mat 2008-12-15T23:23:54Z 2008-12-15T23:23:54Z <p>Well, in bash, as it supports regular expression, I would simply do :</p> <pre><code>PATH=${PATH/:\/home\/user\/bin/} </code></pre> http://stackoverflow.com/questions/369856/how-do-you-join-two-mysql-tables-where-the-data-is-not-in-the-other-table/369863#369863 1 Answer by mat for How do you JOIN two MySQL tables where the data is NOT in the other table? mat 2008-12-15T22:05:01Z 2008-12-15T22:21:10Z <p>It is possible, yes, say :</p> <pre><code>SELECT * FROM pets LEFT OUTER JOIN pets-lost ON pets.id = pets-lost.id WHERE pets-lost.id IS NULL; </code></pre> http://stackoverflow.com/questions/368858/hidden-features-of-mysql/368886#368886 18 Answer by mat for Hidden Features of MySQL mat 2008-12-15T16:21:00Z 2008-12-15T16:21:00Z <p>One of the not so hidden feature of MySQL is that it's not really good at being SQL compliant, well, not bugs really, but, more <a href="http://sql-info.de/mysql/gotchas.html" rel="nofollow">gotchas</a>... :-)</p> http://stackoverflow.com/questions/365103/how-to-profile-postgresql-database/365112#365112 2 Answer by mat for How to profile PostgreSQL Database? mat 2008-12-13T11:11:34Z 2008-12-13T11:55:45Z <p>Well, if you're looking at what's going on, regarding selects, updates, deletes, and so on, there are a few tables in the <code>pg_catalog</code> schema, I mainly use <code>pg_stat_user_tables</code> and <code>pg_stat_user_indexes</code> but there are many more, all within <code>pg_stat*</code>.</p> <p>There also is the <code>pg_stat_activity</code> view which tells you what's running on your server right now.</p> <p>I've hacked together four munin plugins that uses the user_tables and user_indexes, they're available <a href="http://mat.cc/distfiles/munin/" rel="nofollow">there</a></p> http://stackoverflow.com/questions/362473/how-to-upload-files-to-password-protected-https-site-using-curl/362524#362524 2 Answer by mat for How to upload files to password protected HTTPS site using CURL? mat 2008-12-12T11:37:49Z 2008-12-12T11:37:49Z <p>Yes, you can,</p> <pre><code>$ curl --user login:password --upload-file your.file.txt https://the.url/where/that/should/go </code></pre> <p>You may need to add <code>--insecure</code> if you don't want cURL to check the certificate chain.</p> http://stackoverflow.com/questions/362503/how-can-i-remove-the-text-before-and-after-a-particular-character/362517#362517 1 Answer by mat for How can I remove the text before and after a particular character? mat 2008-12-12T11:34:45Z 2008-12-12T11:34:45Z <p>I'd say, that if $text contains your whole text, you can do :</p> <pre><code>$text =~ s/^.*(keyword1|keyword2).*$/$1/m; </code></pre> <p>The <code>m</code> modifier makes <code>^</code> and <code>$</code> see a beginning and an ending of line, and not the beginning and ending of the string.</p> http://stackoverflow.com/questions/362227/google-chrome-bug-with-css-padding-style-applying-to-empty-cells/362239#362239 1 Answer by mat for Google Chrome Bug with CSS Padding style applying to empty cells mat 2008-12-12T08:52:14Z 2008-12-12T09:33:50Z <p>I think Google Chrome have a different default for the <a href="http://www.w3schools.com/Css/pr_tab_empty-cells.asp" rel="nofollow"><code>empty-cells</code></a> css property. you should try to do :</p> <pre><code>#regFormTable{ padding:8px 30px 0px; empty-cells: hide; } </code></pre> http://stackoverflow.com/questions/357212/rails-convert-html-to-pdf/360156#360156 0 Answer by mat for Rails: Convert HTML to PDF? mat 2008-12-11T17:16:49Z 2008-12-11T17:16:49Z <ul> <li>There is <a href="http://rubyforge.org/projects/railspdfplugin/" rel="nofollow">RPDF</a> in which you describe your pdf's in as a view.</li> <li>There also is <a href="http://rtex.rubyforge.org/" rel="nofollow">RTEX</a> which uses (La)TeX to generates pdf's.</li> </ul> http://stackoverflow.com/questions/359816/displaying-images-in-gspgrails/359844#359844 2 Answer by mat for Displaying images in gsp(grails) mat 2008-12-11T16:01:49Z 2008-12-11T16:01:49Z <p>Depending on what's in your imageList, you can do a :</p> <pre><code>&lt;g:each in="${imageList}" var="image"&gt; &lt;img src="${createLinkTo(dir: 'images', file: image.filename)}" alt="Grails"/&gt; &lt;/g:each&gt; </code></pre> http://stackoverflow.com/questions/359793/creating-dynamic-maps-on-the-web/359835#359835 1 Answer by mat for Creating dynamic maps on the web mat 2008-12-11T15:59:27Z 2008-12-11T15:59:27Z <p>I'd say you could base yourself on <a href="http://openstreetmap.org/" rel="nofollow">OpenStreetMap</a> which database is under creative commons license.</p> http://stackoverflow.com/questions/359220/is-there-a-non-scripting-language-for-linux-apache/359239#359239 2 Answer by mat for Is there a non-scripting language for Linux/Apache? mat 2008-12-11T12:52:04Z 2008-12-11T13:40:16Z <p>Well, you have plenty of non scripting languages, you can go with C, C++...</p> <p>I've also used a C framework, named <a href="http://www.koanlogic.com/klone/" rel="nofollow">klone</a> which is pretty nice.</p> http://stackoverflow.com/questions/340020/mysql-how-to-use-index-in-where-x-in-subquery/340557#340557 Comment by mat on MySQL - how to use index in WHERE x IN (<subquery>) mat 2008-12-23T23:28:05Z 2008-12-23T23:28:05Z I don't think using any kind of subquery is an improvement with MySQL. http://stackoverflow.com/questions/368858/hidden-features-of-mysql/385935#385935 Comment by mat on Hidden Features of MySQL mat 2008-12-23T23:26:41Z 2008-12-23T23:26:41Z PostgreSQL has a very nice inet type, which handles ipv4 and ipv6 very nicelly :-) http://stackoverflow.com/questions/386459/how-can-i-ignore-accents-when-comparing-strings-in-perl Comment by mat on How can I ignore accents when comparing strings in Perl? mat 2008-12-22T23:17:22Z 2008-12-22T23:17:22Z That's right, yes :-) http://stackoverflow.com/questions/386459/how-can-i-ignore-accents-when-comparing-strings-in-perl Comment by mat on How can I ignore accents when comparing strings in Perl? mat 2008-12-22T16:36:09Z 2008-12-22T16:36:09Z It was just and example, and, well, they could also type the entire dictionnary each time :-) http://stackoverflow.com/questions/368858/hidden-features-of-mysql/368886#368886 Comment by mat on Hidden Features of MySQL mat 2008-12-22T12:24:43Z 2008-12-22T12:24:43Z for one, I don't think it will ever be possible to put a NULL value in a timestamp field. http://stackoverflow.com/questions/385023/why-do-you-use-typedef-when-declaring-an-enum-in-c/385045#385045 Comment by mat on Why do you use typedef when declaring an enum in C++ ? mat 2008-12-21T22:37:36Z 2008-12-21T22:37:36Z Isn't what I said in my last sentence ? http://stackoverflow.com/questions/366682/how-to-limit-execution-time-of-a-function-call-in-python/366763#366763 Comment by mat on How to limit execution time of a function call in Python mat 2008-12-21T20:30:35Z 2008-12-21T20:30:35Z What if I'm using alarm for something else somewhere else ? :-) http://stackoverflow.com/questions/377400/is-catalystmasontemplatetoolkit-worth-learning-rather-than-sticking-to-lampa/377826#377826 Comment by mat on Is Catalyst+Mason+Template::Toolkit worth learning rather than sticking to LAMP+Axkit? mat 2008-12-19T09:30:29Z 2008-12-19T09:30:29Z Well, the P can either be PHP, Perl, or Python :-) http://stackoverflow.com/questions/356126/how-can-you-automatically-remove-trailing-whitespace-in-vim/361406#361406 Comment by mat on How can you automatically remove trailing whitespace in vim mat 2008-12-18T20:45:09Z 2008-12-18T20:45:09Z Hum, that's pretty dangerous to do it on &quot;*&quot; if you eventually open up binary files, they may end up in a pretty bad shape. http://stackoverflow.com/questions/377294/howto-identify-utf-8-encoded-strings Comment by mat on Howto identify UTF-8 encoded strings mat 2008-12-18T09:38:36Z 2008-12-18T09:38:36Z And, thou shall not find a BOM at the begining of an UTF-8 stream, it makes no sense as UTF-8 is the same whatever the byte order is. http://stackoverflow.com/questions/377294/howto-identify-utf-8-encoded-strings/377313#377313 Comment by mat on Howto identify UTF-8 encoded strings mat 2008-12-18T09:27:11Z 2008-12-18T09:27:11Z If you're reading a stream and you might not have the beginning, you should either loose the \A at the begining or add a &quot;.{0,5}?&quot; just after it to capture the first truncated character. http://stackoverflow.com/questions/372370/how-can-i-split-a-string-into-chunks-of-two-characters-each-in-perl/372936#372936 Comment by mat on How can I split a string into chunks of two characters each in Perl? mat 2008-12-16T22:55:18Z 2008-12-16T22:55:18Z yup, but it's way slower than unpack. http://stackoverflow.com/questions/372893/shell-extension-virtual-file-creation/372906#372906 Comment by mat on Shell Extension - Virtual File Creation mat 2008-12-16T22:05:55Z 2008-12-16T22:05:55Z Unless I'm mistaken, mmap'ing a file won't load it into memory, it'll just give you a virtual memory pointer from where you can access the file. It'll only get into memory if you read from it (and into swap if the OS needs the memory) http://stackoverflow.com/questions/372721/what-is-the-smallest-program-possible-to-parse-an-email-message-header/372763#372763 Comment by mat on What is the smallest program possible to parse an email message header? mat 2008-12-16T21:21:34Z 2008-12-16T21:21:34Z That does not account for multi-line headers :-) http://stackoverflow.com/questions/372721/what-is-the-smallest-program-possible-to-parse-an-email-message-header Comment by mat on What is the smallest program possible to parse an email message header? mat 2008-12-16T21:12:03Z 2008-12-16T21:12:03Z How do you account for multi-lines headers ?