The 158 Exhibits Attached to Novell's Response to MS's Cross Motion for SJ in Antitrust Suit

 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News The 158 Exhibits Attached to Novell's Response to MS's Cross Motion for SJ in Antitrust Suit
# 1  
Old 12-01-2009
The 158 Exhibits Attached to Novell's Response to MS's Cross Motion for SJ in Antitrust Suit

And now, as promised and thanks to your donations, we have the 158 exhibits, attached to Novell's response [PDF] to Microsoft's cross motion for summary judgment in the WordPerfect antitrust litigation. This is the other side of that story.

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
URI::Fetch::Response(3pm)				User Contributed Perl Documentation				 URI::Fetch::Response(3pm)

NAME
URI::Fetch::Response - Feed response for URI::Fetch SYNOPSIS
use URI::Fetch; my $res = URI::Fetch->fetch('http://example.com/atom.xml') or die URI::Fetch->errstr; print $res->content; DESCRIPTION
URI::Fetch::Response encapsulates the response from fetching a feed using URI::Fetch. USAGE
$res->content The contents of the feed. $res->uri The URI of the feed. If the feed was moved, this reflects the new URI; otherwise, it will match the URI that you passed to fetch. $res->etag The ETag that was returned in the response, if any. $res->last_modified The Last-Modified date (in seconds since the epoch) that was returned in the response, if any. $res->status The status of the response, which will match one of the following enumerations: o URI::Fetch::URI_OK() o URI::Fetch::URI_MOVED_PERMANENTLY() o URI::Fetch::URI_GONE() o URI::Fetch::URI_NOT_MODIFIED() $res->http_status The HTTP status code from the response. $res->http_response The HTTP::Response object returned from the fetch. $res->is_success $res->is_redirect $res->is_error Wrappers around the "$res->response" methods of the same name, for convenience. $res->content_type The Content-Type header from the response. AUTHOR &; COPYRIGHT Please see the URI::Fetch manpage for author, copyright, and license information. perl v5.12.4 2011-08-29 URI::Fetch::Response(3pm)