Changeset 2908 for branches

Show
Ignore:
Timestamp:
06/25/2008 02:52:51 PM (5 months ago)
Author:
msaraujo
Message:
 
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/website/application/views/pages/home/home_pt_BR.php

    r2904 r2908  
    1 test 
     1<p class="intro">Kohana is a <strong>PHP 5 framework</strong> that uses the <strong>Model View Controller</strong> architectural pattern. It aims to be <strong>secure</strong>, <strong>lightweight</strong>, and <strong>easy</strong> to use.</p> 
     2<div style="float:left; padding-right: 4em;"> 
     3        <h2>Recursos</h2> 
     4        <ul> 
     5                <li>Extremamente seguro</li> 
     6                <li>Demasiadamente leve</li> 
     7                <li>Curta Curva de Aprendizagem</li> 
     8                <li>Utiliza o modelo <abbr title="Model View Controller">MVC</abbr></li> 
     9                <li>100% compativel UTF-8</li> 
     10                <li>Loosely coupled architecture</li> 
     11                <li>Extremamente facil para estender</li> 
     12        </ul> 
     13</div> 
     14<div style="float:left;"> 
     15        <h2>Technology</h2> 
     16        <ul> 
     17                <li>Strict PHP 5 <abbr title="Object Oriented Programming">OOP</abbr></li> 
     18                <li>Simple database abstraction using SQL helpers</li> 
     19                <li>Multiple session drivers (native, database, and cookie)</li> 
     20                <!-- <li>Advanced cache system with drivers (file, database, memcache, shmop)</li> --> 
     21                <li>Powerful event handler allows small modifications dynamically</li> 
     22                <li>Originally based on <?php echo html::anchor('http://www.codeigniter.com', 'CodeIgniter') ?></li> 
     23        </ul> 
     24</div> 
     25<h3 style="clear:both;padding-top:1em;">How is Kohana Different?</h3> 
     26<p>Although Kohana reuses many common design patterns and concepts, there are some things that make Kohana stand out:</p> 
     27<ol> 
     28        <li><strong>Community, not company, driven.</strong> Kohana development is driven by a team of dedicated people that need a framework for fast, powerful solutions.</li> 
     29        <li><strong>Strict PHP 5 <abbr title="Object Oriented Programming">OOP</abbr>.</strong> Offers many benefits: visibility protection, automatic class loading, overloading, interfaces, abstracts, and singletons.</li> 
     30        <li><strong>Extremely lightweight.</strong> Kohana has no dependencies on PECL extensions or PEAR libraries. Large, monolithic libraries are avoided in favor of optimized solutions.</li> 
     31        <li><strong>GET, POST, COOKIE, <em>and</em> SESSION arrays all work as expected.</strong> Kohana does not limit your access to global data, but offers  filtering and <abbr title="Cross Site Scripting">XSS</abbr> protection.</li> 
     32        <li><strong>True auto-loading of classes.</strong> True on-demand loading of classes, as they are requested in your application.</li> 
     33        <li><strong>No namespace conflicts.</strong> All classes are suffixed to allow similar names between components, for a more coherent API.</li> 
     34        <li><strong>Cascading resources offer unparalleled extensibility.</strong> Almost every part of Kohana can be overloaded or extended without editing core system files. Modules allow multi-file plugins to be added to your application, transparently.</li> 
     35        <li><strong>Library drivers and API consistency.</strong> Libraries can use different "drivers" to handle different external <abbr title="Application Programming Interface">API</abbr>s transparently. For example, multiple session storage options are available (database, cookie, and native), but the same interface is used for all of them. This allows new drivers to be developed for existing libraries, which keeps the API consistent and transparent.</li> 
     36        <li><strong>Powerful event handler.</strong> Observer-style event handlers allow for extreme levels of customization potential.</li> 
     37        <li><strong>Rapid development cycle.</strong> Rapid development results in faster response to user bugs and requests.</li> 
     38</ol>