Adobe Reader 8.1.2 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Adobe Reader 8.1.2 (Default branch)
# 1  
Old 02-07-2008
Adobe Reader 8.1.2 (Default branch)

ImageThe free Adobe Reader (formerly Adobe Acrobat Reader) allows you to view, navigate, and print PDF files across all major computing platforms. Adobe Reader is the free viewing companion to Adobe Acrobat and to Acrobat Capture software.License: Free To Use But RestrictedChanges:
This update addresses a number of customerworkflow issues and security vulnerabilities whileproviding more stability.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. Solaris

How to install Adobe reader in Solaris 10

Hello All, Can anybody help me show the way how to install the Adobe reader in Solaris 10? Thanks in advance. Best Regards, Paing (7 Replies)
Discussion started by: aungyepaing
7 Replies

2. Solaris

Replacing Gnome PDF with Adobe Reader

I'm attempting to replace gnome pdf with Acrobat Reader on a server and make Acrobat Reader the default program used to open .pdf files. I've been able to make the changes to individual users but don't want to have to edit each individuals profile. Is there a way, within Solaris 10, to make a... (2 Replies)
Discussion started by: goose25
2 Replies

3. Linux

Adobe Reader in RHEL4

Hi, Anyone knows if RHEL4 is packaged with Adobe Acrobat Reader? I need Adobe Reader in linux to open PDF file. There's a download on adobe site but I think that requires some dollars to avail the software. May be if RHEL4 has Adobe Reader package with it, there is no need to spend dollars. ... (5 Replies)
Discussion started by: etcpasswd
5 Replies
Login or Register to Ask a Question
Graph::Reader(3pm)					User Contributed Perl Documentation					Graph::Reader(3pm)

NAME
Graph::Reader - base class for Graph file format readers SYNOPSIS
package Graph::Reader::MyFormat; use Graph::Reader; use vars qw(@ISA); @ISA = qw(Graph::Reader); sub _read_graph { my ($self, $graph, $FILE) = @_; # read $FILE and populate $graph } DESCRIPTION
Graph::Reader is a base class for Graph file format readers. A particular subclass of Graph::Reader will handle a specific file format, and generate a Graph, represented using Jarkko Hietaniemi's Graph class. You should never create an instance of this class yourself, it is only meant for subclassing. If you try to create an instance of Graph::Reader, the constructor will throw an exception. METHODS
new() Constructor - generate a new reader instance. This is a virtual method, or whatever the correct lingo is. You're not meant to call this on the base class, it is inherited by the subclasses. Ie if you do something like: $reader = Graph::Reader->new(); It will throw an exception. read_graph() Read a graph from the specified file: $graph = $reader->read_graph($file); The $file argument can either be a filename, or a filehandle for a previously opened file. SUBCLASSING
To create your own graph format reader, create a module which subclasses Graph::Reader. For example, suppose DGF is a directed graph format - create a Graph::Reader::DGF module, with the following structure: package Graph::Reader::DGF; use Graph::Reader; use vars qw(@ISA); @ISA = qw(Graph::Reader); sub _read_graph { my $self = shift; my $graph = shift; my $FILE = shift; while (<$FILE>) { } return 1; } 1; Note the leading underscore on the _read_graph() method. The base class provides the public method, and invokes the private method which you're expected to provide, as above. If you want to perform additional initialisation at construction time, you can provide an _init() method, which will be invoked by the base class's constructor. You should invoke the superclass's initialiser as well, as follows: sub _init { my $self = shift; $self->SUPER::_init(); # your initialisation here } Someone can then use your class as follows: use Graph::Reader::DGF; $reader = Graph::Reader::DGF->new(); $graph = $reader->read_graph('foo.dgf'); SEE ALSO
Graph Jarkko Hietaniemi's modules for representing directed graphs, available from CPAN under modules/by-module/Graph/ Algorithms in Perl This O'Reilly book has a chapter on directed graphs, which is based around Jarkko's modules. Graph::Reader::XML A simple subclass of this class for reading a simple XML format for directed graphs. Graph::Writer A baseclass for Graph file format writers. AUTHOR
Neil Bowers <neil@bowers.com> COPYRIGHT
Copyright (c) 2001-2012, Neil Bowers. All rights reserved. Copyright (c) 2001, Canon Research Centre Europe. All rights reserved. This script is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2012-02-14 Graph::Reader(3pm)