Sponsored Content
Full Discussion: I want to unregister
Contact Us Forum Support Area for Unregistered Users & Account Problems I want to unregister Post 302175977 by era on Monday 17th of March 2008 03:05:50 AM
Old 03-17-2008
Please stop sending annoying "We miss you" notes

If you could PRETTY PLEASE stop sending these annoying reminder messages, the pressure to want to unregister would be much less.
Subject: era! We miss you at The UNIX Forums!

Hello, era!
We've noticed that you've not been active on The UNIX Forums for quite some time now, and we miss you!

Could we not tempt you back?

If you don't remember your password, you can request it here: The UNIX Forums - Lost Password Recovery Form
We hope to see you soon

Kindest Regards
The UNIX Forums
https://www.unix.com/
These annoying notes are clearly automatically generated, and probably don't reflect any real desire to have me back (I think I only ever posted two irate messages about broken links). Making matters worse, nobody seems to be reading the replies I have been sending to them, asking that you stop sending them.

These notes are spam, plain and simple. Please stop sending them.
era
 
TM::ResourceAble(3pm)					User Contributed Perl Documentation				     TM::ResourceAble(3pm)

NAME
TM::ResourceAble - Topic Maps, abstract trait for resource-backed Topic Maps SYNOPSIS
package MyNiftyMap; use TM; use base qw(TM); use Class::Trait ('TM::ResourceAble'); 1; my $tm = new MyNiftyMap; $tm->url ('http://nirvana/'); warn $tm->mtime; # or at runtime even: use TM; Class::Trait->apply ('TM', qw(TM::ResourceAble)); my $tm = new TM; warn $tm->mtime; DESCRIPTION
This traits adds methods to provide the role resource to a map. That allows a map to be associated with a resource which is addressed by a URL (actually a URI for that matter). Predefined URIs The following resources, actually their URIs are predefined: "io:stdin" Symbolizes the UNIX STDIN file descriptor. The resource is all text content coming from this file. "io:stdout" Symbolizes the UNIX STDOUT file descriptor. "null:" Symbolizes a resource which never delivers any content and which can consume any content silently (like "/dev/null" under UNIX). Predefined URI Methods "inline" An inlined resource is a resource which contains all content as part of the URI. Currently the TM content is to be written in AsTMa=. Example: inlined:donald (duck) INTERFACE
Methods url $url = $tm->url $tm->url ($url) Once an object of this class is instantiated it keeps the URL of the resource to which it is associated. With this method you can retrieve and set that. No special further action is taken otherwise. mtime $time = $tm->mtime This function returns the UNIX time when the resource has been modified last. 0 is returned if the result cannot be determined. All methods from LWP are supported. Special resources are treated as follows: "null:" always has mtime 0 "io:stdin" always has an mtime 1 second in the future. The idea is that STDIN always has new content. "io:stdout" always has mtime 0. The idea is that STDOUT never changes by itself. SEE ALSO
TM AUTHOR INFORMATION
Copyright 200[67], Robert Barta <drrho@cpan.org>, All rights reserved. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. http://www.perl.com/perl/misc/Artistic.html perl v5.10.1 2010-08-04 TM::ResourceAble(3pm)
All times are GMT -4. The time now is 01:50 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy