SlideShare une entreprise Scribd logo
1  sur  46
Télécharger pour lire hors ligne
06.05.06 / Page 1
News from PEAR
Stefan Neufeind
LinuxTag 2006, Practical Linux Forum
2006, Wiesbaden
Feel the power ...
N e w s f r o m
P E A R
06.05.06 / Page 2
News from PEAR
Stefan Neufeind
LinuxTag 2006, Practical Linux Forum
2006, Wiesbaden
About me
Stefan Neufeind, from Neuss (close to Düsseldorf)
Zend-certified PHP-developer
PEAR-maintainer for 3 years
„Believes“ in open community-projects
Working for SpeedPartner GmbH
„Fullservice internet-solutions“
Consulting
Development, including PHP with PEAR :-)
06.05.06 / Page 3
News from PEAR
Stefan Neufeind
LinuxTag 2006, Practical Linux Forum
2006, Wiesbaden
Agenda
What is PEAR?
PEAR-package overview
Getting PEAR / The installer
New in PEAR 1.4.x, including:
PEAR-channels
PHAR („php archive“)
Package news / examples
Links
06.05.06 / Page 4
News from PEAR
Stefan Neufeind
LinuxTag 2006, Practical Linux Forum
2006, Wiesbaden
What is PEAR?
PHP Extension and Application Repository
THE repository for PHP
Founded 1999 by Stig S. Bakken
Collection of high quality PHP-components
~370 packages in 36 categories
~350 package-maintainers, ~630 developers
100% free (licenses: PHP, Apache, BSD, LGPL)
Tools for communication and collaboration
06.05.06 / Page 5
News from PEAR
Stefan Neufeind
LinuxTag 2006, Practical Linux Forum
2006, Wiesbaden
What is PECL?
PHP Extension Community Library
Sister-repository of / split-off from PEAR
Sharing many resources
but separate website, commandline-installer, ...
Components in C-language
Compiled using PEAR installer for specific environment
Not “that” easily installable (especially on shared host)
~140 packages in 28 categories
06.05.06 / Page 6
News from PEAR
Stefan Neufeind
LinuxTag 2006, Practical Linux Forum
2006, Wiesbaden
What is PEAR?
Consists of:
Website (presentation, installer-backend, ...)
Installer (commandline, web, GUI)
Packages
Documentation
Support
Quality assurance (PEAR-QA)
06.05.06 / Page 7
News from PEAR
Stefan Neufeind
LinuxTag 2006, Practical Linux Forum
2006, Wiesbaden
PEAR-package overview
No applications (almost :-) )
but components for dedicated needs
Database abstraction
Webservices
Internationalization
Network / Internet
Graphic generation / modification
Validation (email-addresses, IBAN, credit cards, ...)
...
06.05.06 / Page 8
News from PEAR
Stefan Neufeind
LinuxTag 2006, Practical Linux Forum
2006, Wiesbaden
PEAR-package overview
06.05.06 / Page 9
News from PEAR
Stefan Neufeind
LinuxTag 2006, Practical Linux Forum
2006, Wiesbaden
PEAR-package overview
Components universally usable
Cooperation instead of competing packages
„Clean“ design
Set of rules for quality-assurance and serviceability
Used in large variety of applications
Business-ready
06.05.06 / Page 10
News from PEAR
Stefan Neufeind
LinuxTag 2006, Practical Linux Forum
2006, Wiesbaden
Getting PEAR / The installer
PEAR-installer bundled since PHP 4.3.0
Automatically available, even on Windows :-)
By default also included when self-compiling
For earlier PHP-versions / distributions without PEAR
simply use http://go-pear.org
e.g. lynx -source http://go-pear.org | php -q
or save go-pear-source and open in browser
Note: PEAR-path should be in your include_path (php.ini)
06.05.06 / Page 11
News from PEAR
Stefan Neufeind
LinuxTag 2006, Practical Linux Forum
2006, Wiesbaden
Getting PEAR / The installer
Common installation-environment
for PHP-code (PEAR) and C-extensions (PECL)
Runable on many platforms (Linux, Windows, ...)
Various “tastes”: commandline, web, GUI
Taking care of package-dependencies etc.
Tools for developers
Wide adoptions of the installer
pearified, eZ, prado, and other tools/frameworks
06.05.06 / Page 12
News from PEAR
Stefan Neufeind
LinuxTag 2006, Practical Linux Forum
2006, Wiesbaden
Getting PEAR / The installer
Installation of packages (e.g. commandline)
with dependency-checks, conflict-checks etc.:
Also allows for optional components,
version-dependencies, ...
# pear install Validate_Finance-alpha
Did not download dependencies: pear/Validate, use --alldeps or --
onlyreqdeps to download automatically
pear/Validate_Finance requires package "pear/Validate" (version >=
0.5.0)
No valid packages found
install failed
06.05.06 / Page 13
News from PEAR
Stefan Neufeind
LinuxTag 2006, Practical Linux Forum
2006, Wiesbaden
Getting PEAR / The installer
Useful commands to get you started:
$ pear help [command] general or command-help
$ pear config-show show settings like paths
$ pear list list installed packages
$ pear remote-list list available packages
$ pear install <package> install a package
$ pear uninstall <package>
$ pear list-upgrades check for package upgrade
$ pear upgrade <package> perform an upgrade
06.05.06 / Page 14
News from PEAR
Stefan Neufeind
LinuxTag 2006, Practical Linux Forum
2006, Wiesbaden
New in PEAR 1.4.x
Automatic dependency resolution
--onlyreqdeps / -o
--alldeps / -a
Dependencies on external packages
References to packages by URL
Channels
Using multiple channels
Possibility to run your own channel
Cross-channel dependencies
06.05.06 / Page 15
News from PEAR
Stefan Neufeind
LinuxTag 2006, Practical Linux Forum
2006, Wiesbaden
New in PEAR 1.4.x
New package.xml-format
Improved flexibility
Mirroring
Multiple modules in one package
Bundling packages with an application, ...
Post-install-scripts (including interaction), e.g. for
Initializing databases
Moving files to the webroot
ReST-webservice
06.05.06 / Page 16
News from PEAR
Stefan Neufeind
LinuxTag 2006, Practical Linux Forum
2006, Wiesbaden
New in PEAR 1.4.x
PHAR-support
Only one PHP-file incl. archive, dynamic unpacking, ...
Remote-installation
Installing PEAR without shell access (ftp, ftps, sftp)
Needs additional separate package PEAR_RemoteInstaller
Installation of binary PECL-packages (e.g. on Windows)
06.05.06 / Page 17
News from PEAR
Stefan Neufeind
LinuxTag 2006, Practical Linux Forum
2006, Wiesbaden
New in PEAR 1.4.x: ReST-webservice
PEAR <=1.3 used XML-RPC for repository-access
Widely used, but partially complex
PEAR 1.4 uses ReST
text-based, static files possible
Less traffic
Faster response-times
Simplified API
More flexible
06.05.06 / Page 18
News from PEAR
Stefan Neufeind
LinuxTag 2006, Practical Linux Forum
2006, Wiesbaden
New in PEAR 1.4.x: Post-install scripts
Allow quite powerful actions after installation
Flexible API
Script-calls defined in package2.xml
Actions can be bound to specific files
Predefined actions available
Self-implemented actions possible with PHP-scripts
Execution structured in single steps
Interaction between user / PEAR installer
06.05.06 / Page 19
News from PEAR
Stefan Neufeind
LinuxTag 2006, Practical Linux Forum
2006, Wiesbaden
New in PEAR 1.4.x: PHAR support
PHAR = PHP archive
One single PHP-file for an entire application
“PHP's answer to .jar”
Valid tar/php-files
Works on PHP 4.3.0+ and PHP 5
PEAR-installer shipped as a PHAR
Access to files using streams-API:
<?php
require_once('example.phar');
require_once('phar://example.phar/myscript.php');
?>
06.05.06 / Page 20
News from PEAR
Stefan Neufeind
LinuxTag 2006, Practical Linux Forum
2006, Wiesbaden
New in PEAR 1.4.x: PEAR-channels
More commands related to channels:
pear channel-discover http://example.com/channel.xml
pear channel-alias channel://... example
pear update-channels
Channel-descriptions via channel.xml
# pear list-channels
Registered Channels:
====================
Channel Summary
pear.php.net PHP Extension and Application Repository
pecl.php.net PHP Extension Community Library
__uri Pseudo-channel for static packages
06.05.06 / Page 21
News from PEAR
Stefan Neufeind
LinuxTag 2006, Practical Linux Forum
2006, Wiesbaden
New in PEAR 1.4.x: PEAR-channels
channel.xml-example (1/2):
<channel version="1.0"
xsi:schemaLocation="http://pear.php.net/channel-1.0
http://pear.php.net/dtd/channel-1.0.xsd">
<name>pear.example.com</name>
<suggestedalias>foo</suggestedalias>
<summary>Example channel.xml</summary>
<validatepackage version="1.3.4">Foo_Validate</validatepackage>
<servers>
<primary port="8080" ssl="yes">
<xmlrpc> <!-- default path is xmlrpc.php -->
<function version="1.0">logintest</function>
<function version="1.0">package.listLatestReleases</function>
[...]
</xmlrpc>
[...]
06.05.06 / Page 22
News from PEAR
Stefan Neufeind
LinuxTag 2006, Practical Linux Forum
2006, Wiesbaden
New in PEAR 1.4.x: PEAR-channels
channel.xml-example (2/2):
<rest> <!-- no default path, all must be defined in baseurl -->
<baseurl type="package">
http://pear.example.com/rest/1.0/package</baseurl>
<baseurl type="category">
http://pear.example.com/rest/1.0/category</baseurl>
</rest>
<soap path="soapy.php"> <!-- default path is soap.php -->
<function version="1.0">package.listAll</function>
</soap>
</primary>
<mirror server="foo2.example.com/pearmirror">
<rest>
<baseurl type="package">
http://foo2.example.com/rest/1.0/package</baseurl>
</rest>
</mirror> </servers> </channel>
06.05.06 / Page 23
News from PEAR
Stefan Neufeind
LinuxTag 2006, Practical Linux Forum
2006, Wiesbaden
New in PEAR 1.4.x: PEAR-channels
pearadise.net:
Portal for
PEAR-
channels
06.05.06 / Page 24
News from PEAR
Stefan Neufeind
LinuxTag 2006, Practical Linux Forum
2006, Wiesbaden
New in PEAR 1.4.x: PEAR-channels
Famous channels include:
eZ
Horde
Gnope.org
Pearified
PHP Application Tools
Seagull / PHPkitchen
Solar
Symfony Project
06.05.06 / Page 25
News from PEAR
Stefan Neufeind
LinuxTag 2006, Practical Linux Forum
2006, Wiesbaden
PEAR channel server
Various ways/tools to set up a channel-server
One implementation is Chiara_PEAR_Server
PEAR-package, but developed outside of PEAR
http://pear.chiaraquartet.net/
Status still alpha
API may change
Still many features to come
06.05.06 / Page 26
News from PEAR
Stefan Neufeind
LinuxTag 2006, Practical Linux Forum
2006, Wiesbaden
PEAR channel server
Discovering Greg Beaver's development-channel
Installing package from the channel (and required deps)
Running installation-scripts
Asks for settings
Creates database
Generates channel.xml and REST
$ pear channel-discover pear.chiaraquartet.net
$ pear install -o chiara/Chiara_PEAR_Server-alpha
$ pear run-scripts chiara/Chiara_PEAR_Server
06.05.06 / Page 27
News from PEAR
Stefan Neufeind
LinuxTag 2006, Practical Linux Forum
2006, Wiesbaden
PEAR channel server
06.05.06 / Page 28
News from PEAR
Stefan Neufeind
LinuxTag 2006, Practical Linux Forum
2006, Wiesbaden
Package news / examples
Lately updated packages (small and incomplete selection):
HTML_AJAX
Image_Puzzle
Image_3D
MDB2, MDB2_Schema and drivers, ...
Net_CDDB
Services_Delicious
Validate-packages, e.g. Validate_Finance
VFS (Virtual File System API)
06.05.06 / Page 29
News from PEAR
Stefan Neufeind
LinuxTag 2006, Practical Linux Forum
2006, Wiesbaden
Package news: HTML_AJAX
Easy to work with (on client and server)
OO JavaScript interface
Class are exposed to Javascript as classes
POST used for requests
Async and sync calls
Proxied calls: through stub objects for PHP classes in JS
Proxyless calls: utility-functions like HTML_AJAX.replace()
06.05.06 / Page 30
News from PEAR
Stefan Neufeind
LinuxTag 2006, Practical Linux Forum
2006, Wiesbaden
Package news: HTML_AJAX
JavaScript error handling
Browser-compatibility:
Firefox 1.0+
Internet Explorer 5.5+ (maybe 5.0+)
Opera 8.5+
Safari 2+ (Most things)
06.05.06 / Page 31
News from PEAR
Stefan Neufeind
LinuxTag 2006, Practical Linux Forum
2006, Wiesbaden
Package news: HTML_AJAX
server-example (1/2):
<?php
class search {
public function __construct() {
$this->pdo = new PDO('mysql:host=127.0.0.1;dbname=ajaxdata',
'ajaxuser', 'ajaxpw');
}
public function get_records($search='') {
$sql = "SELECT * FROM books ";
if (trim($search) != '') {
$sql .= "WHERE title LIKE ".
$this->pdo->quote('%'.$search.'%');
}
return $this->pdo->query($sql)->fetchAll(PDO_FETCH_ASSOC);
}
}
[...]
06.05.06 / Page 32
News from PEAR
Stefan Neufeind
LinuxTag 2006, Practical Linux Forum
2006, Wiesbaden
Package news: HTML_AJAX
server-example (1/2):
Loading generated JavaScript-interface on client:
[...]
include 'HTML/AJAX/Server.php';
class MyServer extends HTML_AJAX_Server {
public $initMethods = true;
public function initSearch() {
$this->registerClass(new search());
}
}
$server = new MyServer();
$server->clientJsLocation = '/usr/share/pear/data/HTML_AJAX/js/';
$server->handleRequest();
<script src="xul_search.php?client=all" />
<script src="xul_search.php?stub=all" />
06.05.06 / Page 33
News from PEAR
Stefan Neufeind
LinuxTag 2006, Practical Linux Forum
2006, Wiesbaden
Package news: Image_3D
Creation of 3 dimensional images using PHP
highly object oriented, PHP5
Creation of 3D objects like cubes, spheres, maps, text, pie,
torus, cone, ...
Your own object definitions
Your own material definitions
Import of 3DSMax files
Unlimited number of light sources
Output drivers: Rendering via GD, SVG or ASCII
06.05.06 / Page 34
News from PEAR
Stefan Neufeind
LinuxTag 2006, Practical Linux Forum
2006, Wiesbaden
Package news: Image_3D
Latest enhancements:
Spotlights, pointlights and ambient lights
Bezier curves
Torus and cone
Improved speed
Driver for ASCII-output (including animation)
Best of all: It's really cool :-)
06.05.06 / Page 35
News from PEAR
Stefan Neufeind
LinuxTag 2006, Practical Linux Forum
2006, Wiesbaden
Package news: Image_3D
06.05.06 / Page 36
News from PEAR
Stefan Neufeind
LinuxTag 2006, Practical Linux Forum
2006, Wiesbaden
Package news: Image_3D
06.05.06 / Page 37
News from PEAR
Stefan Neufeind
LinuxTag 2006, Practical Linux Forum
2006, Wiesbaden
Package news: Image_3D
Still pictures ...
... or even animated – hope it works here :-)
06.05.06 / Page 38
News from PEAR
Stefan Neufeind
LinuxTag 2006, Practical Linux Forum
2006, Wiesbaden
Package news: MDB2
“stable” since beginning 2006
Supports everything “DB” offers (and more)
API-mix of DB and PDO
MDB2 for “high abstraction”, PDO for “lower layers”
Working with joined forces; PDO-driver in the works
Faster than DB (at least in “micro”-benchmarks)
Uses modules
Flexible and feature-rich (because of modules)
06.05.06 / Page 39
News from PEAR
Stefan Neufeind
LinuxTag 2006, Practical Linux Forum
2006, Wiesbaden
Package news: MDB2
Most drivers use native prepared-API of RDBMS
Full datatype-abstraction (Datatype module)
LOBs are provided as regular stream resources
Direct access to data (if RDBMS supports it)
Allows using functions like fread() on LOBs from DB
Allows INSERTs directly from files
Debug callback support
PHP5 iterator support
Lazy connect support (connects when necessary)
06.05.06 / Page 40
News from PEAR
Stefan Neufeind
LinuxTag 2006, Practical Linux Forum
2006, Wiesbaden
Package news: MDB2
Abstraction of functions (Function module)
Many methods for administrating database-objects
(Manager and reverse module)
Creating tables, sequences, indexes, constraints
Listing tables, indexes, ...
Reverse engineering (table-field details)
if (!$this->methodExists($this->db->function, 'functionTable')) {
return;
}
$functionTable_clause = $this->db->function->functionTable();
$query = 'SELECT 1 '.$functionTable_clause;
06.05.06 / Page 41
News from PEAR
Stefan Neufeind
LinuxTag 2006, Practical Linux Forum
2006, Wiesbaden
Package news: MDB2
Various emulations, where necessary
(REPLACE, non correlated sub queries, ...)
Functions like “lastInsertId” to work with autoincrements
Several portability modes
Buffered and unbuffered resultsets
$mdb2->loadModule('Extended');
// fetch the next ID in the sequence or return php null
$id = $mdb2->extended->getBeforeID('foo');
$query = 'INSERT INTO foo (id, bar) VALUES ('.$mdb2->quote($id,
'integer').', '.$mdb2->quote('xxx', 'text').')';
$mdb2->exec($query);
// return $id or fetch the last inserted id via autoincrement
$id = $mdb2->extended->getAfterID($id, 'foo');
06.05.06 / Page 42
News from PEAR
Stefan Neufeind
LinuxTag 2006, Practical Linux Forum
2006, Wiesbaden
Package news: MDB2_Schema
Creation of databases
Reverse engineering into XML-format
Comparing XML-schema-files
Automatic modification of schema according to compare
Working directly in DB or as SQL dump
06.05.06 / Page 43
News from PEAR
Stefan Neufeind
LinuxTag 2006, Practical Linux Forum
2006, Wiesbaden
Package news: MDB2_Schema
$dsn = $_REQUEST['type'].'://'.
$_REQUEST['user'].':'.$_REQUEST['pass'].'@'.
$_REQUEST['host'].'/'.$_REQUEST['name'];
$schema =& MDB2_Schema::factory($dsn, $options);
$dump_what = MDB2_SCHEMA_DUMP_STRUCTURE; // ..._CONTENT, ..._ALL
$dump_config = array(
'output_mode' => 'file',
'output' => $_REQUEST['file']
);
$definition = $schema->getDefinitionFromDatabase();
$operation = $schema->dumpDatabase($definition, $dump_config,
$dump_what);
06.05.06 / Page 44
News from PEAR
Stefan Neufeind
LinuxTag 2006, Practical Linux Forum
2006, Wiesbaden
Links
PEAR/PECL-website: http://pear.php.net/, http://pecl.php.net/
PEAR-channel aggregator: http://www.pearadise.net/
Greg Beaver's blog (incl. many examples for installer etc.):
http://greg.chiaraquartet.net/
HTML_AJAX: http://wiki.bluga.net/HTML_AJAX/HomePage
Image_3D: http://kore-nordmann.de/
MDB2 homepage with lots of examples:
http://oss.backendmedia.com/MDB2/
MDB2_Schema-docs and examples:
http://cvs.php.net/viewcvs.cgi/pear/MDB2_Schema/docs/
06.05.06 / Page 45
News from PEAR
Stefan Neufeind
LinuxTag 2006, Practical Linux Forum
2006, Wiesbaden
Thanks go to ...
Kore
Lukas
Markus
Michael
Pierre
Toby
All PHP / PEAR-colleagues :-)
06.05.06 / Page 46
News from PEAR
Stefan Neufeind
LinuxTag 2006, Practical Linux Forum
2006, Wiesbaden
Thank you!
Up-to-date slides available at:
http://talks.speedpartner.de/
Questions?
neufeind (at) speedpartner.de

Contenu connexe

Tendances

RHCE FINAL Questions and Answers
RHCE FINAL Questions and AnswersRHCE FINAL Questions and Answers
RHCE FINAL Questions and AnswersRadien software
 
Software Packaging with RPM
Software Packaging with RPMSoftware Packaging with RPM
Software Packaging with RPMSchalk Cronjé
 
Bundling Packages and Deploying Applications with RPM
Bundling Packages and Deploying Applications with RPMBundling Packages and Deploying Applications with RPM
Bundling Packages and Deploying Applications with RPMAlexander Shopov
 
RPM (Red Hat Package Manager)
RPM (Red Hat Package Manager)RPM (Red Hat Package Manager)
RPM (Red Hat Package Manager)skalaivanibutp
 
101 2.5 use rpm and yum package management
101 2.5 use rpm and yum package management101 2.5 use rpm and yum package management
101 2.5 use rpm and yum package managementAcácio Oliveira
 
How to install_and_configure_r_on_a_linux_server
How to install_and_configure_r_on_a_linux_serverHow to install_and_configure_r_on_a_linux_server
How to install_and_configure_r_on_a_linux_serversushantbit04
 
OSDC 2018 | OPNsense: the “open” firewall for your datacenter by Thomas Niede...
OSDC 2018 | OPNsense: the “open” firewall for your datacenter by Thomas Niede...OSDC 2018 | OPNsense: the “open” firewall for your datacenter by Thomas Niede...
OSDC 2018 | OPNsense: the “open” firewall for your datacenter by Thomas Niede...NETWAYS
 
Red Hat Certified engineer course
  Red Hat Certified engineer course   Red Hat Certified engineer course
Red Hat Certified engineer course Ali Abdo
 
图文详解安装Net backup 6.5备份恢复oracle 10g rac 数据库
图文详解安装Net backup 6.5备份恢复oracle 10g rac 数据库图文详解安装Net backup 6.5备份恢复oracle 10g rac 数据库
图文详解安装Net backup 6.5备份恢复oracle 10g rac 数据库maclean liu
 
Configure, Pack and Distribute: An RPM Creation Workshop
Configure, Pack and Distribute: An RPM Creation WorkshopConfigure, Pack and Distribute: An RPM Creation Workshop
Configure, Pack and Distribute: An RPM Creation WorkshopNovell
 
]project-open[ Package Manager
]project-open[ Package Manager]project-open[ Package Manager
]project-open[ Package ManagerKlaus Hofeditz
 
Software management in linux
Software management in linuxSoftware management in linux
Software management in linuxnejadmand
 
Rhce syllabus | Red Hat Linux Training: IPSR Solutions
Rhce syllabus | Red Hat Linux Training: IPSR SolutionsRhce syllabus | Red Hat Linux Training: IPSR Solutions
Rhce syllabus | Red Hat Linux Training: IPSR SolutionsIPSRAptitudetraining
 

Tendances (19)

ORACLE HA NFS over Oracle ASM
ORACLE HA NFS over Oracle ASMORACLE HA NFS over Oracle ASM
ORACLE HA NFS over Oracle ASM
 
RHCE FINAL Questions and Answers
RHCE FINAL Questions and AnswersRHCE FINAL Questions and Answers
RHCE FINAL Questions and Answers
 
Software Packaging with RPM
Software Packaging with RPMSoftware Packaging with RPM
Software Packaging with RPM
 
Bundling Packages and Deploying Applications with RPM
Bundling Packages and Deploying Applications with RPMBundling Packages and Deploying Applications with RPM
Bundling Packages and Deploying Applications with RPM
 
RPM (Red Hat Package Manager)
RPM (Red Hat Package Manager)RPM (Red Hat Package Manager)
RPM (Red Hat Package Manager)
 
101 2.5 use rpm and yum package management
101 2.5 use rpm and yum package management101 2.5 use rpm and yum package management
101 2.5 use rpm and yum package management
 
NIH package manager for pkgsrc
NIH package manager for pkgsrcNIH package manager for pkgsrc
NIH package manager for pkgsrc
 
How to install_and_configure_r_on_a_linux_server
How to install_and_configure_r_on_a_linux_serverHow to install_and_configure_r_on_a_linux_server
How to install_and_configure_r_on_a_linux_server
 
OSDC 2018 | OPNsense: the “open” firewall for your datacenter by Thomas Niede...
OSDC 2018 | OPNsense: the “open” firewall for your datacenter by Thomas Niede...OSDC 2018 | OPNsense: the “open” firewall for your datacenter by Thomas Niede...
OSDC 2018 | OPNsense: the “open” firewall for your datacenter by Thomas Niede...
 
Red Hat Certified engineer course
  Red Hat Certified engineer course   Red Hat Certified engineer course
Red Hat Certified engineer course
 
图文详解安装Net backup 6.5备份恢复oracle 10g rac 数据库
图文详解安装Net backup 6.5备份恢复oracle 10g rac 数据库图文详解安装Net backup 6.5备份恢复oracle 10g rac 数据库
图文详解安装Net backup 6.5备份恢复oracle 10g rac 数据库
 
Tlf2012
Tlf2012Tlf2012
Tlf2012
 
Yum (Linux)
Yum (Linux) Yum (Linux)
Yum (Linux)
 
Configure, Pack and Distribute: An RPM Creation Workshop
Configure, Pack and Distribute: An RPM Creation WorkshopConfigure, Pack and Distribute: An RPM Creation Workshop
Configure, Pack and Distribute: An RPM Creation Workshop
 
]project-open[ Package Manager
]project-open[ Package Manager]project-open[ Package Manager
]project-open[ Package Manager
 
Software management in linux
Software management in linuxSoftware management in linux
Software management in linux
 
Python - mySOL
Python - mySOLPython - mySOL
Python - mySOL
 
Rhce syllabus | Red Hat Linux Training: IPSR Solutions
Rhce syllabus | Red Hat Linux Training: IPSR SolutionsRhce syllabus | Red Hat Linux Training: IPSR Solutions
Rhce syllabus | Red Hat Linux Training: IPSR Solutions
 
SAN Concepts
SAN ConceptsSAN Concepts
SAN Concepts
 

En vedette (20)

12 g. baruzzi cra
12 g. baruzzi cra12 g. baruzzi cra
12 g. baruzzi cra
 
Peach
PeachPeach
Peach
 
B.sc. agri i po h unit 4.5 cultivation practices of jackfruit
B.sc. agri i po h unit 4.5 cultivation practices of jackfruitB.sc. agri i po h unit 4.5 cultivation practices of jackfruit
B.sc. agri i po h unit 4.5 cultivation practices of jackfruit
 
Biodegradable, Bio-Plastic Banana Peels IDM12
Biodegradable, Bio-Plastic Banana Peels IDM12Biodegradable, Bio-Plastic Banana Peels IDM12
Biodegradable, Bio-Plastic Banana Peels IDM12
 
Apple Flowering and Fruit Quality
Apple Flowering and Fruit QualityApple Flowering and Fruit Quality
Apple Flowering and Fruit Quality
 
Jackfruit
JackfruitJackfruit
Jackfruit
 
Pear
PearPear
Pear
 
Jackfruit fruit cultivation
Jackfruit  fruit cultivationJackfruit  fruit cultivation
Jackfruit fruit cultivation
 
Mirunalini
MirunaliniMirunalini
Mirunalini
 
Citrus by products
Citrus by productsCitrus by products
Citrus by products
 
Pomegranate Flower Morphology
Pomegranate Flower MorphologyPomegranate Flower Morphology
Pomegranate Flower Morphology
 
28 new traits in advanced breeding populations-a. peil
28 new traits  in advanced breeding populations-a. peil28 new traits  in advanced breeding populations-a. peil
28 new traits in advanced breeding populations-a. peil
 
Final leaf processing presantation(2010)
Final leaf processing presantation(2010)Final leaf processing presantation(2010)
Final leaf processing presantation(2010)
 
Flower Morphology 2 (updated)
Flower Morphology 2 (updated)Flower Morphology 2 (updated)
Flower Morphology 2 (updated)
 
Waste management in processing industry
Waste management in processing industryWaste management in processing industry
Waste management in processing industry
 
Flower Morphology
Flower MorphologyFlower Morphology
Flower Morphology
 
Banana conf jalgaon
Banana conf jalgaonBanana conf jalgaon
Banana conf jalgaon
 
Banana Industry
Banana IndustryBanana Industry
Banana Industry
 
Apple cultivation
 Apple cultivation Apple cultivation
Apple cultivation
 
Value added product
Value added productValue added product
Value added product
 

Similaire à News from PEAR

Last Month in PHP - February 2016
Last Month in PHP - February 2016Last Month in PHP - February 2016
Last Month in PHP - February 2016Eric Poe
 
PHP on Heroku: Deploying and Scaling Apps in the Cloud
PHP on Heroku: Deploying and Scaling Apps in the CloudPHP on Heroku: Deploying and Scaling Apps in the Cloud
PHP on Heroku: Deploying and Scaling Apps in the CloudSalesforce Developers
 
Using containers and Continuous Packaging to Build native FOSSology packages
Using containers and Continuous Packaging to Build native FOSSology packagesUsing containers and Continuous Packaging to Build native FOSSology packages
Using containers and Continuous Packaging to Build native FOSSology packagesBruno Cornec
 
Updating_PHP_on_OS_X_Server
Updating_PHP_on_OS_X_ServerUpdating_PHP_on_OS_X_Server
Updating_PHP_on_OS_X_Servertutorialsruby
 
Updating_PHP_on_OS_X_Server
Updating_PHP_on_OS_X_ServerUpdating_PHP_on_OS_X_Server
Updating_PHP_on_OS_X_Servertutorialsruby
 
&lt;img src="../i/r_14.png" />
&lt;img src="../i/r_14.png" />&lt;img src="../i/r_14.png" />
&lt;img src="../i/r_14.png" />tutorialsruby
 
Presentation1
Presentation1Presentation1
Presentation1cedrick
 
Presentation1
Presentation1Presentation1
Presentation1catarino
 
Continuing Evolution of Perl: Highlights of ActivePerl 5.14
Continuing Evolution of Perl: Highlights of ActivePerl 5.14Continuing Evolution of Perl: Highlights of ActivePerl 5.14
Continuing Evolution of Perl: Highlights of ActivePerl 5.14ActiveState
 
TAPIR PyWrapper3, at GBIF GB14 nodes meeting (2007)
TAPIR PyWrapper3, at GBIF GB14 nodes meeting (2007)TAPIR PyWrapper3, at GBIF GB14 nodes meeting (2007)
TAPIR PyWrapper3, at GBIF GB14 nodes meeting (2007)Dag Endresen
 
Deploying and maintaining your software with RPM/APT
Deploying and maintaining your software with RPM/APTDeploying and maintaining your software with RPM/APT
Deploying and maintaining your software with RPM/APTJoshua Thijssen
 
Managing Perl Installations: A SysAdmin's View
Managing Perl Installations: A SysAdmin's ViewManaging Perl Installations: A SysAdmin's View
Managing Perl Installations: A SysAdmin's ViewBaden Hughes
 
Approaching package manager
Approaching package managerApproaching package manager
Approaching package managerTimur Safin
 

Similaire à News from PEAR (20)

PEAR2 & Pyrus - The look ahead
PEAR2 & Pyrus - The look aheadPEAR2 & Pyrus - The look ahead
PEAR2 & Pyrus - The look ahead
 
Last Month in PHP - February 2016
Last Month in PHP - February 2016Last Month in PHP - February 2016
Last Month in PHP - February 2016
 
PHP on Heroku: Deploying and Scaling Apps in the Cloud
PHP on Heroku: Deploying and Scaling Apps in the CloudPHP on Heroku: Deploying and Scaling Apps in the Cloud
PHP on Heroku: Deploying and Scaling Apps in the Cloud
 
PEAR For The Masses
PEAR For The MassesPEAR For The Masses
PEAR For The Masses
 
Using containers and Continuous Packaging to Build native FOSSology packages
Using containers and Continuous Packaging to Build native FOSSology packagesUsing containers and Continuous Packaging to Build native FOSSology packages
Using containers and Continuous Packaging to Build native FOSSology packages
 
Updating_PHP_on_OS_X_Server
Updating_PHP_on_OS_X_ServerUpdating_PHP_on_OS_X_Server
Updating_PHP_on_OS_X_Server
 
Updating_PHP_on_OS_X_Server
Updating_PHP_on_OS_X_ServerUpdating_PHP_on_OS_X_Server
Updating_PHP_on_OS_X_Server
 
&lt;img src="../i/r_14.png" />
&lt;img src="../i/r_14.png" />&lt;img src="../i/r_14.png" />
&lt;img src="../i/r_14.png" />
 
Presentation1
Presentation1Presentation1
Presentation1
 
CentOS
CentOSCentOS
CentOS
 
CentOS
CentOSCentOS
CentOS
 
CentOS
CentOSCentOS
CentOS
 
Presentation1
Presentation1Presentation1
Presentation1
 
Olf2012
Olf2012Olf2012
Olf2012
 
Continuing Evolution of Perl: Highlights of ActivePerl 5.14
Continuing Evolution of Perl: Highlights of ActivePerl 5.14Continuing Evolution of Perl: Highlights of ActivePerl 5.14
Continuing Evolution of Perl: Highlights of ActivePerl 5.14
 
TAPIR PyWrapper3, at GBIF GB14 nodes meeting (2007)
TAPIR PyWrapper3, at GBIF GB14 nodes meeting (2007)TAPIR PyWrapper3, at GBIF GB14 nodes meeting (2007)
TAPIR PyWrapper3, at GBIF GB14 nodes meeting (2007)
 
Apache ssl
Apache ssl Apache ssl
Apache ssl
 
Deploying and maintaining your software with RPM/APT
Deploying and maintaining your software with RPM/APTDeploying and maintaining your software with RPM/APT
Deploying and maintaining your software with RPM/APT
 
Managing Perl Installations: A SysAdmin's View
Managing Perl Installations: A SysAdmin's ViewManaging Perl Installations: A SysAdmin's View
Managing Perl Installations: A SysAdmin's View
 
Approaching package manager
Approaching package managerApproaching package manager
Approaching package manager
 

Plus de SpeedPartner GmbH

Extbase/Fluid: Kennenlernen und ausprobieren
Extbase/Fluid: Kennenlernen und ausprobierenExtbase/Fluid: Kennenlernen und ausprobieren
Extbase/Fluid: Kennenlernen und ausprobierenSpeedPartner GmbH
 
Professional reports with SVG
Professional reports with SVGProfessional reports with SVG
Professional reports with SVGSpeedPartner GmbH
 
XUL - The future of user-interfaces on the web
XUL - The future of user-interfaces on the webXUL - The future of user-interfaces on the web
XUL - The future of user-interfaces on the webSpeedPartner GmbH
 
Websockets: Leichtgewichtige Verbindungen für Web-Applikationen
Websockets: Leichtgewichtige Verbindungen für Web-ApplikationenWebsockets: Leichtgewichtige Verbindungen für Web-Applikationen
Websockets: Leichtgewichtige Verbindungen für Web-ApplikationenSpeedPartner GmbH
 
Web-Performance-Optimierung mit varnish
Web-Performance-Optimierung mit varnishWeb-Performance-Optimierung mit varnish
Web-Performance-Optimierung mit varnishSpeedPartner GmbH
 
System-Management-Trio: Zentrale Verwaltung mit facter, puppet und augeas
System-Management-Trio: Zentrale Verwaltung mit facter, puppet und augeasSystem-Management-Trio: Zentrale Verwaltung mit facter, puppet und augeas
System-Management-Trio: Zentrale Verwaltung mit facter, puppet und augeasSpeedPartner GmbH
 
.EU – eine neue Top-Level-Domain
.EU – eine neue Top-Level-Domain.EU – eine neue Top-Level-Domain
.EU – eine neue Top-Level-DomainSpeedPartner GmbH
 
Leben und Arbeiten in einer Community
Leben und Arbeiten in einer CommunityLeben und Arbeiten in einer Community
Leben und Arbeiten in einer CommunitySpeedPartner GmbH
 
System-Management-Trio: Zentrale Verwaltung mit facter, puppet und augeas
System-Management-Trio: Zentrale Verwaltung mit facter, puppet und augeasSystem-Management-Trio: Zentrale Verwaltung mit facter, puppet und augeas
System-Management-Trio: Zentrale Verwaltung mit facter, puppet und augeasSpeedPartner GmbH
 
Sicherer Wegweiser im Internet: DNSSEC im praktischen Einsatz
Sicherer Wegweiser im Internet: DNSSEC im praktischen EinsatzSicherer Wegweiser im Internet: DNSSEC im praktischen Einsatz
Sicherer Wegweiser im Internet: DNSSEC im praktischen EinsatzSpeedPartner GmbH
 
System-Management-Trio: Zentrale Verwaltung mit facter, puppet und augeas
System-Management-Trio: Zentrale Verwaltung mit facter, puppet und augeasSystem-Management-Trio: Zentrale Verwaltung mit facter, puppet und augeas
System-Management-Trio: Zentrale Verwaltung mit facter, puppet und augeasSpeedPartner GmbH
 
Web-Performance-Optimierung mit varnish
Web-Performance-Optimierung mit varnishWeb-Performance-Optimierung mit varnish
Web-Performance-Optimierung mit varnishSpeedPartner GmbH
 
System-Management-Trio: Zentrale Verwaltung mit facter, puppet und augeas
System-Management-Trio: Zentrale Verwaltung mit facter, puppet und augeasSystem-Management-Trio: Zentrale Verwaltung mit facter, puppet und augeas
System-Management-Trio: Zentrale Verwaltung mit facter, puppet und augeasSpeedPartner GmbH
 
Sicherer Wegweiser im Internet: DNSSEC im praktischen Einsatz
Sicherer Wegweiser im Internet: DNSSEC im praktischen EinsatzSicherer Wegweiser im Internet: DNSSEC im praktischen Einsatz
Sicherer Wegweiser im Internet: DNSSEC im praktischen EinsatzSpeedPartner GmbH
 
Deploying IPv6 - planning, common pitfalls and security-considerations
Deploying IPv6 - planning, common pitfalls and security-considerationsDeploying IPv6 - planning, common pitfalls and security-considerations
Deploying IPv6 - planning, common pitfalls and security-considerationsSpeedPartner GmbH
 

Plus de SpeedPartner GmbH (20)

Extbase/Fluid: Kennenlernen und ausprobieren
Extbase/Fluid: Kennenlernen und ausprobierenExtbase/Fluid: Kennenlernen und ausprobieren
Extbase/Fluid: Kennenlernen und ausprobieren
 
Professional reports with SVG
Professional reports with SVGProfessional reports with SVG
Professional reports with SVG
 
Secure PHP environment
Secure PHP environmentSecure PHP environment
Secure PHP environment
 
XUL - The future of user-interfaces on the web
XUL - The future of user-interfaces on the webXUL - The future of user-interfaces on the web
XUL - The future of user-interfaces on the web
 
PHP-Applikationen mit PEAR
PHP-Applikationen mit PEARPHP-Applikationen mit PEAR
PHP-Applikationen mit PEAR
 
PHP-Entwicklung mit PEAR
PHP-Entwicklung mit PEARPHP-Entwicklung mit PEAR
PHP-Entwicklung mit PEAR
 
Websockets: Leichtgewichtige Verbindungen für Web-Applikationen
Websockets: Leichtgewichtige Verbindungen für Web-ApplikationenWebsockets: Leichtgewichtige Verbindungen für Web-Applikationen
Websockets: Leichtgewichtige Verbindungen für Web-Applikationen
 
Web-Performance-Optimierung mit varnish
Web-Performance-Optimierung mit varnishWeb-Performance-Optimierung mit varnish
Web-Performance-Optimierung mit varnish
 
System-Management-Trio: Zentrale Verwaltung mit facter, puppet und augeas
System-Management-Trio: Zentrale Verwaltung mit facter, puppet und augeasSystem-Management-Trio: Zentrale Verwaltung mit facter, puppet und augeas
System-Management-Trio: Zentrale Verwaltung mit facter, puppet und augeas
 
PEAR - An introduction
PEAR - An introductionPEAR - An introduction
PEAR - An introduction
 
Suchmaschinen-Optimierung
Suchmaschinen-OptimierungSuchmaschinen-Optimierung
Suchmaschinen-Optimierung
 
.EU – eine neue Top-Level-Domain
.EU – eine neue Top-Level-Domain.EU – eine neue Top-Level-Domain
.EU – eine neue Top-Level-Domain
 
Leben und Arbeiten in einer Community
Leben und Arbeiten in einer CommunityLeben und Arbeiten in einer Community
Leben und Arbeiten in einer Community
 
System-Management-Trio: Zentrale Verwaltung mit facter, puppet und augeas
System-Management-Trio: Zentrale Verwaltung mit facter, puppet und augeasSystem-Management-Trio: Zentrale Verwaltung mit facter, puppet und augeas
System-Management-Trio: Zentrale Verwaltung mit facter, puppet und augeas
 
Sicherer Wegweiser im Internet: DNSSEC im praktischen Einsatz
Sicherer Wegweiser im Internet: DNSSEC im praktischen EinsatzSicherer Wegweiser im Internet: DNSSEC im praktischen Einsatz
Sicherer Wegweiser im Internet: DNSSEC im praktischen Einsatz
 
System-Management-Trio: Zentrale Verwaltung mit facter, puppet und augeas
System-Management-Trio: Zentrale Verwaltung mit facter, puppet und augeasSystem-Management-Trio: Zentrale Verwaltung mit facter, puppet und augeas
System-Management-Trio: Zentrale Verwaltung mit facter, puppet und augeas
 
Web-Performance-Optimierung mit varnish
Web-Performance-Optimierung mit varnishWeb-Performance-Optimierung mit varnish
Web-Performance-Optimierung mit varnish
 
System-Management-Trio: Zentrale Verwaltung mit facter, puppet und augeas
System-Management-Trio: Zentrale Verwaltung mit facter, puppet und augeasSystem-Management-Trio: Zentrale Verwaltung mit facter, puppet und augeas
System-Management-Trio: Zentrale Verwaltung mit facter, puppet und augeas
 
Sicherer Wegweiser im Internet: DNSSEC im praktischen Einsatz
Sicherer Wegweiser im Internet: DNSSEC im praktischen EinsatzSicherer Wegweiser im Internet: DNSSEC im praktischen Einsatz
Sicherer Wegweiser im Internet: DNSSEC im praktischen Einsatz
 
Deploying IPv6 - planning, common pitfalls and security-considerations
Deploying IPv6 - planning, common pitfalls and security-considerationsDeploying IPv6 - planning, common pitfalls and security-considerations
Deploying IPv6 - planning, common pitfalls and security-considerations
 

Dernier

Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersThousandEyes
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?XfilesPro
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphNeo4j
 
Benefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksBenefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksSoftradix Technologies
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...HostedbyConfluent
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Paola De la Torre
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 

Dernier (20)

Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping Elbows
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
 
Benefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksBenefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other Frameworks
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 

News from PEAR

  • 1. 06.05.06 / Page 1 News from PEAR Stefan Neufeind LinuxTag 2006, Practical Linux Forum 2006, Wiesbaden Feel the power ... N e w s f r o m P E A R
  • 2. 06.05.06 / Page 2 News from PEAR Stefan Neufeind LinuxTag 2006, Practical Linux Forum 2006, Wiesbaden About me Stefan Neufeind, from Neuss (close to Düsseldorf) Zend-certified PHP-developer PEAR-maintainer for 3 years „Believes“ in open community-projects Working for SpeedPartner GmbH „Fullservice internet-solutions“ Consulting Development, including PHP with PEAR :-)
  • 3. 06.05.06 / Page 3 News from PEAR Stefan Neufeind LinuxTag 2006, Practical Linux Forum 2006, Wiesbaden Agenda What is PEAR? PEAR-package overview Getting PEAR / The installer New in PEAR 1.4.x, including: PEAR-channels PHAR („php archive“) Package news / examples Links
  • 4. 06.05.06 / Page 4 News from PEAR Stefan Neufeind LinuxTag 2006, Practical Linux Forum 2006, Wiesbaden What is PEAR? PHP Extension and Application Repository THE repository for PHP Founded 1999 by Stig S. Bakken Collection of high quality PHP-components ~370 packages in 36 categories ~350 package-maintainers, ~630 developers 100% free (licenses: PHP, Apache, BSD, LGPL) Tools for communication and collaboration
  • 5. 06.05.06 / Page 5 News from PEAR Stefan Neufeind LinuxTag 2006, Practical Linux Forum 2006, Wiesbaden What is PECL? PHP Extension Community Library Sister-repository of / split-off from PEAR Sharing many resources but separate website, commandline-installer, ... Components in C-language Compiled using PEAR installer for specific environment Not “that” easily installable (especially on shared host) ~140 packages in 28 categories
  • 6. 06.05.06 / Page 6 News from PEAR Stefan Neufeind LinuxTag 2006, Practical Linux Forum 2006, Wiesbaden What is PEAR? Consists of: Website (presentation, installer-backend, ...) Installer (commandline, web, GUI) Packages Documentation Support Quality assurance (PEAR-QA)
  • 7. 06.05.06 / Page 7 News from PEAR Stefan Neufeind LinuxTag 2006, Practical Linux Forum 2006, Wiesbaden PEAR-package overview No applications (almost :-) ) but components for dedicated needs Database abstraction Webservices Internationalization Network / Internet Graphic generation / modification Validation (email-addresses, IBAN, credit cards, ...) ...
  • 8. 06.05.06 / Page 8 News from PEAR Stefan Neufeind LinuxTag 2006, Practical Linux Forum 2006, Wiesbaden PEAR-package overview
  • 9. 06.05.06 / Page 9 News from PEAR Stefan Neufeind LinuxTag 2006, Practical Linux Forum 2006, Wiesbaden PEAR-package overview Components universally usable Cooperation instead of competing packages „Clean“ design Set of rules for quality-assurance and serviceability Used in large variety of applications Business-ready
  • 10. 06.05.06 / Page 10 News from PEAR Stefan Neufeind LinuxTag 2006, Practical Linux Forum 2006, Wiesbaden Getting PEAR / The installer PEAR-installer bundled since PHP 4.3.0 Automatically available, even on Windows :-) By default also included when self-compiling For earlier PHP-versions / distributions without PEAR simply use http://go-pear.org e.g. lynx -source http://go-pear.org | php -q or save go-pear-source and open in browser Note: PEAR-path should be in your include_path (php.ini)
  • 11. 06.05.06 / Page 11 News from PEAR Stefan Neufeind LinuxTag 2006, Practical Linux Forum 2006, Wiesbaden Getting PEAR / The installer Common installation-environment for PHP-code (PEAR) and C-extensions (PECL) Runable on many platforms (Linux, Windows, ...) Various “tastes”: commandline, web, GUI Taking care of package-dependencies etc. Tools for developers Wide adoptions of the installer pearified, eZ, prado, and other tools/frameworks
  • 12. 06.05.06 / Page 12 News from PEAR Stefan Neufeind LinuxTag 2006, Practical Linux Forum 2006, Wiesbaden Getting PEAR / The installer Installation of packages (e.g. commandline) with dependency-checks, conflict-checks etc.: Also allows for optional components, version-dependencies, ... # pear install Validate_Finance-alpha Did not download dependencies: pear/Validate, use --alldeps or -- onlyreqdeps to download automatically pear/Validate_Finance requires package "pear/Validate" (version >= 0.5.0) No valid packages found install failed
  • 13. 06.05.06 / Page 13 News from PEAR Stefan Neufeind LinuxTag 2006, Practical Linux Forum 2006, Wiesbaden Getting PEAR / The installer Useful commands to get you started: $ pear help [command] general or command-help $ pear config-show show settings like paths $ pear list list installed packages $ pear remote-list list available packages $ pear install <package> install a package $ pear uninstall <package> $ pear list-upgrades check for package upgrade $ pear upgrade <package> perform an upgrade
  • 14. 06.05.06 / Page 14 News from PEAR Stefan Neufeind LinuxTag 2006, Practical Linux Forum 2006, Wiesbaden New in PEAR 1.4.x Automatic dependency resolution --onlyreqdeps / -o --alldeps / -a Dependencies on external packages References to packages by URL Channels Using multiple channels Possibility to run your own channel Cross-channel dependencies
  • 15. 06.05.06 / Page 15 News from PEAR Stefan Neufeind LinuxTag 2006, Practical Linux Forum 2006, Wiesbaden New in PEAR 1.4.x New package.xml-format Improved flexibility Mirroring Multiple modules in one package Bundling packages with an application, ... Post-install-scripts (including interaction), e.g. for Initializing databases Moving files to the webroot ReST-webservice
  • 16. 06.05.06 / Page 16 News from PEAR Stefan Neufeind LinuxTag 2006, Practical Linux Forum 2006, Wiesbaden New in PEAR 1.4.x PHAR-support Only one PHP-file incl. archive, dynamic unpacking, ... Remote-installation Installing PEAR without shell access (ftp, ftps, sftp) Needs additional separate package PEAR_RemoteInstaller Installation of binary PECL-packages (e.g. on Windows)
  • 17. 06.05.06 / Page 17 News from PEAR Stefan Neufeind LinuxTag 2006, Practical Linux Forum 2006, Wiesbaden New in PEAR 1.4.x: ReST-webservice PEAR <=1.3 used XML-RPC for repository-access Widely used, but partially complex PEAR 1.4 uses ReST text-based, static files possible Less traffic Faster response-times Simplified API More flexible
  • 18. 06.05.06 / Page 18 News from PEAR Stefan Neufeind LinuxTag 2006, Practical Linux Forum 2006, Wiesbaden New in PEAR 1.4.x: Post-install scripts Allow quite powerful actions after installation Flexible API Script-calls defined in package2.xml Actions can be bound to specific files Predefined actions available Self-implemented actions possible with PHP-scripts Execution structured in single steps Interaction between user / PEAR installer
  • 19. 06.05.06 / Page 19 News from PEAR Stefan Neufeind LinuxTag 2006, Practical Linux Forum 2006, Wiesbaden New in PEAR 1.4.x: PHAR support PHAR = PHP archive One single PHP-file for an entire application “PHP's answer to .jar” Valid tar/php-files Works on PHP 4.3.0+ and PHP 5 PEAR-installer shipped as a PHAR Access to files using streams-API: <?php require_once('example.phar'); require_once('phar://example.phar/myscript.php'); ?>
  • 20. 06.05.06 / Page 20 News from PEAR Stefan Neufeind LinuxTag 2006, Practical Linux Forum 2006, Wiesbaden New in PEAR 1.4.x: PEAR-channels More commands related to channels: pear channel-discover http://example.com/channel.xml pear channel-alias channel://... example pear update-channels Channel-descriptions via channel.xml # pear list-channels Registered Channels: ==================== Channel Summary pear.php.net PHP Extension and Application Repository pecl.php.net PHP Extension Community Library __uri Pseudo-channel for static packages
  • 21. 06.05.06 / Page 21 News from PEAR Stefan Neufeind LinuxTag 2006, Practical Linux Forum 2006, Wiesbaden New in PEAR 1.4.x: PEAR-channels channel.xml-example (1/2): <channel version="1.0" xsi:schemaLocation="http://pear.php.net/channel-1.0 http://pear.php.net/dtd/channel-1.0.xsd"> <name>pear.example.com</name> <suggestedalias>foo</suggestedalias> <summary>Example channel.xml</summary> <validatepackage version="1.3.4">Foo_Validate</validatepackage> <servers> <primary port="8080" ssl="yes"> <xmlrpc> <!-- default path is xmlrpc.php --> <function version="1.0">logintest</function> <function version="1.0">package.listLatestReleases</function> [...] </xmlrpc> [...]
  • 22. 06.05.06 / Page 22 News from PEAR Stefan Neufeind LinuxTag 2006, Practical Linux Forum 2006, Wiesbaden New in PEAR 1.4.x: PEAR-channels channel.xml-example (2/2): <rest> <!-- no default path, all must be defined in baseurl --> <baseurl type="package"> http://pear.example.com/rest/1.0/package</baseurl> <baseurl type="category"> http://pear.example.com/rest/1.0/category</baseurl> </rest> <soap path="soapy.php"> <!-- default path is soap.php --> <function version="1.0">package.listAll</function> </soap> </primary> <mirror server="foo2.example.com/pearmirror"> <rest> <baseurl type="package"> http://foo2.example.com/rest/1.0/package</baseurl> </rest> </mirror> </servers> </channel>
  • 23. 06.05.06 / Page 23 News from PEAR Stefan Neufeind LinuxTag 2006, Practical Linux Forum 2006, Wiesbaden New in PEAR 1.4.x: PEAR-channels pearadise.net: Portal for PEAR- channels
  • 24. 06.05.06 / Page 24 News from PEAR Stefan Neufeind LinuxTag 2006, Practical Linux Forum 2006, Wiesbaden New in PEAR 1.4.x: PEAR-channels Famous channels include: eZ Horde Gnope.org Pearified PHP Application Tools Seagull / PHPkitchen Solar Symfony Project
  • 25. 06.05.06 / Page 25 News from PEAR Stefan Neufeind LinuxTag 2006, Practical Linux Forum 2006, Wiesbaden PEAR channel server Various ways/tools to set up a channel-server One implementation is Chiara_PEAR_Server PEAR-package, but developed outside of PEAR http://pear.chiaraquartet.net/ Status still alpha API may change Still many features to come
  • 26. 06.05.06 / Page 26 News from PEAR Stefan Neufeind LinuxTag 2006, Practical Linux Forum 2006, Wiesbaden PEAR channel server Discovering Greg Beaver's development-channel Installing package from the channel (and required deps) Running installation-scripts Asks for settings Creates database Generates channel.xml and REST $ pear channel-discover pear.chiaraquartet.net $ pear install -o chiara/Chiara_PEAR_Server-alpha $ pear run-scripts chiara/Chiara_PEAR_Server
  • 27. 06.05.06 / Page 27 News from PEAR Stefan Neufeind LinuxTag 2006, Practical Linux Forum 2006, Wiesbaden PEAR channel server
  • 28. 06.05.06 / Page 28 News from PEAR Stefan Neufeind LinuxTag 2006, Practical Linux Forum 2006, Wiesbaden Package news / examples Lately updated packages (small and incomplete selection): HTML_AJAX Image_Puzzle Image_3D MDB2, MDB2_Schema and drivers, ... Net_CDDB Services_Delicious Validate-packages, e.g. Validate_Finance VFS (Virtual File System API)
  • 29. 06.05.06 / Page 29 News from PEAR Stefan Neufeind LinuxTag 2006, Practical Linux Forum 2006, Wiesbaden Package news: HTML_AJAX Easy to work with (on client and server) OO JavaScript interface Class are exposed to Javascript as classes POST used for requests Async and sync calls Proxied calls: through stub objects for PHP classes in JS Proxyless calls: utility-functions like HTML_AJAX.replace()
  • 30. 06.05.06 / Page 30 News from PEAR Stefan Neufeind LinuxTag 2006, Practical Linux Forum 2006, Wiesbaden Package news: HTML_AJAX JavaScript error handling Browser-compatibility: Firefox 1.0+ Internet Explorer 5.5+ (maybe 5.0+) Opera 8.5+ Safari 2+ (Most things)
  • 31. 06.05.06 / Page 31 News from PEAR Stefan Neufeind LinuxTag 2006, Practical Linux Forum 2006, Wiesbaden Package news: HTML_AJAX server-example (1/2): <?php class search { public function __construct() { $this->pdo = new PDO('mysql:host=127.0.0.1;dbname=ajaxdata', 'ajaxuser', 'ajaxpw'); } public function get_records($search='') { $sql = "SELECT * FROM books "; if (trim($search) != '') { $sql .= "WHERE title LIKE ". $this->pdo->quote('%'.$search.'%'); } return $this->pdo->query($sql)->fetchAll(PDO_FETCH_ASSOC); } } [...]
  • 32. 06.05.06 / Page 32 News from PEAR Stefan Neufeind LinuxTag 2006, Practical Linux Forum 2006, Wiesbaden Package news: HTML_AJAX server-example (1/2): Loading generated JavaScript-interface on client: [...] include 'HTML/AJAX/Server.php'; class MyServer extends HTML_AJAX_Server { public $initMethods = true; public function initSearch() { $this->registerClass(new search()); } } $server = new MyServer(); $server->clientJsLocation = '/usr/share/pear/data/HTML_AJAX/js/'; $server->handleRequest(); <script src="xul_search.php?client=all" /> <script src="xul_search.php?stub=all" />
  • 33. 06.05.06 / Page 33 News from PEAR Stefan Neufeind LinuxTag 2006, Practical Linux Forum 2006, Wiesbaden Package news: Image_3D Creation of 3 dimensional images using PHP highly object oriented, PHP5 Creation of 3D objects like cubes, spheres, maps, text, pie, torus, cone, ... Your own object definitions Your own material definitions Import of 3DSMax files Unlimited number of light sources Output drivers: Rendering via GD, SVG or ASCII
  • 34. 06.05.06 / Page 34 News from PEAR Stefan Neufeind LinuxTag 2006, Practical Linux Forum 2006, Wiesbaden Package news: Image_3D Latest enhancements: Spotlights, pointlights and ambient lights Bezier curves Torus and cone Improved speed Driver for ASCII-output (including animation) Best of all: It's really cool :-)
  • 35. 06.05.06 / Page 35 News from PEAR Stefan Neufeind LinuxTag 2006, Practical Linux Forum 2006, Wiesbaden Package news: Image_3D
  • 36. 06.05.06 / Page 36 News from PEAR Stefan Neufeind LinuxTag 2006, Practical Linux Forum 2006, Wiesbaden Package news: Image_3D
  • 37. 06.05.06 / Page 37 News from PEAR Stefan Neufeind LinuxTag 2006, Practical Linux Forum 2006, Wiesbaden Package news: Image_3D Still pictures ... ... or even animated – hope it works here :-)
  • 38. 06.05.06 / Page 38 News from PEAR Stefan Neufeind LinuxTag 2006, Practical Linux Forum 2006, Wiesbaden Package news: MDB2 “stable” since beginning 2006 Supports everything “DB” offers (and more) API-mix of DB and PDO MDB2 for “high abstraction”, PDO for “lower layers” Working with joined forces; PDO-driver in the works Faster than DB (at least in “micro”-benchmarks) Uses modules Flexible and feature-rich (because of modules)
  • 39. 06.05.06 / Page 39 News from PEAR Stefan Neufeind LinuxTag 2006, Practical Linux Forum 2006, Wiesbaden Package news: MDB2 Most drivers use native prepared-API of RDBMS Full datatype-abstraction (Datatype module) LOBs are provided as regular stream resources Direct access to data (if RDBMS supports it) Allows using functions like fread() on LOBs from DB Allows INSERTs directly from files Debug callback support PHP5 iterator support Lazy connect support (connects when necessary)
  • 40. 06.05.06 / Page 40 News from PEAR Stefan Neufeind LinuxTag 2006, Practical Linux Forum 2006, Wiesbaden Package news: MDB2 Abstraction of functions (Function module) Many methods for administrating database-objects (Manager and reverse module) Creating tables, sequences, indexes, constraints Listing tables, indexes, ... Reverse engineering (table-field details) if (!$this->methodExists($this->db->function, 'functionTable')) { return; } $functionTable_clause = $this->db->function->functionTable(); $query = 'SELECT 1 '.$functionTable_clause;
  • 41. 06.05.06 / Page 41 News from PEAR Stefan Neufeind LinuxTag 2006, Practical Linux Forum 2006, Wiesbaden Package news: MDB2 Various emulations, where necessary (REPLACE, non correlated sub queries, ...) Functions like “lastInsertId” to work with autoincrements Several portability modes Buffered and unbuffered resultsets $mdb2->loadModule('Extended'); // fetch the next ID in the sequence or return php null $id = $mdb2->extended->getBeforeID('foo'); $query = 'INSERT INTO foo (id, bar) VALUES ('.$mdb2->quote($id, 'integer').', '.$mdb2->quote('xxx', 'text').')'; $mdb2->exec($query); // return $id or fetch the last inserted id via autoincrement $id = $mdb2->extended->getAfterID($id, 'foo');
  • 42. 06.05.06 / Page 42 News from PEAR Stefan Neufeind LinuxTag 2006, Practical Linux Forum 2006, Wiesbaden Package news: MDB2_Schema Creation of databases Reverse engineering into XML-format Comparing XML-schema-files Automatic modification of schema according to compare Working directly in DB or as SQL dump
  • 43. 06.05.06 / Page 43 News from PEAR Stefan Neufeind LinuxTag 2006, Practical Linux Forum 2006, Wiesbaden Package news: MDB2_Schema $dsn = $_REQUEST['type'].'://'. $_REQUEST['user'].':'.$_REQUEST['pass'].'@'. $_REQUEST['host'].'/'.$_REQUEST['name']; $schema =& MDB2_Schema::factory($dsn, $options); $dump_what = MDB2_SCHEMA_DUMP_STRUCTURE; // ..._CONTENT, ..._ALL $dump_config = array( 'output_mode' => 'file', 'output' => $_REQUEST['file'] ); $definition = $schema->getDefinitionFromDatabase(); $operation = $schema->dumpDatabase($definition, $dump_config, $dump_what);
  • 44. 06.05.06 / Page 44 News from PEAR Stefan Neufeind LinuxTag 2006, Practical Linux Forum 2006, Wiesbaden Links PEAR/PECL-website: http://pear.php.net/, http://pecl.php.net/ PEAR-channel aggregator: http://www.pearadise.net/ Greg Beaver's blog (incl. many examples for installer etc.): http://greg.chiaraquartet.net/ HTML_AJAX: http://wiki.bluga.net/HTML_AJAX/HomePage Image_3D: http://kore-nordmann.de/ MDB2 homepage with lots of examples: http://oss.backendmedia.com/MDB2/ MDB2_Schema-docs and examples: http://cvs.php.net/viewcvs.cgi/pear/MDB2_Schema/docs/
  • 45. 06.05.06 / Page 45 News from PEAR Stefan Neufeind LinuxTag 2006, Practical Linux Forum 2006, Wiesbaden Thanks go to ... Kore Lukas Markus Michael Pierre Toby All PHP / PEAR-colleagues :-)
  • 46. 06.05.06 / Page 46 News from PEAR Stefan Neufeind LinuxTag 2006, Practical Linux Forum 2006, Wiesbaden Thank you! Up-to-date slides available at: http://talks.speedpartner.de/ Questions? neufeind (at) speedpartner.de