=Ver: 2.0 ##---------------------------------------- =Pkg: aspell-pt 0.50 15.suse13.1.lc i586 =Sum: Portuguese dictionaries for Aspell +Des: Provides the word list/dictionaries for the following: European Portuguese, Brazilian Portuguese -Des: ##---------------------------------------- =Pkg: LONCAPA-prerequisites 1 23.1.suse13.1.lc i586 =Sum: Stub rpm to set up LONCAPA dependencies +Des: LONCAPA-prerequisites configures a system to run LON-CAPA. -Des: ##---------------------------------------- =Pkg: LONCAPA-prerequisites 1 25.suse13.1.lc i586 =Sum: Stub rpm to set up LONCAPA dependencies +Des: LONCAPA-prerequisites configures a system to run LON-CAPA. -Des: ##---------------------------------------- =Pkg: perl-Authen-Krb5 1.4 1.0.suse13.1.lc i586 =Sum: Authen-Krb5 - Perl extension for Kerberos 5 +Des: Authen::Krb5 is an object oriented interface to the Kerberos 5 API. Both the implementation and documentation are nowhere near complete, and may require previous experience with Kerberos 5 programming. Most of the functions here are documented in detail in the Kerberos 5 API documentation. -Des: ##---------------------------------------- =Pkg: perl-Authen-PAM 0.16 1.0.suse13.1.lc i586 =Sum: Authen-PAM - Perl interface to PAM library +Des: The I module provides a Perl interface to the I library. The only difference with the standard PAM interface is that instead of passing a pam_conv struct which has an additional context parameter appdata_ptr, you must only give an address to a conversation function written in Perl (see below). If you want to pass a NULL pointer as a value of the $user in pam_start use undef or the two-argument version. Both in the two and the three-argument versions of pam_start a default conversation function is used (Authen::PAM::pam_default_conv). The $flags argument is optional for all functions which use it except for pam_setcred. The $pam_status argument is also optional for pam_end function. Both of these arguments will be set to 0 if not given. The names of some constants from the PAM library have changed over the time. You can use any of the known names for a given constant although it is advisable to use the latest one. When this module supports some of the additional features of the PAM library (e.g. pam_fail_delay) then the corresponding HAVE_PAM_XXX constant will have a value 1 otherwise it will return 0. For compatibility with older PAM libraries I have added the constant HAVE_PAM_ENV_FUNCTIONS which is true if your PAM library has the functions for handling environment variables (pam_putenv, pam_getenv, pam_getenvlist). -Des: ##---------------------------------------- =Pkg: perl-Crypt-Eksblowfish 0.009 1.0.suse13.1.lc i586 =Sum: Crypt-Eksblowfish - Perl module +Des: None. -Des: ##---------------------------------------- =Pkg: perl-Crypt-IDEA 1.10 1.0.suse13.1.lc i586 =Sum: Crypt-IDEA - Perl module +Des: None. -Des: ##---------------------------------------- =Pkg: perl-Digest-SHA 5.96 1.0.suse13.1.lc i586 =Sum: Digest-SHA - Perl extension for SHA-1/224/256/384/512 +Des: Digest::SHA is written in C for speed. If your platform lacks a C compiler, you can install the functionally equivalent (but much slower) the Digest::SHA::PurePerl manpage module. The programming interface is easy to use: it's the same one found in CPAN's the Digest manpage module. So, if your applications currently use the Digest::MD5 manpage and you'd prefer the stronger security of SHA, it's a simple matter to convert them. The interface provides two ways to calculate digests: all-at-once, or in stages. To illustrate, the following short program computes the SHA-256 digest of "hello world" using each approach: use Digest::SHA qw(sha256_hex); $data = "hello world"; @frags = split(//, $data); $digest1 = sha256_hex($data); $state = Digest::SHA->new(256); for (@frags) { $state->add($_) } $digest2 = $state->hexdigest; print $digest1 eq $digest2 ? "whew!\n" : "oops!\n"; To calculate the digest of an n-bit message where *n* is not a multiple of 8, use the *add_bits()* method. For example, consider the 446-bit message consisting of the bit-string "110" repeated 148 times, followed by "11". Here's how to display its SHA-1 digest: use Digest::SHA; $bits = "110" x 148 . "11"; $sha = Digest::SHA->new(1)->add_bits($bits); print $sha->hexdigest, "\n"; Note that for larger bit-strings, it's more efficient to use the two-argument version *add_bits($data, $nbits)*, where *$data* is in the customary packed binary format used for Perl strings. The module also lets you save intermediate SHA states to a string. The *getstate()* method generates portable, human-readable text describing the current state of computation. You can subsequently restore that state with *putstate()* to resume where the calculation left off. To see what a state description looks like, just run the following: use Digest::SHA; print Digest::SHA->new->add("Shaw" x 1962)->getstate; As an added convenience, the Digest::SHA module offers routines to calculate keyed hashes using the HMAC-SHA-1/224/256/384/512 algorithms. These services exist in functional form only, and mimic the style and behavior of the *sha()*, *sha_hex()*, and *sha_base64()* functions. use Digest::SHA qw(hmac_sha256_hex); print hmac_sha256_hex("Hi There", chr(0x0b) x 32), "\n"; -Des: ##---------------------------------------- =Pkg: perl-HTML-Parser_loncapa 3.69 1.0.suse13.1.lc i586 =Sum: HTML-Parser - HTML parser class +Des: Objects of the C class will recognize markup and separate it from plain text (alias data content) in HTML documents. As different kinds of markup and text are recognized, the corresponding event handlers are invoked. C is not a generic SGML parser. We have tried to make it able to deal with the HTML that is actually "out there", and it normally parses as closely as possible to the way the popular web browsers do it instead of strictly following one of the many HTML specifications from W3C. Where there is disagreement, there is often an option that you can enable to get the official behaviour. The document to be parsed may be supplied in arbitrary chunks. This makes on-the-fly parsing as documents are received from the network possible. If event driven parsing does not feel right for your application, you might want to use C. This is an C subclass that allows a more conventional program structure. -Des: ##---------------------------------------- =Pkg: perl-Math-Cephes 0.48 1.0.suse13.1.lc i586 =Sum: Math-Cephes - Perl interface to the math cephes library +Des: None. -Des: ##---------------------------------------- =Pkg: perl-Math-Pari 2.010808 1.1 i586 =Sum: Perl interface to PARI +Des: This package is a Perl interface to famous library PARI for numerical/scientific/number-theoretic calculations. It allows use of most PARI functions as Perl functions, and (almost) seamless merging of PARI and Perl data. -Des: ##---------------------------------------- =Pkg: perl-Math-Random 0.71 1.0.suse13.1.lc i586 =Sum: Math-Random - Random Number Generators +Des: B is a B port of the B version of B, which is a suite of routines for generating random deviates. See L<"RANDLIB"> for more information. This port supports all of the distributions from which the B and B versions generate deviates. The major functionalities that are excluded are the multiple generators/splitting facility and antithetic random number generation. These facilities, along with some of the distributions which I included, are probably not of interest except to the very sophisticated user. If there is sufficient interest, the excluded facilities will be included in a future release. The code to perform the excluded facilities is available as B in B and B source. -Des: ##---------------------------------------- =Pkg: perl-RTF-HTMLConverter 0.05 1.0.suse13.1.lc i586 =Sum: RTF-HTMLConverter - Converter from RTF format to HTML. +Des: RTF::HTMLConverter is a high-level RTF to HTML format converter. It is based on the low-level RTF parser module RTF::Lexer. Additionally, it requires the W3C's DOM implementation and it is known to work with either XML::DOM or XML::GDOME. -Des: ##---------------------------------------- =Pkg: perl-Safe-Hole 0.13 1.0.suse13.1.lc i586 =Sum: Safe-Hole - Perl module +Des: None. -Des: ##---------------------------------------- =Pkg: perl-String-CRC32 1.4 1.0.suse13.1.lc i586 =Sum: String-CRC32 - Perl module +Des: None. -Des: ##---------------------------------------- =Pkg: perl-String-Similarity 1.04 1.0.suse13.1.lc i586 =Sum: String-Similarity - calculate the similarity of two strings +Des: =over 4 -Des: ##---------------------------------------- =Pkg: perl-Text-Aspell 0.09 1.0.suse13.1.lc i586 =Sum: Text-Aspell - Perl interface to the GNU Aspell library +Des: This module provides a Perl interface to the GNU Aspell library. This module is to meet the need of looking up many words, one at a time, in a single session, such as spell-checking a document in memory. The GNU C interface is described at: http://aspell.net/man-html/Through-the-C-API.html#Through-the-C-API It's worth looking over the way config and speller (manager) objects are created when using the Aspell C API as some of that is hidden in the Text::Aspell module. For example, with Text::Aspell you do not have to explicitly create a speller object. The speller (manager) object is created automatically the first time you call suggest() or check(). Note also that once the speller object is created some (all?) config options cannot be changed. For example, setting configuration options such as "lang" are what determine what dictionary Aspell will use. Once the speller object is created that dictionary will be used. I.e. setting "lang" after the speller object is created will have no effect. -Des: ##---------------------------------------- =Pkg: R-alr3 1.1.12 0.suse13.1.lc i586 =Sum: Methods and data to accompany Applied Linear Regression 3rd edition +Des: R package: This library is a companion to the textbook S. Weisberg (2005), "Applied Linear Regression," 3rd edition, Wiley. It includes all the data sets discussed in the book (except one), and several few functions that are tailored to the methods discussed in the book. -Des: ##---------------------------------------- =Pkg: R-car 1.2.16 0.suse13.1.lc i586 =Sum: Companion to Applied Regression +Des: R package: This package accompanies J. Fox, An R and S-PLUS Companion to Applied Regression, Sage, 2002. The package contains mostly functions for applied regression, linear models, and generalized linear models, with an emphasis on regression diagnostics, particularly graphical diagnostic methods. There are also some utility functions. With some exceptions, I have tried not to duplicate capabilities in the basic distribution of R, nor in widely used packages. Where relevant, the functions in car are consistent with na.action = na.omit or na.exclude. -Des: ##---------------------------------------- =Pkg: R-Hmisc 3.6.1 0.suse13.1.lc i586 =Sum: Library of functions for data analysis, variable clustering and various utilities +Des: R package: The Hmisc library contains many functions useful for data analysis, high-level graphics, utility operations, functions for computing sample size and power, importing datasets, imputing missing values, advanced table making, variable clustering, character string manipulation, conversion of S objects to LaTeX code, and recoding variables. -Des: ##---------------------------------------- =Pkg: R-leaps 2.9 0.suse13.1.lc i586 =Sum: Regression subset selection including exhaustive search +Des: R package: Regression subset selection including exhaustive search -Des: ##---------------------------------------- =Pkg: R-lmtest 0.9.26 0.suse13.1.lc i586 =Sum: Testing Linear Regression Models +Des: R package: A collection of tests, data sets and examples for diagnostic checking in linear regression models. -Des: ##---------------------------------------- =Pkg: R-phpSerialize 0.8.1 0.suse13.1.lc i586 =Sum: Serializes R objects for import by PHP into an associative array. +Des: R package: Serializes R objects for import by PHP into an associative array. Can be used to build interactive web pages with R. -Des: ##---------------------------------------- =Pkg: R-qAnalyst 0.6.0 0.suse13.1.lc i586 =Sum: Control Charts, Capability and Distribution Identification +Des: R package: Control charts for variables and attributes according to Douglas C. Montgomery Introduction to Statistical Quality Control book, Capability analysis for normal and non - normal distributions and Distributions Identification -Des: ##---------------------------------------- =Pkg: R-quadprog 1.4.12 0.suse13.1.lc i586 =Sum: Functions to solve Quadratic Programming Problems. +Des: R package: Library of routines and documentation for solving quadratic programming problems. -Des: ##---------------------------------------- =Pkg: R-SuppDists 1.1.8 0.suse13.1.lc i586 =Sum: Ten Supplementary distributions and two Random Number Generators +Des: R package: Ten distributions supplementing those built into R. Inverse Gauss, Kruskal-Wallis, Kendall's Tau, Friedman's chi squared, Spearman's rho, maximum F ratio, the Pearson product moment correlation coefficiant, Johnson distributions, normal scores and generalized hypergeometric distributions. In addition two random number generators of George Marsaglia are included. -Des: ##---------------------------------------- =Pkg: R-zoo 1.7.6 0.suse13.1.lc i586 =Sum: Z's ordered observations +Des: R package: An S3 class with methods for totally ordered indexed observations. It is particularly aimed at irregular time series of numeric vectors/matrices and factors. zoo's key design goals are independence of a particular index/date/time class and consistency with ts and base R by providing methods to extend standard generics. -Des: ##---------------------------------------- =Pkg: perl-Authen-Captcha 1.023 1.0.suse13.1.lc noarch =Sum: Authen-Captcha - Perl extension for creating captcha's to verify the human element in transactions. +Des: use Authen::Captcha; my $captcha = Authen::Captcha->new(); $captcha->data_folder('/some/folder'); $captcha->output_folder('/some/http/folder'); my $captcha = Authen::Captcha->new( data_folder => '/some/folder', output_folder => '/some/http/folder', ); my $md5sum = $captcha->generate_code($number_of_characters); my $results = $captcha->check_code($code,$md5sum); -Des: ##---------------------------------------- =Pkg: perl-Cache-Memcached 1.30 1.0.suse13.1.lc noarch =Sum: Cache-Memcached - client library for memcached (memory cache daemon) +Des: This is the Perl API for memcached, a distributed memory cache daemon. More information is available at: http://www.danga.com/memcached/ -Des: ##---------------------------------------- =Pkg: perl-CAM-PDF 1.58 1.0.suse13.1.lc noarch =Sum: CAM-PDF - Perl module +Des: None. -Des: ##---------------------------------------- =Pkg: perl-Captcha-reCAPTCHA 0.97 1.0.suse13.1.lc noarch =Sum: Captcha-reCAPTCHA - A Perl implementation of the reCAPTCHA API +Des: reCAPTCHA is a hybrid mechanical turk and captcha that allows visitors who complete the captcha to assist in the digitization of books. From L: reCAPTCHA improves the process of digitizing books by sending words that cannot be read by computers to the Web in the form of CAPTCHAs for humans to decipher. More specifically, each word that cannot be read correctly by OCR is placed on an image and used as a CAPTCHA. This is possible because most OCR programs alert you when a word cannot be read correctly. This Perl implementation is modelled on the PHP interface that can be found here: L To use reCAPTCHA you need to register your site here: L -Des: ##---------------------------------------- =Pkg: perl-Class-Loader 2.03 1.0.suse13.1.lc noarch =Sum: Class-Loader - Load modules and create objects on demand. +Des: Certain applications like to defer the decision to use a particular module till runtime. This is possible in perl, and is a useful trick in situations where the type of data is not known at compile time and the application doesn't wish to pre-compile modules to handle all types of data it can work with. Loading modules at runtime can also provide flexible interfaces for perl modules. Modules can let the programmer decide what modules will be used by it instead of hard-coding their names. Class::Loader is an inheritable class that provides a method, _load(), to load a module from disk and construct an object by calling its constructor. It also provides a way to map modules names and associated metadata with symbolic names that can be used in place of module names at _load(). -Des: ##---------------------------------------- =Pkg: perl-Class-Mix 0.005 1.0.suse13.1.lc noarch =Sum: Class-Mix - Perl module +Des: None. -Des: ##---------------------------------------- =Pkg: perl-Class-Singleton 1.4 1.0.suse13.1.lc noarch =Sum: Class-Singleton - Base class for creating singleton objects +Des: This is the C module. A Singleton describes an object class that can have only one instance in any system. An example of a Singleton might be a print spooler or system registry. This module implements a Singleton class from which other classes can be derived. By itself, the C module does very little other than manage the instantiation of a single object. In deriving a class from C, your module will inherit the Singleton instantiation method and can implement whatever specific functionality is required. For a description and discussion of the Singleton class, see "Design Patterns", Gamma et al, Addison-Wesley, 1995, ISBN 0-201-63361-2. -Des: ##---------------------------------------- =Pkg: perl-Crypt-Random 1.25 1.0.suse13.1.lc noarch =Sum: Crypt-Random - Cryptographically Secure, True Random Number Generator. +Des: Crypt::Random is an interface module to the /dev/random device found on most modern unix systems. It also interfaces with egd, a user space entropy gathering daemon, available for systems where /dev/random (or similar) devices are not available. When Math::Pari is installed, Crypt::Random can generate random integers of arbritary size of a given bitsize or in a specified interval. -Des: ##---------------------------------------- =Pkg: perl-Crypt-RC4 2.02 1.0.suse13.1.lc noarch =Sum: Crypt-RC4 - Perl implementation of the RC4 encryption algorithm +Des: A simple implementation of the RC4 algorithm, developed by RSA Security, Inc. Here is the description from RSA's website: RC4 is a stream cipher designed by Rivest for RSA Data Security (now RSA Security). It is a variable key-size stream cipher with byte-oriented operations. The algorithm is based on the use of a random permutation. Analysis shows that the period of the cipher is overwhelmingly likely to be greater than 10100. Eight to sixteen machine operations are required per output byte, and the cipher can be expected to run very quickly in software. Independent analysts have scrutinized the algorithm and it is considered secure. Based substantially on the "RC4 in 3 lines of perl" found at http://www.cypherspace.org A major bug in v1.0 was fixed by David Hook (dgh@wumpus.com.au). Thanks, David. -Des: ##---------------------------------------- =Pkg: perl-enum 1.11 1.0.suse13.1.lc noarch =Sum: enum - C style enumerated types and bitmask flags in Perl +Des: This module is used to define a set of constants with ordered numeric values, similar to the `enum' type in the C programming language. You can also define bitmask constants, where the value assigned to each constant has exactly one bit set (eg 1, 2, 4, 8, etc). What are enumerations good for? Typical uses would be for giving mnemonic names to indexes of arrays. Such arrays might be a list of months, days, or a return value index from a function such as localtime(): use enum qw( :Months_=0 Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec :Days_=0 Sun Mon Tue Wed Thu Fri Sat :LC_=0 Sec Min Hour MDay Mon Year WDay YDay Isdst ); if ((localtime)[LC_Mon] == Months_Jan) { print "It's January!\n"; } if ((localtime)[LC_WDay] == Days_Fri) { print "It's Friday!\n"; } This not only reads easier, but can also be typo-checked at compile time when run under use strict. That is, if you misspell Days_Fri as Days_Fry, you'll generate a compile error. -Des: ##---------------------------------------- =Pkg: perl-File-Find-Rule 0.33 1.0.suse13.1.lc noarch =Sum: File-Find-Rule - Alternative interface to File::Find +Des: File::Find::Rule is a friendlier interface to File::Find. It allows you to build rules which specify the desired files and directories. -Des: ##---------------------------------------- =Pkg: perl-File-MMagic 1.29 1.0.suse13.1.lc noarch =Sum: File-MMagic - Guess file type from contents +Des: checktype_filename(), checktype_filehandle() and checktype_contents returns string contains file type with MIME mediatype format. -Des: ##---------------------------------------- =Pkg: perl-File-Slurp 9999.19 1.0.suse13.1.lc noarch =Sum: File-Slurp - Simple and Efficient Reading/Writing/Modifying of Complete Files +Des: This module provides subs that allow you to read or write entire files with one simple call. They are designed to be simple to use, have flexible ways to pass in or get the file contents and to be very efficient. There is also a sub to read in all the files in a directory other than C<.> and C<..> These slurp/spew subs work for files, pipes and sockets, stdio, pseudo-files, and the DATA handle. Read more about why slurping files is a good thing in the file 'slurp_article.pod' in the extras/ directory. If you are interested in how fast these calls work, check out the slurp_bench.pl program in the extras/ directory. It compares many different forms of slurping. You can select the I/O direction, context and file sizes. Use the --help option to see how to run it. -Des: ##---------------------------------------- =Pkg: perl-GD-Barcode 1.15 1.0.suse13.1.lc noarch =Sum: GD-Barcode - Create barcode image with GD +Des: GD::Barcode is a subclass of GD and allows you to create barcode image with GD. This module based on "Generate Barcode Ver 1.02 By Shisei Hanai 97/08/22". From 1.14, you can use this module even if no GD (except plot method). -Des: ##---------------------------------------- =Pkg: perl-HTML-Tiny 1.05 1.0.suse13.1.lc noarch =Sum: HTML-Tiny - Lightweight, dependency free HTML/XML generation +Des: C<< HTML::Tiny >> is a simple, dependency free module for generating HTML (and XML). It concentrates on generating syntactically correct XHTML using a simple Perl notation. In addition to the HTML generation functions utility functions are provided to =over =item * encode and decode URL encoded strings =item * entity encode HTML =item * build query strings =item * JSON encode data structures =back -Des: ##---------------------------------------- =Pkg: perl-Image-Base 1.17 1.0.suse13.1.lc noarch =Sum: Image-Base - Base class for image manipulation +Des: This is a base class for image. It shouldn't be used directly. Known inheritors are C and C and in see L below. use Image::Xpm ; my $i = Image::Xpm->new( -file => 'test.xpm' ) ; $i->line( 1, 1, 3, 7, 'red' ) ; $i->ellipse( 3, 3, 6, 7, '#ff00cc' ) ; $i->rectangle( 4, 2, 9, 8, 'blue' ) ; Subclasses like C and C are stand-alone Perl code implementations of the respective formats. They're good for drawing and manipulating image files with a modest amount of code and dependencies. Other inheritors like C are front-ends to big image libraries. They can be handy for pointing generic C style code at a choice of modules and supported file formats. Some inheritors like C even go to a window etc for direct display. -Des: ##---------------------------------------- =Pkg: perl-Image-Info 1.32 1.0.suse13.1.lc noarch =Sum: Image-Info - Extract meta information from image files +Des: This module provide functions to extract various kind of meta information from image files. -Des: ##---------------------------------------- =Pkg: perl-Image-Xbm 1.08 1.0.suse13.1.lc noarch =Sum: Image-Xbm - Load, create, manipulate and save xbm image files. +Des: This class module provides basic load, manipulate and save functionality for the xbm file format. It inherits from C which provides additional manipulation functionality, e.g. C. See the C pod for information on adding your own functionality to all the C derived classes. -Des: ##---------------------------------------- =Pkg: perl-Image-Xpm 1.12 1.0.suse13.1.lc noarch =Sum: Image-Xpm - Load, create, manipulate and save xpm image files. +Des: This class module provides basic load, manipulate and save functionality for the xpm file format. It inherits from C which provides additional manipulation functionality, e.g. C. See the C pod for information on adding your own functionality to all the Image::Base derived classes. -Des: ##---------------------------------------- =Pkg: perl-Net-PH 2.21 1.0.suse13.1.lc noarch =Sum: Net-PH - CCSO Nameserver Client class +Des: C is a class implementing a simple Nameserver/PH client in Perl as described in the CCSO Nameserver -- Server-Client Protocol. Like other modules in the Net:: family the C object inherits methods from C. -Des: ##---------------------------------------- =Pkg: perl-OLE-Storage_Lite 0.19 1.0.suse13.1.lc noarch =Sum: OLE-Storage_Lite - Read and write OLE storage files. +Des: OLE::Storage_Lite allows you to read and write an OLE structured file. OLE::Storage_Lite::PPS is a class representing PPS. OLE::Storage_Lite::PPS::Root, OLE::Storage_Lite::PPS::File and OLE::Storage_Lite::PPS::Dir are subclasses of OLE::Storage_Lite::PPS. -Des: ##---------------------------------------- =Pkg: perl-Spreadsheet-WriteExcel 2.37 1.0.suse13.1.lc noarch =Sum: Spreadsheet-WriteExcel - Write to a cross platform Excel binary file +Des: The Spreadsheet::WriteExcel Perl module can be used to create a cross-platform Excel binary file. Multiple worksheets can be added to a workbook and formatting can be applied to cells. Text, numbers, formulas, hyperlinks, images and charts can be written to the cells. The file produced by this module is compatible with Excel 97, 2000, 2002, 2003 and 2007. The module will work on the majority of Windows, UNIX and Mac platforms. Generated files are also compatible with the Linux/UNIX spreadsheet applications Gnumeric and OpenOffice.org. This module cannot be used to write to an existing Excel file (See L). -Des: ##---------------------------------------- =Pkg: perl-Text-PDF 0.29 1.0.suse13.1.lc noarch =Sum: Text-PDF - PDF Manipulation and generation +Des: This module allows interaction with existing PDF files directly. It includes various tools including: pdfbklt - make booklets out of existing PDF files pdfrevert - remove edits from a PDF file pdfstamp - stamp text on each page of a PDF file various example programs are also included -Des: ##---------------------------------------- =Pkg: perl-Text-Query 0.07 1.0.suse13.1.lc noarch =Sum: Text-Query - Query processing framework +Des: This module provides an object that matches a data source against a query expression. Query expressions are compiled into an internal form when a new object is created or the C method is called; they are not recompiled on each match. The class provided by this module uses four packages to process the query. The query parser parses the question and calls a query expression builder (internal form of the question). The optimizer is then called to reduce the complexity of the expression. The solver applies the expression on a data source. The following parsers are provided: =over 4 =item Text::Query::ParseAdvanced =item Text::Query::ParseSimple =back The following builders are provided: =over 4 =item Text::Query::BuildAdvancedString =item Text::Query::BuildSimpleString =back The following solver is provided: =over 4 =item Text::Query::SolveSimpleString =item Text::Query::SolveAdvancedString =back -Des: ##---------------------------------------- =Pkg: perl-Tie-IxHash-Easy 0.01 1.0.suse13.1.lc noarch =Sum: Tie-IxHash-Easy - Auto-tie()s internal hashes in a tied hash +Des: This module automatically ties any hash reference in the tied hash to the same class, making all of them behave like Tie::IxHash hashes. -Des: ##---------------------------------------- =Pkg: perl-Tree 1.01 1.0.suse13.1.lc noarch =Sum: Tree - Perl module +Des: None. -Des: ##---------------------------------------- =Pkg: texlive-acrotex 6.05 1.0.suse13.1.lc noarch =Sum: The AcroTeX eDucation Bundle used for PDF forms +Des: Acrotex package to support PDF forms which students can use to complete LON-CAPA homework problems offline -Des: ##---------------------------------------- =Pkg: LONCAPA-prerequisites 1 23.suse13.1.lc x86_64 =Sum: Stub rpm to set up LONCAPA dependencies +Des: LONCAPA-prerequisites configures a system to run LON-CAPA. -Des: