[Catalyst] (no subject)

2017-09-01 Thread will trillich
Short version:

$userexam->user is defined as Auth::User, but seems like it gets redefined
as DB::User somewhere mysteriously.

How can I track that down?



Long version:

Split database setup: DB is for the application data, Auth is for user data.

The userexam table links users to the exams they take.
*Schema/DB/Result/UserExam.pm
*contains:

__PACKAGE__->belongs_to( user => 'Learn::Schema::Auth::Result::User' );
__PACKAGE__->belongs_to( exam => 'Learn::Schema::DB::Result::Exam' );

*Schema/DB/ResultSet/UserExam.pm* contains:

sub take { # take the exam
my $rs  = shift; # Learn::Schema::DB::ResultSet::UserExam object
my $user= shift; # Learn::Model::Auth::User object
my $exam= shift; # Learn::Model::DB::Exam object
...
my $user_exam = $rs->create({
user => $user,
exam => $exam,
});
}

The error it throws at $rs->create() is:

DBIx::Class::ResultSource::_resolve_relationship_condition():
Objects supplied as 'foreign_values'
(Learn::Model::Auth::User=HASH(0xe022b14))
usually should inherit from the related ResultClass
('Learn::Model::DB::User'),
perhaps you've made a mistake invoking the condition resolver?

In the schema file ->user is defined as Auth::User. Somehow it gets
redefined along the way and Catalyst things it should be DB::User instead?!

Grepping for DB.*User (and variations) in schema files brings up
DB::UserExams and related info (DB::UserCourse, DB::UserRole,
DB::UserAnswer) but no DB::User at all.

How could that get redefined? Or is this a symptom of something else? I
could use a big clue stick upside the head :/

Thanks!




-- 
"Ask for nothing, and you will receive nothing." -- the folks at Global
Degree

“The cure to boredom is curiosity. There is no cure for curiosity.”

Dorothy Parker

Todo
___
List: Catalyst@lists.scsys.co.uk
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
Dev site: http://dev.catalyst.perl.org/


Re: [Catalyst] (no subject)

2012-08-31 Thread Dimitar Petrov
Hello Octavian,

If you take a look at the generated files from DBIx::Class::Schema::Loader
you'll see something like:

# Created by DBIx::Class::Schema::Loader v0.07024 @ 2012-07-25 17:05:05
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:YCnxLAuOQnGE4pbIiellqA

where the md5sum, the loader version and date are going to be different.
You are not suppose to editi anything above so I guess you made some change
above the line and there is mismatch with the md5sum?

Cheers,
Dimitar

On Thu, Aug 30, 2012 at 1:26 PM, Octavian Rasnita orasn...@gmail.comwrote:

 **
 *From:* Dimitar Petrov mita...@gmail.com


 Hello,

 you can pass a use_moose = 1 option to the make_schema_at as it's
 described in the documentation here
 https://metacpan.org/module/DBIx::Class::Schema::Loader#make_schema_at


 Thanks. I used use_moose=1 in the Catalyst helper command line and it
 should have worked because it didn't give that error anymore, however it
 gave another one:

 DBIx::Class::Schema::Loader::make_schema_at(): Checksum mismatch in
 '/srv/ZRK2/script/../lib/ZRK/ZRKSchema/Result/Anunturi.pm', the
 auto-generated part of the file has been modified outside of this loader.
 Aborting.

 Which is strange, because I checked and on the Linux server Anunturi.pm is
 exactly the same as on my development computer (using Windows end of line
 on both places).

 Octavian




 ___
 List: Catalyst@lists.scsys.co.uk
 Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
 Searchable archive:
 http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
 Dev site: http://dev.catalyst.perl.org/


___
List: Catalyst@lists.scsys.co.uk
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
Dev site: http://dev.catalyst.perl.org/


Re: [Catalyst] (no subject)

2012-08-31 Thread Octavian Rasnita
Hi Dimitar,

From: Dimitar Petrov 


  Hello Octavian,


  If you take a look at the generated files from DBIx::Class::Schema::Loader 
you'll see something like:


  # Created by DBIx::Class::Schema::Loader v0.07024 @ 2012-07-25 17:05:05
  # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:YCnxLAuOQnGE4pbIiellqA


  where the md5sum, the loader version and date are going to be different. You 
are not suppose to editi anything above so I guess you made some change above 
the line and there is mismatch with the md5sum?


  Cheers,
  Dimitar



  Yes I know that it should be so, but I haven't changed anything on the 
server, above or below that line.

  The file on the Linux server is exactly the same as the file on Windows (I 
have checked them using diff -u) and they both have Windows end of line.
  But I can change the DBIC schema under Windows without problems, but not the 
DBIC schema on Linux.

  Maybe it has something to do with the fact that the Perl module on Linux uses 
a Windows end of line... although if the files are exactly the same, they 
should generate the same MD5 sum...

  Octavian



___
List: Catalyst@lists.scsys.co.uk
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
Dev site: http://dev.catalyst.perl.org/


[Catalyst] (no subject)

2012-08-30 Thread piet molenaar
Hi,

We work with svn were we've committed the schema classes also into the
repository.
Using the Catalyst helper script we tried to update the DBIC schema
that was created with
the Catalyst helper after checkout on another machine and the
following error appeared.

DBIx::Class::Schema::Loader::make_schema_at(): It is not possible to
downgrade a schema that was loaded with use_moose = 1 to use_moose
= 0, due to differing custom content at
/home/danny/perl5/lib/perl5/Catalyst/Helper/Model/DBIC/Schema.pm line
635

I have to mention that we work both on Linux (Ubuntu) and Windows (7)
configurations. The error appeared after building the schema on the
Windows machine; checking it in and subsequently rebuilding (after
changes) on Ubuntu.


We also tried to install the latest version of DBIx::Class::Schema::Loader and
the latest Catalyst helper, and then the latest DBIx::Class, and run the
Catalyst helper to update the schema, but it still gives that error.

What can we do? Where can we specify use_moose = 1 to make it work?

We've looked into documentation but there is no mention about a best
practice of keeping the schema files out of a shared repository. Or am
I confused here?
I also noted that a similar question was posed on the DBIX mailing
list, but IMHO this list might be more appropriate.


Cheers  thanks in advance,
Piet


-- 
Piet Molenaar
piet@gmail.com
Department of Oncogenomics, M1-131
Academic Medical Center
University of Amsterdam
Meibergdreef 9
1105 AZ Amsterdam
the Netherlands

tel (+31) 20-5666592
fax (+31) 20-6918626
___
List: Catalyst@lists.scsys.co.uk
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
Dev site: http://dev.catalyst.perl.org/


Re: [Catalyst] (no subject)

2012-08-30 Thread Octavian Rasnita
From: piet molenaar 
  Subject: [Catalyst] (no subject)


Hi,

We work with svn were we've committed the schema classes also into the 
repository. 
Using the Catalyst helper script we tried to update the DBIC schema that was 
created with 
the Catalyst helper after checkout on another machine and the following error 
appeared.DBIx::Class::Schema::Loader::make_schema_at(): It is not possible to 
downgrade a schema that was loaded with use_moose = 1 to use_moose = 0, due 
to differing custom content at 
/home/danny/perl5/lib/perl5/Catalyst/Helper/Model/DBIC/Schema.pm line 635
 I have to mention that we work both on Linux (Ubuntu) and Windows (7) 
configurations. The error appeared after building the schema on the Windows 
machine; checking it in and subsequently rebuilding (after changes) on Ubuntu.

We also tried to install the latest version of DBIx::Class::Schema::Loader and 
the latest Catalyst helper, and then the latest DBIx::Class, and run the 
Catalyst helper to update the schema, but it still gives that error.

What can we do? Where can we specify use_moose = 1 to make it work?

We've looked into documentation but there is no mention about a best practice 
of keeping the schema files out of a shared repository. Or am I confused here?
I also noted that a similar question was posed on the DBIX mailing list, but 
IMHO this list might be more appropriate.


Cheers  thanks in advance,
Piet



  Yep, I put that question on DBIC mailing list because actually is about DBIC, 
but got no answer, so if someone on Catalyst mailing list know... please help.

  I have the same problem. Development on Windows and use in production on 
Ubuntu and then tried to update the DBIC schema on Ubuntu.

  Octavian
___
List: Catalyst@lists.scsys.co.uk
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
Dev site: http://dev.catalyst.perl.org/


Re: [Catalyst] (no subject)

2012-08-30 Thread Dimitar Petrov
Hello,

you can pass a use_moose = 1 option to the make_schema_at as it's
described in the documentation here
https://metacpan.org/module/DBIx::Class::Schema::Loader#make_schema_at

However if you have already created the schema on your dev machine and you
checkout the code on another machine, it's more like that you want to
update the database structure using the existing schema? What I do usually
I have 2 small scripts one called deploy.pl and one called make_schema_at.pl
.

My make_schema_at.pl creates DBIx::Class schema from an existing database
and it looks like:

make_schema_at(
'MyApp::Web::Schema',
{
debug = 1,
use_moose = 1,  # use_moose = 1 passed as a option
dump_directory = $Bin/../lib,
components = ['UUIDColumns', 'TimeStamp',
'InflateColumn::DateTime', 'PassphraseColumn'],
},
[ $dsn ],
);

and my deploy.pl makes to opposite:

...
use MyApp::Web::Schema;

my $dsn = '..'; # get dsn from config
my $schema =  MyApp::Web::Schema-connect($dsn);
$schema-deploy();


You might want also to check the dbicdump (
https://metacpan.org/module/dbicdump ) where you can say -o use_moose=1

Cheers,
Dimitar

On Thu, Aug 30, 2012 at 11:25 AM, Octavian Rasnita orasn...@gmail.comwrote:

 **
 *From:* piet molenaar piet@gmail.com

 *Subject:* [Catalyst] (no subject)

 Hi,

 We work with svn were we've committed the schema classes also into the 
 repository.
 Using the Catalyst helper script we tried to update the DBIC schema that was 
 created with
 the Catalyst helper after checkout on another machine and the following error 
 appeared.

 DBIx::Class::Schema::Loader::make_schema_at(): It is not possible to 
 downgrade a schema that was loaded with use_moose = 1 to use_moose = 0, 
 due to differing custom content at 
 /home/danny/perl5/lib/perl5/Catalyst/Helper/Model/DBIC/Schema.pm line 635

 I have to mention that we work both on Linux (Ubuntu) and Windows (7) 
 configurations. The error appeared after building the schema on the Windows 
 machine; checking it in and subsequently rebuilding (after changes) on Ubuntu.


 We also tried to install the latest version of DBIx::Class::Schema::Loader and
 the latest Catalyst helper, and then the latest DBIx::Class, and run the
 Catalyst helper to update the schema, but it still gives that error.

 What can we do? Where can we specify use_moose = 1 to make it work?

 We've looked into documentation but there is no mention about a best practice 
 of keeping the schema files out of a shared repository. Or am I confused here?
 I also noted that a similar question was posed on the DBIX mailing list, but 
 IMHO this list might be more appropriate.


 Cheers  thanks in advance,
 Piet




 Yep, I put that question on DBIC mailing list because actually is about
 DBIC, but got no answer, so if someone on Catalyst mailing list know...
 please help.

 I have the same problem. Development on Windows and use in production on
 Ubuntu and then tried to update the DBIC schema on Ubuntu.

 Octavian



 ___
 List: Catalyst@lists.scsys.co.uk
 Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
 Searchable archive:
 http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
 Dev site: http://dev.catalyst.perl.org/


___
List: Catalyst@lists.scsys.co.uk
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
Dev site: http://dev.catalyst.perl.org/


[Catalyst] (no subject) - XML-Views: Using XML-Simple ...

2012-03-04 Thread Johannes Kilian
Hi there,

first of all: sorry for using no topic on my initial mail - I changed this now 
...

On 28 Feb 2012, at 13:03, Johannes Kilian wrote:

 Hi,
 
 I've got following question concerning views: I want to provide an 
 XML-View which provides standard XML-Files using XML::Simple in almost
 any case. Just in some cases I want to provide specialized XML-Files.

On 29 Feb 2012, at 1:32, Thomas Doran wrote:
 Erm, why are you not just sending your already rendered standard XML file?

Within my controller in most cases the XML-structure generated by XML::Simple 
is sufficent. But certain URL should give a predefined XML-structure which I 
cannot achieve via XML::Simple ... My controller renders a few data structures  
- depending on the URL. With certain URL's I want a clearly defined 
XML-Structure - in other cases where I don't want/need to have a generic XML 
Structure the XML::Simple Output is sufficent ...

On 28 Feb 2012, at 21:25, Kieren Diment wrote:
 I'd either use Catalyst::View;:Download::XML, or steal from it to create your 
 own view: https://metacpan.org/module/Catalyst::View::Download::XML

I'll have to look into this ...

On 29 Feb 2012, at 11:35, Will Crawford wrote:
 $c-stash(current_view = '...');
 Then override that either in an individual action or part of a chain ...

... and into this as well!

Johannes



-- 
Empfehlen Sie GMX DSL Ihren Freunden und Bekannten und wir
belohnen Sie mit bis zu 50,- Euro! https://freundschaftswerbung.gmx.de

___
List: Catalyst@lists.scsys.co.uk
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
Dev site: http://dev.catalyst.perl.org/


Re: [Catalyst] (no subject)

2012-02-29 Thread Will Crawford
On 28 February 2012 13:03, Johannes Kilian jo.kil...@gmx.de wrote:

 I cannot figure out how to set XML::Simple as default handler and override 
 this for certain URLs within the same controller whilst for other URLs within 
 the same controller the default XML-Handler is used 

$c-stash(current_view = '...');

Then override that either in an individual action or part of a chain ...

___
List: Catalyst@lists.scsys.co.uk
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
Dev site: http://dev.catalyst.perl.org/


[Catalyst] (no subject)

2012-02-28 Thread Johannes Kilian
Hi,

I've got following question concerning views: I want to provide an XML-View 
which provides standard XML-Files using XML::Simple in almost any case. Just 
in some cases I want to provide specialized XML-Files.

In other words: I want to use XML::Simple as default handler - which is 
overriden by a specialized XML Generator in some cases ...

Within my controller I do have something like this:

__PACKAGE__-config(
  'default'   = 'text/html',
  'stash_key' = 'rest',
  'map'   = {
'text/html' = [ 'View', 'TT', ],
'text/xml'  = [ 'View', 'XML', ],
#'text/xml'   = 'XML::Simple',
  }
);
-

I cannot figure out how to set XML::Simple as default handler and override this 
for certain URLs within the same controller whilst for other URLs within the 
same controller the default XML-Handler is used 

Is this possible at all?
How can I do this?

Thanks in advance
Johannes
-- 
NEU: FreePhone 3-fach-Flat mit kostenlosem Smartphone!  

Jetzt informieren: http://mobile.1und1.de/?ac=OM.PW.PW003K20328T7073a

___
List: Catalyst@lists.scsys.co.uk
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
Dev site: http://dev.catalyst.perl.org/


Re: [Catalyst] (no subject)

2012-02-28 Thread Kieren Diment


On 29/02/2012, at 12:03 AM, Johannes Kilian wrote:

 Hi,
 
 I've got following question concerning views: I want to provide an XML-View 
 which provides standard XML-Files using XML::Simple in almost any case. 
 Just in some cases I want to provide specialized XML-Files.
 
 In other words: I want to use XML::Simple as default handler - which is 
 overriden by a specialized XML Generator in some cases ...
 
 Within my controller I do have something like this:
 
 __PACKAGE__-config(
  'default'   = 'text/html',
  'stash_key' = 'rest',
  'map'   = {
'text/html' = [ 'View', 'TT', ],
'text/xml'  = [ 'View', 'XML', ],
#'text/xml'   = 'XML::Simple',
  }
 );
 -
 
 I cannot figure out how to set XML::Simple as default handler and override 
 this for certain URLs within the same controller whilst for other URLs within 
 the same controller the default XML-Handler is used 
 
 Is this possible at all?
 How can I do this?

I'd either use Catalyst::View;:Download::XML, or steal from it to create your 
own view: https://metacpan.org/module/Catalyst::View::Download::XML
___
List: Catalyst@lists.scsys.co.uk
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
Dev site: http://dev.catalyst.perl.org/


Re: [Catalyst] (no subject)

2012-02-28 Thread Tomas Doran

On 28 Feb 2012, at 13:03, Johannes Kilian wrote:

 Hi,
 
 I've got following question concerning views: I want to provide an XML-View 
 which provides standard XML-Files using XML::Simple in almost any case. 
 Just in some cases I want to provide specialized XML-Files.

Erm, why are you not just sending your already rendered standard XML file?

I.e. what is the point in using XML::Simple at all here - why not just set the 
body?

 In other words: I want to use XML::Simple as default handler - which is 
 overriden by a specialized XML Generator in some cases ...
 
 Within my controller I do have something like this:
 
 __PACKAGE__-config(
  'default'   = 'text/html',
  'stash_key' = 'rest',
  'map'   = {
'text/html' = [ 'View', 'TT', ],
'text/xml'  = [ 'View', 'XML', ],
#'text/xml'   = 'XML::Simple',
  }
 );
 -
 
 I cannot figure out how to set XML::Simple as default handler and override 
 this for certain URLs within the same controller whilst for other URLs within 
 the same controller the default XML-Handler is used 
 
 Is this possible at all?
 How can I do this?

Erm, what do you mean by 'XML handler' here?

XML::Simple will serialise whatever data structure you give it (as per any of 
the other serialisation methods!).. So just give it a different data structure 
in the different cases?

Alternatively - if you really want to _totally_ override it, just set the 
response body manually, and the Controller::REST end action will leave it 
alone..

Cheers
t0m


___
List: Catalyst@lists.scsys.co.uk
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
Dev site: http://dev.catalyst.perl.org/


[Catalyst] (no subject)

2010-11-18 Thread pmedes_2000
http://cityboss3c.com.tw/rXtsm.html


  

___
List: Catalyst@lists.scsys.co.uk
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
Dev site: http://dev.catalyst.perl.org/


[Catalyst] (no subject)

2010-11-16 Thread Philip Medes
http://gite-bzh.com/here.php


  ___
List: Catalyst@lists.scsys.co.uk
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
Dev site: http://dev.catalyst.perl.org/


[Catalyst] (no subject)

2010-11-15 Thread Philip Medes
http://www.confraternitediocesicatania.it/here.php


  ___
List: Catalyst@lists.scsys.co.uk
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
Dev site: http://dev.catalyst.perl.org/


[Catalyst] (no subject)

2010-11-12 Thread Philip Medes
http://sites.google.com/site/mgwlewowywiwq/fmba7m


  ___
List: Catalyst@lists.scsys.co.uk
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
Dev site: http://dev.catalyst.perl.org/


[Catalyst] (no subject)

2010-09-11 Thread Philip Medes
http://gakutuvo.tripod.com/


  

___
List: Catalyst@lists.scsys.co.uk
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
Dev site: http://dev.catalyst.perl.org/


Re: Fw: high school reunion [Catalyst] (no subject)

2008-05-05 Thread Matt S Trout
On Mon, May 05, 2008 at 11:19:34AM +1930, Alejandro Imass wrote:
 Too bad one cannot unsubscribe them from the Internet altogether.

Although breaking into their DSL router, reflashing the firmware with
all zeros and then rebooting it is probably close enough.

Not that I'd advocate such a thing, of course.

-- 
  Matt S Trout   Need help with your Catalyst or DBIx::Class project?
   Technical Directorhttp://www.shadowcat.co.uk/catalyst/
 Shadowcat Systems Ltd.  Want a managed development or deployment platform?
http://chainsawblues.vox.com/http://www.shadowcat.co.uk/servers/

___
List: Catalyst@lists.scsys.co.uk
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
Dev site: http://dev.catalyst.perl.org/


Re: Fw: high school reunion [Catalyst] (no subject)

2008-05-04 Thread Alejandro Imass
Too bad one cannot unsubscribe them from the Internet altogether.

On Sun, May 4, 2008 at 5:25 PM, Matt S Trout [EMAIL PROTECTED] wrote:
 Unsubscribed and banned. Bai.

  --
   Matt S Trout   Need help with your Catalyst or DBIx::Class project?
Technical Directorhttp://www.shadowcat.co.uk/catalyst/
   Shadowcat Systems Ltd.  Want a managed development or deployment platform?
  http://chainsawblues.vox.com/http://www.shadowcat.co.uk/servers/



  ___
  List: Catalyst@lists.scsys.co.uk
  Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
  Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
  Dev site: http://dev.catalyst.perl.org/


___
List: Catalyst@lists.scsys.co.uk
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
Dev site: http://dev.catalyst.perl.org/


Re: Fw: high school reunion [Catalyst] (no subject)

2008-05-03 Thread Matt S Trout
Unsubscribed and banned. Bai.

-- 
  Matt S Trout   Need help with your Catalyst or DBIx::Class project?
   Technical Directorhttp://www.shadowcat.co.uk/catalyst/
 Shadowcat Systems Ltd.  Want a managed development or deployment platform?
http://chainsawblues.vox.com/http://www.shadowcat.co.uk/servers/

___
List: Catalyst@lists.scsys.co.uk
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
Dev site: http://dev.catalyst.perl.org/


[Catalyst] (no subject)

2008-05-02 Thread rik knox




   
Yahoo! For Good. Give and get cool things for free, reduce waste and help our planet. Plus find 

hidden Yahoo! treasure

___
List: Catalyst@lists.scsys.co.uk
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
Dev site: http://dev.catalyst.perl.org/


[Catalyst] (no subject)

2008-05-02 Thread rik knox
I''AM RIK KNOX WAS AT WEST DENTON HIGH SCHOOL NORTH HOUSE MR LAWRENCE WAS MY FORM TEACHER, WANT TO HOOK UP WITH ANYONE YES ANYONE WHO WAS AT SCHOOL SAME TIME .LOOKING FOR ANYONE FROM WEST DENTON HIGH SCHOOL 1976 PLEASE EMAIL ME 
I HAVE BEEN LIVING IN SOUTH AFRICA AND JUST RETURNED TO NORTH EAST UK NEWCASTLE UPON TYNE 
EMAIL ME AT 
[EMAIL PROTECTED]
HOPE TO HEAR FROM YOU ALL

  
Sent from Yahoo! Mail.

A Smarter Email.

___
List: Catalyst@lists.scsys.co.uk
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
Dev site: http://dev.catalyst.perl.org/


Fw: high school reunion [Catalyst] (no subject)

2008-05-02 Thread rik knox
--- On Sat, 3/5/08, rik knox [EMAIL PROTECTED] wrote:
From: rik knox [EMAIL PROTECTED]Subject: [Catalyst] (no subject)To: Catalyst@lists.scsys.co.ukDate: Saturday, 3 May, 2008, 12:54 AM





I''AM RIK KNOX WAS AT WEST DENTON HIGH SCHOOL NORTH HOUSE MR LAWRENCE WAS MY FORM TEACHER, WANT TO HOOK UP WITH ANYONE YES ANYONE WHO WAS AT SCHOOL SAME TIME .LOOKING FOR ANYONE FROM WEST DENTON HIGH SCHOOL 1976 PLEASE EMAIL ME 
I HAVE BEEN LIVING IN SOUTH AFRICA AND JUST RETURNED TO NORTH EAST UK NEWCASTLE UPON TYNE 
EMAIL ME AT 
[EMAIL PROTECTED]
HOPE TO HEAR FROM YOU ALL


Sent from Yahoo! Mail. A Smarter Email. ___
List: Catalyst@lists.scsys.co.uk
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
Dev site: http://dev.catalyst.perl.org/
  
Sent from Yahoo! Mail.

A Smarter Email.

___
List: Catalyst@lists.scsys.co.uk
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
Dev site: http://dev.catalyst.perl.org/


Re: Fw: high school reunion [Catalyst] (no subject)

2008-05-02 Thread Jonathan Rockway
* On Fri, May 02 2008, rik knox wrote:
 I''AM RIK KNOX WAS AT WEST DENTON HIGH SCHOOL NORTH HOUSE MR LAWRENCE WAS
 MY FORM TEACHER, WANT TO HOOK UP WITH ANYONE YES ANYONE WHO WAS AT SCHOOL
 SAME TIME .LOOKING FOR ANYONE FROM WEST DENTON HIGH SCHOOL 1976 PLEASE
 EMAIL ME

What.  The.  Fuck.

-- 
print just = another = perl = hacker = if $,=$

___
List: Catalyst@lists.scsys.co.uk
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
Dev site: http://dev.catalyst.perl.org/


Re: Fw: high school reunion [Catalyst] (no subject)

2008-05-02 Thread Devin Austin
I second that whiskey tango foxtrot.

On Fri, May 2, 2008 at 7:56 PM, Jonathan Rockway [EMAIL PROTECTED] wrote:

 * On Fri, May 02 2008, rik knox wrote:
  I''AM RIK KNOX WAS AT WEST DENTON HIGH SCHOOL NORTH HOUSE MR
 LAWRENCE WAS
  MY FORM TEACHER, WANT TO HOOK UP WITH ANYONE YES ANYONE WHO WAS AT
 SCHOOL
  SAME TIME .LOOKING FOR ANYONE FROM WEST DENTON HIGH SCHOOL 1976
 PLEASE
  EMAIL ME

 What.  The.  Fuck.

 --
 print just = another = perl = hacker = if $,=$

 ___
 List: Catalyst@lists.scsys.co.uk
 Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
 Searchable archive:
 http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
 Dev site: http://dev.catalyst.perl.org/




-- 
Devin Austin
Founder and Head Developer of CodedRight.net
http://www.codedright.net - get your web app Coded Right
http://www.dreamhost.com/r.cgi?326568/hosting.html - Host with DreamHost!
___
List: Catalyst@lists.scsys.co.uk
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
Dev site: http://dev.catalyst.perl.org/


[Catalyst] (no subject)

2007-11-27 Thread 伟 陈
http://hiphotos.baidu.com/weimade/pic/item/3aac6df05986aace7831aac5.jpg
 
the picture show some infomation of install error
 
anybody who can tell me how to deal with it? 
 
i am a chinese guy..and my english is poor

i really need help


  ___ 
雅虎邮箱,终生伙伴! 
http://mail.yahoo.com.cn/___
List: Catalyst@lists.scsys.co.uk
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/[EMAIL PROTECTED]/
Dev site: http://dev.catalyst.perl.org/


Re: [Catalyst] (no subject)

2007-11-27 Thread Chisel Wright
On Tue, Nov 27, 2007 at 06:50:07PM +0800, 伟 陈 wrote:
i am a chinese guy..and my english is poor

So is your ability to read replies to your own posts it seems.

-- 
Chisel Wright
e: [EMAIL PROTECTED]
w: http://www.herlpacker.co.uk/

  I'm demented in a good way!

___
List: Catalyst@lists.scsys.co.uk
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/[EMAIL PROTECTED]/
Dev site: http://dev.catalyst.perl.org/