<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
<style>
<!--
@font-face
        {font-family:Calibri}
@font-face
        {font-family:Tahoma}
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0cm;
        margin-bottom:.0001pt;
        font-size:12.0pt;
        font-family:"Times New Roman","serif"}
a:link, span.MsoHyperlink
        {color:blue;
        text-decoration:underline}
a:visited, span.MsoHyperlinkFollowed
        {color:purple;
        text-decoration:underline}
span.EmailStyle17
        {font-family:"Calibri","sans-serif";
        color:#1F497D}
.MsoChpDefault
        {font-family:"Calibri","sans-serif"}
@page WordSection1
        {margin:72.0pt 72.0pt 72.0pt 72.0pt}
div.WordSection1
        {}
-->
</style>
</head>
<body lang="EN-GB" link="blue" vlink="purple">
<div class="WordSection1">
<p class="MsoNormal"><span style="font-size:11.0pt; font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;; color:#1F497D">Hi Hugh,</span></p>
<p class="MsoNormal"><span style="font-size:11.0pt; font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;; color:#1F497D">&nbsp;</span></p>
<p class="MsoNormal"><span style="font-size:11.0pt; font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;; color:#1F497D">I assume this is for Apache and I&#8217;m running IIS7, so I guess it isn&#8217;t compatible?</span></p>
<p class="MsoNormal"><span style="font-size:11.0pt; font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;; color:#1F497D">&nbsp;</span></p>
<p class="MsoNormal"><span style="font-size:11.0pt; font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;; color:#1F497D">&#8220;</span>It looks like I've been having performance problems because millions of rows get blessed into objects, not sure of this but it looks like a DBIC thing
 at the moment.&#8221;<span style="font-size:11.0pt; font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;; color:#1F497D"></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt; font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;; color:#1F497D">&nbsp;</span></p>
<p class="MsoNormal"><span style="font-size:11.0pt; font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;; color:#1F497D">That&#8217;s not good, and is part of the issue of ORM (so I&#8217;ve read),&nbsp; I&#8217;m not as old as you, but I&#8217;m still old school, get only the columns and rows you need
 when you need them, well that&#8217;s my take on it and it seems to work for me.</span></p>
<p class="MsoNormal"><span style="font-size:11.0pt; font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;; color:#1F497D">&nbsp;</span></p>
<p class="MsoNormal"><span style="font-size:11.0pt; font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;; color:#1F497D">Regards,</span></p>
<p class="MsoNormal"><span style="font-size:11.0pt; font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;; color:#1F497D">&nbsp;</span></p>
<p class="MsoNormal"><span style="font-size:11.0pt; font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;; color:#1F497D">Craig.</span></p>
<p class="MsoNormal"><span style="font-size:11.0pt; font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;; color:#1F497D">&nbsp;</span></p>
<p class="MsoNormal"><b><span lang="EN-US" style="font-size:10.0pt; font-family:&quot;Tahoma&quot;,&quot;sans-serif&quot;">From:</span></b><span lang="EN-US" style="font-size:10.0pt; font-family:&quot;Tahoma&quot;,&quot;sans-serif&quot;"> Hugh Barnard [mailto:hugh.barnard@gmail.com]
<br>
<b>Sent:</b> 30 October 2012 15:47<br>
<b>To:</b> The elegant MVC web framework<br>
<b>Subject:</b> Re: [Catalyst] Global 'helper' methods</span></p>
<p class="MsoNormal">&nbsp;</p>
<p class="MsoNormal" style="margin-bottom:12.0pt">Hi <br>
<br>
On measurement in general, I'd recommend: Devel::NYTProf::Apache ; there's a write up here:<br>
<a href="http://www.slideshare.net/bobcatfish/profiling-with-develnytprof">http://www.slideshare.net/bobcatfish/profiling-with-develnytprof</a>
<br>
<br>
I'm dealing with a largish Catalyst/mod_perl thing at the moment and it's been tremendously helpful. One tip is that it is very picky about closing the files that it needs to compile the profiles, I write these into /tmp and then crunch them with the command
 line tools.<br>
<br>
Incidentally, I am 62 and therefore pretty old-skool and not mad for ORM-everywhere. It looks like I've been having performance problems because millions of rows get blessed into objects, not sure of this but it looks like a DBIC thing at the moment. Currently
 I've 'cursor'-ed them:<br>
&nbsp; my $cursor = $entries-&gt;cursor;<br>
&nbsp; while ( my @row_values = $cursor-&gt;next ) {<br>
and that seems to give some improvements in that area...<br>
<br>
Best regards Hugh</p>
<div>
<p class="MsoNormal">On 30 October 2012 15:24, Lukas Thiemeier &lt;<a href="mailto:spamcatcher@thiemeier.net" target="_blank">spamcatcher@thiemeier.net</a>&gt; wrote:</p>
<p class="MsoNormal">Hm... how to measure the overhead of a module?<br>
<br>
There is a XS version of the module which is used if you have a C<br>
compiler. I don't know the exact overhead, but I know that it is fast.<br>
<br>
I have no experience with the pure perl version of that module.<br>
<br>
If all you have to do with the dates is the simple string transformation<br>
you are right. As I said before: I recommend to use DT if you are<br>
working with dates a lot. Doing math on dates and times is annoying,<br>
because of leap years, epochs, timezones and so on. If you need this:<br>
Using DateTime is recommended. If not: Its not :)<br>
<br>
If you are ONLY using pure perl modules:<br>
You can include all required modules in your distribution. It should run<br>
on any perl installation, even in a shared host environment.<br>
<br>
App::FatPacker helps you doing this...<br>
<br>
But this doesn't work as soon as you use XS modules.</p>
<div>
<div>
<p class="MsoNormal"><br>
On 10/30/2012 04:03 PM, Craig Chant wrote:<br>
&gt; Thanks Lukas,<br>
&gt;<br>
&gt; I appreciate there is DateTime , though I have so much legacy code that uses my helper class re-writing everything will be a mammoth task.<br>
&gt;<br>
&gt; I hand rolled a lot when I first started out with Perl, didn't know much about CPAN or PPM, and couldn't load any modules that weren't part of the core install on the original 'shared' hosting I was using.<br>
&gt;<br>
&gt; Plus I always felt loading an entire module to re-arrange a tiny string seems a bit OTT?<br>
&gt;<br>
&gt; Dunno, what's the overhead of DateTime?<br>
&gt;<br>
&gt; Craig.<br>
&gt;<br>
&gt; -----Original Message-----<br>
&gt; From: Lukas Thiemeier [mailto:<a href="mailto:spamcatcher@thiemeier.net">spamcatcher@thiemeier.net</a>]<br>
&gt; Sent: 30 October 2012 14:52<br>
&gt; To: <a href="mailto:catalyst@lists.scsys.co.uk">catalyst@lists.scsys.co.uk</a><br>
&gt; Subject: Re: [Catalyst] Global 'helper' methods<br>
&gt;<br>
&gt; You can also define your constants in &quot;YourApp/Constants.pl&quot;, and &quot;use&quot;<br>
&gt; YourApp::Constants wherever you need them.<br>
&gt;<br>
&gt; YourApp/Constants.pm:<br>
&gt; &nbsp; use constant { FOO =&gt; 1 };<br>
&gt; &nbsp; 1;<br>
&gt;<br>
&gt; Controller.pm:<br>
&gt;<br>
&gt; &nbsp; use YourApp::Constants;<br>
&gt;<br>
&gt; &nbsp; # and in some method<br>
&gt; &nbsp; ...<br>
&gt; &nbsp; my $global_foo = FOO;<br>
&gt;<br>
&gt; There might be a better way, but this works...<br>
&gt;<br>
&gt; For handling dates, I recommend &quot;DateTime&quot;, available on cpan:<br>
&gt;<br>
&gt; Another reason to use DBIC:<br>
&gt; DBIx::Class::Inflatecolumn::DateTime automatically transforms dates stored in a database into a DateTime object, which can be used like this:<br>
&gt;<br>
&gt; my $uk_string = $datetime-&gt;dmy('/');<br>
&gt; my $us_string = $datetime-&gt;ymd('-');<br>
&gt;<br>
&gt; But DateTime is not related to DBIC, DBIC just makes using it easy.<br>
&gt;<br>
&gt; Use it if you have to work with dates a lot. It has lots of methods for outputting dates, times or both in different formats, and it allows datetime-math...<br>
&gt;<br>
&gt;<br>
&gt; On 10/30/2012 03:39 PM, Craig Chant wrote:<br>
&gt;&gt; Well I opted for putting my globals (methods and constants) in<br>
&gt;&gt; MyApp.pm<br>
&gt;&gt;<br>
&gt;&gt; It's working grand with $c-&gt;myMethod or $c-&gt;MY_CONSTANT<br>
&gt;&gt;<br>
&gt;&gt; I use to have them working as a bareword within my application , but $c-&gt;MY_CONSTANT is just as easy!<br>
&gt;&gt;<br>
&gt;&gt; Many thanks for all the input and help, it really is appreciated.<br>
&gt;&gt;<br>
&gt;&gt; -----Original Message-----<br>
&gt;&gt; From: Lukas Thiemeier [mailto:<a href="mailto:spamcatcher@thiemeier.net">spamcatcher@thiemeier.net</a>]<br>
&gt;&gt; Sent: 30 October 2012 13:56<br>
&gt;&gt; To: <a href="mailto:catalyst@lists.scsys.co.uk">catalyst@lists.scsys.co.uk</a><br>
&gt;&gt; Subject: Re: [Catalyst] Global 'helper' methods<br>
&gt;&gt;<br>
&gt;&gt; Hi Craig,<br>
&gt;&gt;<br>
&gt;&gt; Writing helpers in your main App.pm and using roles is not either-or.<br>
&gt;&gt;<br>
&gt;&gt; Roles are one possibility to modify your classes in a reusable way.<br>
&gt;&gt;<br>
&gt;&gt; If your helpers are really global, which means that they are used by all, or almost all your controllers, I would put them into your main application class.<br>
&gt;&gt;<br>
&gt;&gt; If you have more than one application which make use of the same<br>
&gt;&gt; helpers: Put them into a role:<br>
&gt;&gt;<br>
&gt;&gt; YourHelperRole.pm:<br>
&gt;&gt;<br>
&gt;&gt; &nbsp; package YourHelperRole;<br>
&gt;&gt; &nbsp; use Moose::Role;<br>
&gt;&gt;<br>
&gt;&gt; &nbsp; has &quot;some_attribute&quot; =&gt; ( ... ); # if you need attributes<br>
&gt;&gt;<br>
&gt;&gt; &nbsp; sub helpermethod1{<br>
&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; my ($self, $other, $args) = @_;<br>
&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; do_something();<br>
&gt;&gt; &nbsp; }<br>
&gt;&gt;<br>
&gt;&gt; &nbsp; sub helpermethod2{<br>
&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; my ($self, $other, $args) = @_;<br>
&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; do_something_different();<br>
&gt;&gt; &nbsp; }<br>
&gt;&gt;<br>
&gt;&gt; &nbsp; no Moose::Role; # or use namespace::autoclean or MooseX::MarkAsMethod<br>
&gt;&gt; &nbsp; 1;<br>
&gt;&gt;<br>
&gt;&gt; App.pm:<br>
&gt;&gt;<br>
&gt;&gt; &nbsp; use Catalyst qw( ... );<br>
&gt;&gt; &nbsp; extends &quot;Catalyst&quot;;<br>
&gt;&gt; &nbsp; with qw/YourHelperRole/;<br>
&gt;&gt;<br>
&gt;&gt; &nbsp; ...<br>
&gt;&gt;<br>
&gt;&gt; In my opinion, extending your main App.pm with roles is only useful if you need the same helpers in different locations, too.<br>
&gt;&gt; If you only need them for that single application, &nbsp;avoid the overhead related to using roles.<br>
&gt;&gt;<br>
&gt;&gt; If you have helpers which are only needed by some controllers, create a role for your controllers. You can not only implement helpers in you roles, you can also create method-modifiers, which change the way your methods behave.<br>
&gt;&gt;<br>
&gt;&gt; Here is an example, which writes sth to the log, after the &quot;delete&quot;<br>
&gt;&gt; method was called:<br>
&gt;&gt;<br>
&gt;&gt; YourLogRole.pm:<br>
&gt;&gt;<br>
&gt;&gt; &nbsp; package YourLogRole;<br>
&gt;&gt;<br>
&gt;&gt; &nbsp; use Moose::Role;<br>
&gt;&gt; &nbsp; requires qw/delete/; #die if the consuming class has no &quot;delete&quot;<br>
&gt;&gt;<br>
&gt;&gt; &nbsp; after &quot;delete&quot; =&gt; sub{<br>
&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; my ($self, $c) = @_;<br>
&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; $c-&gt;log-&gt;debug(&quot;DELETE called&quot;);<br>
&gt;&gt; &nbsp; };<br>
&gt;&gt;<br>
&gt;&gt; &nbsp; no Moose::Role;<br>
&gt;&gt; &nbsp; 1;<br>
&gt;&gt;<br>
&gt;&gt; Controller1.pm: (has the helpers, but no logging)<br>
&gt;&gt;<br>
&gt;&gt; &nbsp; package Controller1;<br>
&gt;&gt; &nbsp; use Moose;<br>
&gt;&gt; &nbsp; extends &quot;Catalyst::Controller&quot;;<br>
&gt;&gt; &nbsp; with qw/<br>
&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; YourHelperRole<br>
&gt;&gt; &nbsp; /;<br>
&gt;&gt;<br>
&gt;&gt; &nbsp; sub someaction :Local {<br>
&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; my ($self, $c) =@_;<br>
&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; $self-&gt;helpermethod1();<br>
&gt;&gt; &nbsp; }<br>
&gt;&gt;<br>
&gt;&gt; &nbsp; ...<br>
&gt;&gt;<br>
&gt;&gt; Controller2.pm: (has helpers AND logging)<br>
&gt;&gt;<br>
&gt;&gt; &nbsp; package Controller2;<br>
&gt;&gt; &nbsp; use Moose;<br>
&gt;&gt; &nbsp; extends &quot;Catalyst::Controller&quot;;<br>
&gt;&gt; &nbsp; with qw/<br>
&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; YourLogRole<br>
&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; YourHelperRole<br>
&gt;&gt; &nbsp; /;<br>
&gt;&gt;<br>
&gt;&gt; &nbsp; sub delete :Local :Args(1) { ... }<br>
&gt;&gt;<br>
&gt;&gt; Controller3.pm (has logging, but no helpers)<br>
&gt;&gt;<br>
&gt;&gt; &nbsp; package Controller3;<br>
&gt;&gt; &nbsp; use Moose;<br>
&gt;&gt; &nbsp; extends &quot;Catalyst::Controller&quot;;<br>
&gt;&gt; &nbsp; with qw/<br>
&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; YourLogRole<br>
&gt;&gt; &nbsp; /;<br>
&gt;&gt;<br>
&gt;&gt; &nbsp; sub delete :Local :Args(1) { ... }<br>
&gt;&gt;<br>
&gt;&gt; Roles are very powerful tools. I use them a lot.<br>
&gt;&gt; Read the Moose docs for more information.<br>
&gt;&gt;<br>
&gt;&gt; If you don't want to learn Moose, roles and so on now, just remember:<br>
&gt;&gt;<br>
&gt;&gt; 1. write sth in a role<br>
&gt;&gt; 2. consume the role in a moose class, using &quot;with&quot;<br>
&gt;&gt; 3. your roles methods and attributes will be available in the<br>
&gt;&gt; consuming class<br>
&gt;&gt;<br>
&gt;&gt; Lukas<br>
&gt;&gt;<br>
&gt;&gt; On 10/30/2012 02:03 PM, Craig Chant wrote:<br>
&gt;&gt;&gt; Hi,<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Please could you advise the best way of having a global 'helper'<br>
&gt;&gt;&gt; class that has all commonly used methods in it accessible for any<br>
&gt;&gt;&gt; part of the catalyst app.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; I found this thread<br>
&gt;&gt;&gt; <a href="http://stackoverflow.com/questions/11941836/catalyst-global-subroutin" target="_blank">
http://stackoverflow.com/questions/11941836/catalyst-global-subroutin</a><br>
&gt;&gt;&gt; e<br>
&gt;&gt;&gt; s<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; With one indicating it's ok to put them in the main MyApp.pm and<br>
&gt;&gt;&gt; another saying to use Moose &amp; Roles.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; What is considered the correct way and could you provide an example<br>
&gt;&gt;&gt; of how I create this helper class and bolt it to the Catalyst application.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Many thanks,<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; */Craig Chant/*<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; I.T. Manager<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Description: <a href="cid:image001.png@01CD5F4A.17E848D0">cid:image001.png@01CD5F4A.17E848D0</a><br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Main Line &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;01903 602664<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Direct Line &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 01903 227753<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Visit our website <a href="http://www.homeloanpartnership.com" target="_blank">
http://www.homeloanpartnership.com</a><br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; *HomeLoan Partnership have been named the Best Mortgage Network,<br>
&gt;&gt;&gt; 2012, at the <a href="http://myintroducer.com" target="_blank">myintroducer.com</a> Industry Awards*<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; This Email and any attachments contain confidential information and<br>
&gt;&gt;&gt; is intended solely for the individual to whom it is addressed. If<br>
&gt;&gt;&gt; this Email has been misdirected, please notify the author as soon as<br>
&gt;&gt;&gt; possible. If you are not the intended recipient you must not<br>
&gt;&gt;&gt; disclose, distribute, copy, print or rely on any of the information<br>
&gt;&gt;&gt; contained, and all copies must be deleted immediately. Whilst we take<br>
&gt;&gt;&gt; reasonable steps to try to identify any software viruses, any<br>
&gt;&gt;&gt; attachments to this e-mail may nevertheless contain viruses, which<br>
&gt;&gt;&gt; our anti-virus software has failed to identify. You should therefore<br>
&gt;&gt;&gt; carry out your own anti-virus checks before opening any documents.<br>
&gt;&gt;&gt; HomeLoan Partnership will not accept any liability for damage caused<br>
&gt;&gt;&gt; by computer viruses emanating from any attachment or other document supplied with this e-mail.<br>
&gt;&gt;&gt; HomeLoan Partnership reserves the right to monitor and archive all<br>
&gt;&gt;&gt; e-mail communications through its network. No representative or<br>
&gt;&gt;&gt; employee of HomeLoan Partnership has the authority to enter into any<br>
&gt;&gt;&gt; contract on behalf of HomeLoan Partnership by email. HomeLoan<br>
&gt;&gt;&gt; Partnership is a trading name of H L Partnership Limited, registered<br>
&gt;&gt;&gt; in England and Wales with Registration Number 5011722. Registered<br>
&gt;&gt;&gt; office: 26-34 Old Street, London, EC1V 9QQ. H L Partnership Limited<br>
&gt;&gt;&gt; is authorised and regulated by the Financial Services Authority.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; _______________________________________________<br>
&gt;&gt;&gt; List: <a href="mailto:Catalyst@lists.scsys.co.uk">Catalyst@lists.scsys.co.uk</a><br>
&gt;&gt;&gt; Listinfo: <a href="http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst" target="_blank">
http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst</a><br>
&gt;&gt;&gt; Searchable archive:<br>
&gt;&gt;&gt; <a href="http://www.mail-archive.com/catalyst@lists.scsys.co.uk/" target="_blank">
http://www.mail-archive.com/catalyst@lists.scsys.co.uk/</a><br>
&gt;&gt;&gt; Dev site: <a href="http://dev.catalyst.perl.org/" target="_blank">http://dev.catalyst.perl.org/</a><br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; List: <a href="mailto:Catalyst@lists.scsys.co.uk">Catalyst@lists.scsys.co.uk</a><br>
&gt;&gt; Listinfo: <a href="http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst" target="_blank">
http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst</a><br>
&gt;&gt; Searchable archive:<br>
&gt;&gt; <a href="http://www.mail-archive.com/catalyst@lists.scsys.co.uk/" target="_blank">
http://www.mail-archive.com/catalyst@lists.scsys.co.uk/</a><br>
&gt;&gt; Dev site: <a href="http://dev.catalyst.perl.org/" target="_blank">http://dev.catalyst.perl.org/</a> This Email and any attachments<br>
&gt;&gt; contain confidential information and is intended solely for the<br>
&gt;&gt; individual to whom it is addressed. If this Email has been<br>
&gt;&gt; misdirected, please notify the author as soon as possible. If you are<br>
&gt;&gt; not the intended recipient you must not disclose, distribute, copy,<br>
&gt;&gt; print or rely on any of the information contained, and all copies must<br>
&gt;&gt; be deleted immediately. Whilst we take reasonable steps to try to<br>
&gt;&gt; identify any software viruses, any attachments to this e-mail may<br>
&gt;&gt; nevertheless contain viruses, which our anti-virus software has failed<br>
&gt;&gt; to identify. You should therefore carry out your own anti-virus checks<br>
&gt;&gt; before opening any documents. HomeLoan Partnership will not accept any<br>
&gt;&gt; liability for damage caused by computer viruses emanating from any<br>
&gt;&gt; attachment or other document supplied with this e-mail. HomeLoan<br>
&gt;&gt; Partnership reserves the right to monitor and archive all e-mail<br>
&gt;&gt; communications through its network. No representative or employee of<br>
&gt;&gt; HomeLoan Partn<br>
&gt; &nbsp;ership ha<br>
&gt; s the authority to enter into any contract on behalf of HomeLoan Partnership by email. HomeLoan Partnership is a trading name of H L Partnership Limited, registered in England and Wales with Registration Number 5011722. Registered office: 26-34 Old Street,
 London, EC1V 9QQ. H L Partnership Limited is authorised and regulated by the Financial Services Authority.<br>
&gt;&gt;<br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; List: <a href="mailto:Catalyst@lists.scsys.co.uk">Catalyst@lists.scsys.co.uk</a><br>
&gt;&gt; Listinfo: <a href="http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst" target="_blank">
http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst</a><br>
&gt;&gt; Searchable archive:<br>
&gt;&gt; <a href="http://www.mail-archive.com/catalyst@lists.scsys.co.uk/" target="_blank">
http://www.mail-archive.com/catalyst@lists.scsys.co.uk/</a><br>
&gt;&gt; Dev site: <a href="http://dev.catalyst.perl.org/" target="_blank">http://dev.catalyst.perl.org/</a><br>
&gt;<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; List: <a href="mailto:Catalyst@lists.scsys.co.uk">Catalyst@lists.scsys.co.uk</a><br>
&gt; Listinfo: <a href="http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst" target="_blank">
http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst</a><br>
&gt; Searchable archive: <a href="http://www.mail-archive.com/catalyst@lists.scsys.co.uk/" target="_blank">
http://www.mail-archive.com/catalyst@lists.scsys.co.uk/</a><br>
&gt; Dev site: <a href="http://dev.catalyst.perl.org/" target="_blank">http://dev.catalyst.perl.org/</a></p>
</div>
</div>
<p class="MsoNormal">&gt; This Email and any attachments contain confidential information and is intended solely for the individual to whom it is addressed. If this Email has been misdirected, please notify the author as soon as possible. If you are not the intended
 recipient you must not disclose, distribute, copy, print or rely on any of the information contained, and all copies must be deleted immediately. Whilst we take reasonable steps to try to identify any software viruses, any attachments to this e-mail may nevertheless
 contain viruses, which our anti-virus software has failed to identify. You should therefore carry out your own anti-virus checks before opening any documents. HomeLoan Partnership will not accept any liability for damage caused by computer viruses emanating
 from any attachment or other document supplied with this e-mail. HomeLoan Partnership reserves the right to monitor and archive all e-mail communications through its network. No representative or employee of HomeLoan Partn</p>
<div>
<div>
<p class="MsoNormal">&nbsp;ership ha<br>
s the authority to enter into any contract on behalf of HomeLoan Partnership by email. HomeLoan Partnership is a trading name of H L Partnership Limited, registered in England and Wales with Registration Number 5011722. Registered office: 26-34 Old Street,
 London, EC1V 9QQ. H L Partnership Limited is authorised and regulated by the Financial Services Authority.<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; List: <a href="mailto:Catalyst@lists.scsys.co.uk">Catalyst@lists.scsys.co.uk</a><br>
&gt; Listinfo: <a href="http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst" target="_blank">
http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst</a><br>
&gt; Searchable archive: <a href="http://www.mail-archive.com/catalyst@lists.scsys.co.uk/" target="_blank">
http://www.mail-archive.com/catalyst@lists.scsys.co.uk/</a><br>
&gt; Dev site: <a href="http://dev.catalyst.perl.org/" target="_blank">http://dev.catalyst.perl.org/</a><br>
<br>
<br>
_______________________________________________<br>
List: <a href="mailto:Catalyst@lists.scsys.co.uk">Catalyst@lists.scsys.co.uk</a><br>
Listinfo: <a href="http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst" target="_blank">
http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst</a><br>
Searchable archive: <a href="http://www.mail-archive.com/catalyst@lists.scsys.co.uk/" target="_blank">
http://www.mail-archive.com/catalyst@lists.scsys.co.uk/</a><br>
Dev site: <a href="http://dev.catalyst.perl.org/" target="_blank">http://dev.catalyst.perl.org/</a></p>
</div>
</div>
</div>
<p class="MsoNormal" style="margin-bottom:12.0pt"><br>
<br clear="all">
<br>
-- <br>
<a href="http://www.hughbarnard.org" target="_blank">http://www.hughbarnard.org</a><br>
<a href="http://www.twitter.com/hughbarnard" target="_blank">http://www.twitter.com/hughbarnard</a><br>
<a href="http://www.big-wave-heuristics.com/" target="_blank">http://www.big-wave-heuristics.com/</a></p>
</div>
This Email and any attachments contain confidential information and is intended solely for the individual to whom it is addressed. If this Email has been misdirected, please notify the author as soon as possible. If you are not the intended recipient you must
 not disclose, distribute, copy, print or rely on any of the information contained, and all copies must be deleted immediately. Whilst we take reasonable steps to try to identify any software viruses, any attachments to this e-mail may nevertheless contain
 viruses, which our anti-virus software has failed to identify. You should therefore carry out your own anti-virus checks before opening any documents. HomeLoan Partnership will not accept any liability for damage caused by computer viruses emanating from any
 attachment or other document supplied with this e-mail. HomeLoan Partnership reserves the right to monitor and archive all e-mail communications through its network. No representative or employee of HomeLoan Partnership has the authority to enter into any
 contract on behalf of HomeLoan Partnership by email. HomeLoan Partnership is a trading name of H L Partnership Limited, registered in England and Wales with Registration Number 5011722. Registered office: 26-34 Old Street, London, EC1V 9QQ. H L Partnership
 Limited is authorised and regulated by the Financial Services Authority.
</body>
</html>