| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 |
|
|---|
| 20 |
|
|---|
| 21 |
|
|---|
| 22 |
|
|---|
| 23 |
|
|---|
| 24 |
|
|---|
| 25 |
|
|---|
| 26 |
$currDir = dirname(__FILE__); |
|---|
| 27 |
|
|---|
| 28 |
$versionPath = $currDir . DIRECTORY_SEPARATOR . 'html' |
|---|
| 29 |
. DIRECTORY_SEPARATOR . 'include' |
|---|
| 30 |
. DIRECTORY_SEPARATOR . 'Jaws' |
|---|
| 31 |
. DIRECTORY_SEPARATOR . 'Version.php'; |
|---|
| 32 |
|
|---|
| 33 |
require_once $versionPath; |
|---|
| 34 |
|
|---|
| 35 |
$desc = <<<EOT |
|---|
| 36 |
Jaws is a Framework and Content Management System for building dynamic web sites. |
|---|
| 37 |
|
|---|
| 38 |
It aims to be User Friendly giving ease of use and lots of ways to customize web sites, but at the same time is Developer Frendly, it offers a simple and powerful framework to hack your own modules. Jaws is Free Software under the LGPL for core parts and GPL for the rest. |
|---|
| 39 |
EOT; |
|---|
| 40 |
|
|---|
| 41 |
|
|---|
| 42 |
$info = array('name' => 'Jaws', |
|---|
| 43 |
'desc' => $desc, |
|---|
| 44 |
'version' => JAWS_VERSION, |
|---|
| 45 |
'license' => 'LGPL', |
|---|
| 46 |
'authors' => array(array('lead', 'ion', 'Jonathan Hernandez', 'ion@suavizado.com'), |
|---|
| 47 |
array('lead', 'pfischer', 'Pablo Fischer', 'pablo@pablo.com.mx'), |
|---|
| 48 |
array('lead', 'afz', 'Ali Fazelzadeh', 'afz@php.net'), |
|---|
| 49 |
array('developer', 'dufuz', 'Helgi Thormar', 'dufuz@php.net'), |
|---|
| 50 |
array('developer', 'imcks8', 'Ivan Chavero', 'imcks8@gluch.org.mx'), |
|---|
| 51 |
array('developer', 'meebey', 'Mirco Bauer', 'meebey@meebey.net'), |
|---|
| 52 |
array('developer', 'kad', 'Jorge Gallegos', 'kad@blegh.net'), |
|---|
| 53 |
array('developer', 'amir', 'Amir Mohammad Saied', 'amir@php.net'), |
|---|
| 54 |
array('contributor', 'davidc', 'David Coallier', 'davidc@php.net'), |
|---|
| 55 |
array('contributor', 'toxickore', 'Emerson Posadas', 'toxickore@linuxmail.org'), |
|---|
| 56 |
), |
|---|
| 57 |
'deps' => array(), |
|---|
| 58 |
); |
|---|
| 59 |
?> |
|---|