mirror of
https://github.com/php/presentations.git
synced 2026-03-23 23:22:22 +01:00
Second Zagreb talk
This commit is contained in:
@@ -1,4 +1,3 @@
|
||||
|
||||
// Catch JSON replies
|
||||
var fN = function callBack(o) {
|
||||
myDebug(o.responseText);
|
||||
@@ -62,20 +61,20 @@ var callback = { success:fN }
|
||||
|
||||
// Post form fields from formName to target
|
||||
function postForm(target,formName) {
|
||||
YAHOO.util.Connect.setForm(formName);
|
||||
YAHOO.util.Connect.asyncRequest('POST',target,callback);
|
||||
YAHOO.util.Connect.setForm(formName);
|
||||
YAHOO.util.Connect.asyncRequest('POST',target,callback);
|
||||
}
|
||||
|
||||
function postData(target,postData) {
|
||||
YAHOO.util.Connect.asyncRequest('POST',target,callback,postData);
|
||||
function postData(target,data) {
|
||||
YAHOO.util.Connect.asyncRequest('POST',target,callback,data);
|
||||
}
|
||||
|
||||
function addClass(o,cls) {
|
||||
o.className+=" "+cls;
|
||||
o.className+=" "+cls;
|
||||
}
|
||||
|
||||
function delClass(o,cls) {
|
||||
o.className=o.className.replace(new RegExp(" "+cls+"\\b"), "");
|
||||
o.className=o.className.replace(new RegExp(" "+cls+"\\b"), "");
|
||||
}
|
||||
|
||||
function fade(o, dur, fnc) {
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
<break lines="1" />
|
||||
<link fontsize="2.5em" marginleft="2em" leader="Example App: " href="http://talks.php.net/presentations/slides/mvc/example/add.php"/>
|
||||
<break lines="1" />
|
||||
<example title="View - add.php" fontsize="1.7em" marginright="0em" filename="example/add.php" />
|
||||
<example title="View - add.php" fontsize="1.6em" marginright="0em" filename="example/add.php" />
|
||||
</slide>
|
||||
|
||||
41
zagreb2.xml
Normal file
41
zagreb2.xml
Normal file
@@ -0,0 +1,41 @@
|
||||
<presentation
|
||||
template="php2"
|
||||
navmode="html"
|
||||
titlecolor="#1111aa"
|
||||
navbarbackground="url(images/trans-ffffff.png)"
|
||||
logo1="images/php-med-trans-light.gif"
|
||||
titlesize="2em"
|
||||
navbarheight="4.1em"
|
||||
>
|
||||
|
||||
<topic>PHP</topic>
|
||||
<title>Architecture and Performance</title>
|
||||
<event>DORS/CLUC 2006</event>
|
||||
<location>Zagreb</location>
|
||||
<date>Apr.21, 2006</date>
|
||||
<speaker>Rasmus Lerdorf</speaker>
|
||||
<email>rasmus@php.net</email>
|
||||
<url>http://talks.php.net/show/zagreb2</url>
|
||||
|
||||
<slide>slides/intro/titlepage.xml</slide>
|
||||
|
||||
<slide>slides/mvc/mvc.xml</slide>
|
||||
<slide>slides/mvc/example.xml</slide>
|
||||
<slide>slides/mvc/mvc_view1.xml</slide>
|
||||
<slide>slides/mvc/mvc_view2.xml</slide>
|
||||
<slide>slides/mvc/mvc_view3.xml</slide>
|
||||
<slide>slides/mvc/mvc_controller.xml</slide>
|
||||
<slide>slides/mvc/mvc_model.xml</slide>
|
||||
|
||||
<slide>slides/bm06/profit.xml</slide>
|
||||
<slide>slides/bm06/initial.xml</slide>
|
||||
<slide>slides/bm06/pg.xml</slide>
|
||||
<slide>slides/bm06/pg_persist.xml</slide>
|
||||
<slide>slides/bm06/mysql.xml</slide>
|
||||
<slide>slides/bm06/apc.xml</slide>
|
||||
<slide>slides/bm06/apc2.xml</slide>
|
||||
<slide>slides/bm06/extreme.xml</slide>
|
||||
|
||||
<slide>slides/intro/web2_ref.xml</slide>
|
||||
|
||||
</presentation>
|
||||
Reference in New Issue
Block a user