Home  |  Linux  | Mysql  | PHP  | XML
From:Rasmus Lerdorf Date:Sun Aug 24 02:59:53 2008
Subject:cvs: presentations /slides/intro fr0.xml fr1.xml fr2.xml fr3.xml fr4.xml fr5.xml fr6.xml fr7.xml fr8.xml hurdles3.xml sh_ref.xml
rasmus		Sun Aug 24 08:59:53 2008 UTC

  Added files:                 
    /presentations/slides/intro	fr0.xml fr1.xml fr2.xml fr3.xml fr4.xml 
                               	fr5.xml fr6.xml fr7.xml fr8.xml 
                               	hurdles3.xml sh_ref.xml 
  Log:
  FrOSCon keynote
  
  

http://cvs.php.net/viewvc.cgi/presentations/slides/intro/fr0.xml?view=markup&rev=1.1
Index: presentations/slides/intro/fr0.xml
+++ presentations/slides/intro/fr0.xml
<slide title="Static and PHP baselines">

<break lines="1" />


<example fontsize="1.4em" title="Static HTML"><![CDATA[<html>
<head>
<title>Test</title>
</head>
<body>
Hello World
</body>
</html>]]></example>

<example fontsize="1.4em" type="shell" title="Performance"><![CDATA[
Response time:		        0.01 secs
Transaction rate:	      611.78 trans/sec
]]></example>

<example fontsize="1.4em" title="Trivial PHP"><![CDATA[<html>
<head>
<title><?php echo 'Test'?></title>
</head>
<body>
<?php echo 'Hello World' ?>
</body>
</html>]]></example>

<example fontsize="1.4em" type="shell" title="Performance"><![CDATA[
Response time:		        0.01 secs
Transaction rate:	      606.77 trans/sec
]]></example>

</slide>

http://cvs.php.net/viewvc.cgi/presentations/slides/intro/fr1.xml?view=markup&rev=1.1
Index: presentations/slides/intro/fr1.xml
+++ presentations/slides/intro/fr1.xml
<slide title="CakePHP 1.2.0rc2">

<break lines="1" />

<example fontsize="1.4em" title="Controller"><![CDATA[<?php
class HelloController extends AppController {
    var $layout = null;
    var $autoLayout = false;
    var $uses = array();
    var $helpers = array();
    function index()
    {
      $this->pageTitle = 'Test';
      $this->viewVars['body'] = 'Hello World';
    }
}
?>]]></example>

<example fontsize="1.4em" title="View"><![CDATA[<html>
<head>
<title><?php echo $this->pageTitle?></title>
</head>
<body>
<?php echo $this->viewVars['body'] ?>
</body>
</html>]]></example>

<example fontsize="1.4em" type="shell" title="Performance"><![CDATA[
Response time:		        0.19 secs
Transaction rate:	       25.88 trans/sec
]]></example>

<break lines="1" />
<image filename="cake.png" width="1000" align="center" />
<break lines="1" />
<image filename="cake_c.png" width="1000" align="center" />
</slide>

http://cvs.php.net/viewvc.cgi/presentations/slides/intro/fr2.xml?view=markup&rev=1.1
Index: presentations/slides/intro/fr2.xml
+++ presentations/slides/intro/fr2.xml
<slide title="Symfony 1.1">

<break lines="1" />

<example fontsize="1.4em" title="Controller"><![CDATA[<?php
class demoActions extends sfActions
{
  public function executeHelloWorld($request)
  {
    $this->title = 'Test';
    $this->body = 'Hello World';
    return sfView::SUCCESS;
  }
}
?>]]></example>

<example fontsize="1.4em" title="View"><![CDATA[<html>
<head>
<title><?php echo $title?></title>
</head>
<body>
<?php echo $body ?>
<?php decorate_with(false) ?>
</body>
</html>]]></example>

<example fontsize="1.4em" type="shell" title="Performance"><![CDATA[
Response time:		        0.05 secs
Transaction rate:	      100.63 trans/sec
]]></example>

<break lines="1" />
<image filename="sy.png" width="1000" align="center" />
<break lines="1" />
<image filename="sy_c.png" width="1000" align="center" />

</slide>

http://cvs.php.net/viewvc.cgi/presentations/slides/intro/fr3.xml?view=markup&rev=1.1
Index: presentations/slides/intro/fr3.xml
+++ presentations/slides/intro/fr3.xml
<slide title="Solar 1.0.0alpha1">

<break lines="1" />

<example fontsize="1.4em" title="Controller"><![CDATA[<?php
class Solar_App_Hello extends Solar_Controller_Page {
    protected $_action_default = 'index';
    public $title, $body;

    public function actionIndex() {
      $this->title = 'Test';
      $this->body = 'Hello World';
    }
}
?>]]></example>

<example fontsize="1.4em" title="View"><![CDATA[<html>
<head>
<title><?php echo $this->title?></title>
</head>
<body>
<?php echo $this->body ?>
</body>
</html>]]></example>

<example fontsize="1.4em" type="shell" title="Performance"><![CDATA[
Response time:		        0.02 secs
Transaction rate:	      271.18 trans/sec
]]></example>

<break lines="1" />
<image filename="solar.png" width="1000" align="center" />
<break lines="1" />
<image filename="solar_c.png" width="1000" align="center" />

</slide>

http://cvs.php.net/viewvc.cgi/presentations/slides/intro/fr4.xml?view=markup&rev=1.1
Index: presentations/slides/intro/fr4.xml
+++ presentations/slides/intro/fr4.xml
<slide title="Agavi 1.0-beta1">

<break lines="1" />

<example fontsize="1.4em" title="Controller"><![CDATA[<?php
class Default_HelloWorldSuccessView extends DemoDefaultBaseView {
  public function executeHtml(AgaviRequestDataHolder $rd) {
    $this->setupHtml($rd);

    $this->setAttribute('title', 'Test');
    $this->setAttribute('body', 'Hello World');
  }
}
?>]]></example>

<example fontsize="1.4em" title="View"><![CDATA[<html>
<head>
<title><?php echo $template['title']?></title>
</head>
<body>
<?php echo $template['body'] ?>
</body>
</html>]]></example>

<example fontsize="1.4em" type="shell" title="Performance"><![CDATA[
Response time:              0.60 secs
Transaction rate:           8.24 trans/sec
]]></example>

<break lines="1" />
<image filename="agavi.png" width="1000" align="center" />
<break lines="1" />
<image filename="agavi_c.png" width="1000" align="center" />
</slide>

http://cvs.php.net/viewvc.cgi/presentations/slides/intro/fr5.xml?view=markup&rev=1.1
Index: presentations/slides/intro/fr5.xml
+++ presentations/slides/intro/fr5.xml
<slide title="Zend Framework 1.6.0-rc1">

<break lines="1" />

<example fontsize="1.4em" title="Controller"><![CDATA[<?php
require_once 'Zend/Controller/Action.php';
class IndexController extends Zend_Controller_Action {
  public function indexAction() {
    $this->view->title='Test';
    $this->view->body='Hello, World';
  }
}
?>]]></example>

<example fontsize="1.4em" title="View"><![CDATA[<html>
<head>
<title><?php echo $this->title?></title>
</head>
<body>
<?php echo $this->body ?>
</body>
</html>]]></example>

<example fontsize="1.4em" type="shell" title="Performance"><![CDATA[
Response time:		        0.04 secs
Transaction rate:	      125.79 trans/sec
]]></example>

<example fontsize="1.4em" type="shell" title="Prepend the ZF path"><![CDATA[
- php_value include_path .:/usr/local/lib/php:/var/www/zf/source
+ php_value include_path /var/www/zf/source:.:/usr/local/lib/php
]]></example>

<example fontsize="1.4em" type="shell" title="Performance"><![CDATA[
Response time:		        0.04 secs
Transaction rate:	      130.08 trans/sec
]]></example>

<break lines="1" />
<image filename="zf.png" width="1000" align="center" />
<break lines="1" />
<image filename="zf_c.png" width="1000" align="center" />
</slide>

http://cvs.php.net/viewvc.cgi/presentations/slides/intro/fr6.xml?view=markup&rev=1.1
Index: presentations/slides/intro/fr6.xml
+++ presentations/slides/intro/fr6.xml
<slide title="CodeIgniter 1.6.3">

<break lines="1" />

<example fontsize="1.4em" title="Controller"><![CDATA[<?php
class HelloWorld extends Controller {
  function HelloWorld() {
    parent::Controller();
  }

  function index() {
    $data['title']='Test';
    $data['message']='Hello world!';
    $this->load->view('helloworld',$data);
  }
}
?>]]></example>

<example fontsize="1.4em" title="View"><![CDATA[<html>
<head>
<title><?php echo $title;?></title>
</head>
<body>
<h1><?php echo $message?></h1>
</body>
</html>]]></example>

<example fontsize="1.4em" type="shell" title="Performance"><![CDATA[
Response time:              0.03 secs
Transaction rate:         305.90 trans/sec
]]></example>

<break lines="1" />
<image filename="ci.png" width="1000" align="center" />
<break lines="1" />
<image filename="ci_c.png" width="1000" align="center" />

</slide>

http://cvs.php.net/viewvc.cgi/presentations/slides/intro/fr7.xml?view=markup&rev=1.1
Index: presentations/slides/intro/fr7.xml
+++ presentations/slides/intro/fr7.xml
<slide title="Prado 3.1.2">

<break lines="1" />

<example fontsize="1.4em" title="Controller"><![CDATA[<?php
class Home extends TPage {
  public function onLoad(){
    $this->setTitle("Test");
    $this->HelloLabel->Text = "Hello World!";
  }
}
?>]]></example>

<example fontsize="1.4em" title="View"><![CDATA[<html>
<com:THead>
</com:THead>
<body>
  <com:TLabel ID="HelloLabel" />
</body>
</html>]]></example>

<example fontsize="1.4em" type="shell" title="Performance"><![CDATA[
Response time:              0.06 secs
Transaction rate:          76.95 trans/sec
]]></example>

<break lines="1" />
<image filename="prado.png" width="1000" align="center" />
<break lines="1" />
<image filename="prado_c.png" width="1000" align="center" />

</slide>

http://cvs.php.net/viewvc.cgi/presentations/slides/intro/fr8.xml?view=markup&rev=1.1
Index: presentations/slides/intro/fr8.xml
+++ presentations/slides/intro/fr8.xml
<slide title="Drupal 6.4">

<break lines="1" />

<example fontsize="1.4em" title="Drupal Module"><![CDATA[<?php
function hello_menu() {
  $items = array();

  $items['hello'] = array(
    'title' => 'Hello world page...',
    'page callback' => 'hello_page',
    'access arguments' => array('access content'),
    'type' => MENU_CALLBACK,
  );
  return $items;
}

function hello_page() {
  return '<p>Hello world</p>';
}
?>]]></example>

<example fontsize="1.4em" type="shell" title="Performance"><![CDATA[
Response time:              0.10 secs
Transaction rate:          51.37 trans/sec
]]></example>

<break lines="1" />
<image filename="drupal.png" width="1000" align="center" />

</slide>

http://cvs.php.net/viewvc.cgi/presentations/slides/intro/hurdles3.xml?view=markup&rev=1.1
Index: presentations/slides/intro/hurdles3.xml
+++ presentations/slides/intro/hurdles3.xml
<slide title="Complexity Victims">
<break lines="4" />
<blurb fontsize="17em" align="center">Scalability</blurb>
<blurb fontsize="17em" align="center">Performance</blurb>
<blurb fontsize="17em" align="center">Security</blurb>
<blurb fontsize="17em" align="center">You!</blurb>
</slide>

http://cvs.php.net/viewvc.cgi/presentations/slides/intro/sh_ref.xml?view=markup&rev=1.1
Index: presentations/slides/intro/sh_ref.xml
+++ presentations/slides/intro/sh_ref.xml
<slide title="Resources">
<blurb> </blurb>
<blurb> </blurb>
<blurb> </blurb>
<blurb> </blurb>
<link fontsize="3em" marginleft="2em" leader="Slides: " href=":-:url:-:"/>
<link fontsize="3em" marginleft="2em" leader="YSlow: " href="http://developer.yahoo.com/yslow/"/>
<link fontsize="3em" marginleft="2em" leader="Xdebug Profiling: " href="http://xdebug.org/docs/profiler"/>

</slide>

Navigate in group php.pres at sever news.php.net
Previous Next




  
© No Copyright
You are free to use Anything
Site Maintained by PHP Developer
Powered By PHP Consultants