Adobe Reader 8.1.3 (Default branch)


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

Image The 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 Restricted Changes:
Critical security fixes for potential crashes and remote code execution, reported as CVE-2008-2992, CVE-2008-2549, CVE-2008-4812, CVE-2008-4813, CVE-2008-4817, CVE-2008-4816, CVE-2008-4814, and CVE-2008-4815, were made. Several other issues were fixed. Image

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
Plucene::Index::Reader(3pm)				User Contributed Perl Documentation			       Plucene::Index::Reader(3pm)

NAME
Plucene::Index::Reader - Abstract class for accessing an index DESCRIPTION
IndexReader is an abstract class, providing an interface for accessing an index. Search of an index is done entirely through this abstract interface, so that any subclass which implements it is searchable. Concrete subclasses of IndexReader are usually constructed with a call to the static method "open". For efficiency, in this API documents are often referred to via document numbers, non-negative integers which each name a unique document in the index. These document numbers are ephemeral--they may change as documents are added to and deleted from an index. Clients should thus not rely on a given document having the same number between sessions. METHODS
new my $reader = Plucene::Index::Reader->new($dir_name); This will create a new Plucene::Index::Reader with the passed in directory. open # If there is only one segment my Plucene::Index::SegmentReader $seg_read = $reader->open; # If there are many segments my Plucene::Index::SegmentsReader $seg_read = $reader->open; Returns an IndexReader reading the index in the given Directory. last_modified my $last_modified = Plucene::Index::Reader->last_modified($directory); index_exists if (Plucene::Index::Reader->index_exists($directory)){ ... } is_locked if (Plucene::Index::Reader->is_locked($directory)){ ... } delete $reader->delete($doc); delete_term $reader->delete_term($term); This will delete all the documents which contain the passed term. close $reader->close; unlock $reader->unlock($directory); num_docs / max_doc / document / is_deleted / norms / terms / doc_freq / term_docs / term_positions / _do_delete / _do_close These must be defined in a subclass perl v5.12.4 2011-08-14 Plucene::Index::Reader(3pm)