Slideshow an filive presentation
@@ -19,7 +19,7 @@ Performance
|
||||
<topic>PHP</topic>
|
||||
<title>PHP in 2012</title>
|
||||
<event>Cognizance 2012</event>
|
||||
<location>Roorkee, India</location>
|
||||
<location>Roorkee</location>
|
||||
<date>March 24, 2012</date>
|
||||
<speaker>Rasmus Lerdorf</speaker>
|
||||
<url>http://talks.php.net/show/cognizance</url>
|
||||
|
||||
75
filive.xml
Normal file
@@ -0,0 +1,75 @@
|
||||
<presentation
|
||||
template="simple"
|
||||
navmode="html"
|
||||
titlecolor="#000000"
|
||||
navbarbackground="#bbbbbb"
|
||||
navbartopiclinks="0"
|
||||
logo1="images/php-med-trans.png"
|
||||
titlesize="6em"
|
||||
navbarheight="3.5em"
|
||||
examplebackground="#ffffff"
|
||||
outputbackground="#ffffff"
|
||||
exampleclass="noshadow"
|
||||
exampleoutputclass="noshadow"
|
||||
>
|
||||
|
||||
<topic>PHP</topic>
|
||||
<title>PHP 5.4 and Beyond</title>
|
||||
<event>Future Insights</event>
|
||||
<location>Las Vegas</location>
|
||||
<date>May 2, 2012</date>
|
||||
<speaker>Rasmus Lerdorf</speaker>
|
||||
<url>http://talks.php.net/show/filive</url>
|
||||
<twitter>@rasmus</twitter>
|
||||
|
||||
<slide>slides/intro/titlepage.xml</slide>
|
||||
|
||||
<!--
|
||||
PHP is the Web scripting language that powers about 30% of all the Web sites in the world
|
||||
including some of the largest ones we all use on a daily basis. PHP 5.3 was released in
|
||||
June 2009. Now, almost 3 years later PHP 5.4 is here. Come learn about the latest features
|
||||
and how they, along with a number of new extensions, will affect the Web over the next couple
|
||||
of years. Traits, closures, the array shortcut, and other new language syntaxes as well as
|
||||
event-driven and asynchronous programming, NoSQL, and Support Vector Machines (SVM) will be
|
||||
covered in this fast-moving session.
|
||||
-->
|
||||
|
||||
<!-- Intro -->
|
||||
|
||||
<slide>slides/intro/php_slideshow.xml</slide>
|
||||
<slide>slides/fowa/hist2.xml</slide>
|
||||
<slide>slides/fowa/hist3.xml</slide>
|
||||
<slide>slides/fowa/hist4.xml</slide>
|
||||
<slide>slides/fowa/hist5.xml</slide>
|
||||
<slide>slides/intro/ecosystem.xml</slide>
|
||||
<slide>slides/intro/api_yql1.xml</slide>
|
||||
<slide>slides/intro/api_yql2.xml</slide>
|
||||
<slide>slides/intro/api_yql3.xml</slide>
|
||||
<slide>slides/intro/api_yql4.xml</slide>
|
||||
|
||||
<slide>slides/intro/2012_title.xml</slide>
|
||||
<slide>slides/intro/eventmq.xml</slide>
|
||||
<slide>slides/intro/svm.xml</slide>
|
||||
|
||||
<slide>slides/intro/php54_title.xml</slide>
|
||||
<slide>slides/intro/php54_perf.xml</slide>
|
||||
<slide>slides/intro/php54_removed.xml</slide>
|
||||
<slide>slides/intro/php54_traits.xml</slide>
|
||||
<slide>slides/intro/php54_sarrays.xml</slide>
|
||||
<slide>slides/intro/php54_object_func.xml</slide>
|
||||
<slide>slides/intro/php54_fad.xml</slide>
|
||||
<slide>slides/intro/php54_imc.xml</slide>
|
||||
<slide>slides/intro/php54_tfcs.xml</slide>
|
||||
<slide>slides/intro/php54_clstatic.xml</slide>
|
||||
<slide>slides/intro/php54_callable.xml</slide>
|
||||
<slide>slides/intro/php54_server.xml</slide>
|
||||
<slide>slides/intro/php54_session.xml</slide>
|
||||
<slide>slides/intro/php54_binary.xml</slide>
|
||||
<slide>slides/intro/php54_emsgs.xml</slide>
|
||||
<slide>slides/intro/php54_arraywarn.xml</slide>
|
||||
<slide>slides/intro/php54_json.xml</slide>
|
||||
<slide>slides/intro/php54_misc.xml</slide>
|
||||
<slide>slides/intro/contribute.xml</slide>
|
||||
<slide>slides/intro/key_ref2012.xml</slide>
|
||||
|
||||
</presentation>
|
||||
44
slides/intro/php_slideshow.php
Normal file
@@ -0,0 +1,44 @@
|
||||
<script type="text/javascript" src="/jquery.min.js"></script>
|
||||
<script type="text/javascript" src="/fadeslideshow.js">
|
||||
|
||||
/***********************************************
|
||||
* Ultimate Fade In Slideshow v2.0- (c) Dynamic Drive DHTML code library (www.dynamicdrive.com)
|
||||
* This notice MUST stay intact for legal use
|
||||
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for this script and 100s more
|
||||
***********************************************/
|
||||
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
var mygallery=new fadeSlideShow({
|
||||
wrapperid: "fadeshow", //ID of blank DIV on page to house Slideshow
|
||||
dimensions: [1000, 720], //width/height of gallery in pixels. Should reflect dimensions of largest image
|
||||
imagearray: [
|
||||
|
||||
<?php
|
||||
$slides = file(__DIR__.'/slideshow_images/order.txt');
|
||||
$cnt = count($slides);
|
||||
foreach($slides as $line) {
|
||||
$cnt--;
|
||||
list($img,$url,$type,$desc) = str_getcsv($line);
|
||||
echo "[\"/presentations/slides/intro/slideshow_images/$img\", \"$url\", \"$type\", \"$desc\"]";
|
||||
if($cnt) echo ",\n";
|
||||
else echo "\n"; // No comma on last element
|
||||
}
|
||||
?>
|
||||
|
||||
],
|
||||
displaymode: {type:'auto', pause:1500, cycles:1, wraparound:false},
|
||||
persist: false, //remember last viewed slide and recall within same session?
|
||||
fadeduration: 300, //transition duration (milliseconds)
|
||||
descreveal: "ondemand",
|
||||
togglerid: "fadeshowtoggler"
|
||||
})
|
||||
|
||||
</script>
|
||||
|
||||
<div id="fadeshow"></div>
|
||||
|
||||
<div id="fadeshowtoggler" style="width:270px; text-align:center; margin-top:10px">
|
||||
<a href="#" class="prev"><img src="/images/left.png" style="border-width:0" /></a> <span class="status" style="margin:0 50px; font-weight:bold"></span> <a href="#" class="next"><img src="/images/right.png" style="border-width:0" /></a>
|
||||
</div>
|
||||
|
||||
3
slides/intro/php_slideshow.xml
Normal file
@@ -0,0 +1,3 @@
|
||||
<slide title="">
|
||||
<example title="" marginleft="1.2em" rfontsize="1em" hide="1" result="1" filename="php_slideshow.php"/>
|
||||
</slide>
|
||||
BIN
slides/intro/slideshow_images/Baidu1.png
Normal file
|
After Width: | Height: | Size: 28 KiB |
BIN
slides/intro/slideshow_images/Baidu2.png
Normal file
|
After Width: | Height: | Size: 476 KiB |
BIN
slides/intro/slideshow_images/Baidu3.png
Normal file
|
After Width: | Height: | Size: 226 KiB |
BIN
slides/intro/slideshow_images/Baidu4.png
Normal file
|
After Width: | Height: | Size: 152 KiB |
BIN
slides/intro/slideshow_images/Cafcp1.png
Normal file
|
After Width: | Height: | Size: 349 KiB |
BIN
slides/intro/slideshow_images/Digg1.png
Normal file
|
After Width: | Height: | Size: 242 KiB |
BIN
slides/intro/slideshow_images/Digg2.png
Normal file
|
After Width: | Height: | Size: 208 KiB |
BIN
slides/intro/slideshow_images/Etsy1.png
Normal file
|
After Width: | Height: | Size: 410 KiB |
BIN
slides/intro/slideshow_images/Etsy2.png
Normal file
|
After Width: | Height: | Size: 376 KiB |
BIN
slides/intro/slideshow_images/Facebook1.png
Normal file
|
After Width: | Height: | Size: 116 KiB |
BIN
slides/intro/slideshow_images/Facebook2.png
Normal file
|
After Width: | Height: | Size: 272 KiB |
BIN
slides/intro/slideshow_images/Facebook3.png
Normal file
|
After Width: | Height: | Size: 143 KiB |
BIN
slides/intro/slideshow_images/Facebook4.png
Normal file
|
After Width: | Height: | Size: 264 KiB |
BIN
slides/intro/slideshow_images/Facebook5.png
Normal file
|
After Width: | Height: | Size: 458 KiB |
BIN
slides/intro/slideshow_images/Fatwallet1.png
Normal file
|
After Width: | Height: | Size: 154 KiB |
BIN
slides/intro/slideshow_images/Flickr1.png
Normal file
|
After Width: | Height: | Size: 407 KiB |
BIN
slides/intro/slideshow_images/Flickr2.png
Normal file
|
After Width: | Height: | Size: 775 KiB |
BIN
slides/intro/slideshow_images/Flickr3.png
Normal file
|
After Width: | Height: | Size: 355 KiB |
BIN
slides/intro/slideshow_images/Gaia1.png
Normal file
|
After Width: | Height: | Size: 386 KiB |
BIN
slides/intro/slideshow_images/Mtv1.png
Normal file
|
After Width: | Height: | Size: 533 KiB |
BIN
slides/intro/slideshow_images/Pando1.png
Normal file
|
After Width: | Height: | Size: 245 KiB |
BIN
slides/intro/slideshow_images/Photobucket1.png
Normal file
|
After Width: | Height: | Size: 612 KiB |
BIN
slides/intro/slideshow_images/Popsci1.png
Normal file
|
After Width: | Height: | Size: 362 KiB |
BIN
slides/intro/slideshow_images/Qq1.png
Normal file
|
After Width: | Height: | Size: 256 KiB |
BIN
slides/intro/slideshow_images/Qq2.png
Normal file
|
After Width: | Height: | Size: 298 KiB |
BIN
slides/intro/slideshow_images/Sina1.png
Normal file
|
After Width: | Height: | Size: 242 KiB |
BIN
slides/intro/slideshow_images/Sina2.png
Normal file
|
After Width: | Height: | Size: 358 KiB |
BIN
slides/intro/slideshow_images/Slickdeals1.png
Normal file
|
After Width: | Height: | Size: 222 KiB |
BIN
slides/intro/slideshow_images/Smugmug1.png
Normal file
|
After Width: | Height: | Size: 421 KiB |
BIN
slides/intro/slideshow_images/Sohu1.png
Normal file
|
After Width: | Height: | Size: 227 KiB |
BIN
slides/intro/slideshow_images/Taobao1.png
Normal file
|
After Width: | Height: | Size: 332 KiB |
BIN
slides/intro/slideshow_images/Taobao2.png
Normal file
|
After Width: | Height: | Size: 455 KiB |
BIN
slides/intro/slideshow_images/Taobao3.png
Normal file
|
After Width: | Height: | Size: 264 KiB |
BIN
slides/intro/slideshow_images/Techcrunch1.png
Normal file
|
After Width: | Height: | Size: 202 KiB |
BIN
slides/intro/slideshow_images/Uncrunched1.png
Normal file
|
After Width: | Height: | Size: 240 KiB |
BIN
slides/intro/slideshow_images/Virgin1.png
Normal file
|
After Width: | Height: | Size: 288 KiB |
BIN
slides/intro/slideshow_images/Weibo1.png
Normal file
|
After Width: | Height: | Size: 433 KiB |
BIN
slides/intro/slideshow_images/Wepay1.png
Normal file
|
After Width: | Height: | Size: 256 KiB |
BIN
slides/intro/slideshow_images/Wikipedia1.png
Normal file
|
After Width: | Height: | Size: 195 KiB |
BIN
slides/intro/slideshow_images/Wikipedia2.png
Normal file
|
After Width: | Height: | Size: 144 KiB |
BIN
slides/intro/slideshow_images/Wikipedia3.png
Normal file
|
After Width: | Height: | Size: 165 KiB |
BIN
slides/intro/slideshow_images/Wordpress1.png
Normal file
|
After Width: | Height: | Size: 425 KiB |
BIN
slides/intro/slideshow_images/Wordpress2.png
Normal file
|
After Width: | Height: | Size: 362 KiB |
BIN
slides/intro/slideshow_images/Wordpress3.png
Normal file
|
After Width: | Height: | Size: 337 KiB |
BIN
slides/intro/slideshow_images/Wordpress4.png
Normal file
|
After Width: | Height: | Size: 193 KiB |
BIN
slides/intro/slideshow_images/Wretch1.png
Normal file
|
After Width: | Height: | Size: 1.0 MiB |
BIN
slides/intro/slideshow_images/Wretch2.png
Normal file
|
After Width: | Height: | Size: 679 KiB |
BIN
slides/intro/slideshow_images/Yahoo1.png
Normal file
|
After Width: | Height: | Size: 493 KiB |
BIN
slides/intro/slideshow_images/Yahoo10.png
Normal file
|
After Width: | Height: | Size: 352 KiB |
BIN
slides/intro/slideshow_images/Yahoo11.png
Normal file
|
After Width: | Height: | Size: 425 KiB |
BIN
slides/intro/slideshow_images/Yahoo12.png
Normal file
|
After Width: | Height: | Size: 198 KiB |
BIN
slides/intro/slideshow_images/Yahoo2.png
Normal file
|
After Width: | Height: | Size: 261 KiB |
BIN
slides/intro/slideshow_images/Yahoo3.png
Normal file
|
After Width: | Height: | Size: 282 KiB |
BIN
slides/intro/slideshow_images/Yahoo4.png
Normal file
|
After Width: | Height: | Size: 268 KiB |
BIN
slides/intro/slideshow_images/Yahoo5.png
Normal file
|
After Width: | Height: | Size: 82 KiB |
BIN
slides/intro/slideshow_images/Yahoo6.png
Normal file
|
After Width: | Height: | Size: 513 KiB |
BIN
slides/intro/slideshow_images/Yahoo7.png
Normal file
|
After Width: | Height: | Size: 592 KiB |
BIN
slides/intro/slideshow_images/Yahoo8.png
Normal file
|
After Width: | Height: | Size: 462 KiB |
BIN
slides/intro/slideshow_images/Yahoo9.png
Normal file
|
After Width: | Height: | Size: 649 KiB |
BIN
slides/intro/slideshow_images/Zynga1.png
Normal file
|
After Width: | Height: | Size: 234 KiB |
65
slides/intro/slideshow_images/order.txt
Normal file
@@ -0,0 +1,65 @@
|
||||
Yahoo1.png,,,Yahoo!
|
||||
Yahoo2.png
|
||||
Yahoo3.png
|
||||
Yahoo4.png
|
||||
Yahoo5.png
|
||||
Yahoo6.png
|
||||
Yahoo7.png
|
||||
Yahoo8.png
|
||||
Yahoo9.png
|
||||
Yahoo10.png,,,Yahoo! Taiwan
|
||||
Yahoo11.png
|
||||
Yahoo12.png
|
||||
Wretch1.png,,,Wretch in Taiwan
|
||||
Wretch2.png
|
||||
Sohu1.png,,,Sohu Search Engine
|
||||
Baidu1.png,,,Baidu Search Engine
|
||||
Baidu2.png
|
||||
Baidu3.png
|
||||
Baidu4.png
|
||||
Taobao1.png,,,Alibaba companies
|
||||
Taobao2.png
|
||||
Taobao3.png
|
||||
Sina1.png,,,Sina Chinese media network
|
||||
Sina2.png
|
||||
Weibo1.png,,,Sina Weibo Microblogging
|
||||
Qq1.png,,,Tencent Instam Messaging
|
||||
Qq2.png
|
||||
Flickr1.png,,,Photo sites
|
||||
Flickr2.png
|
||||
Flickr3.png
|
||||
Smugmug1.png
|
||||
Photobucket1.png
|
||||
Digg1.png,,,News aggregators
|
||||
Digg2.png
|
||||
Wordpress4.png,,,Blogs!
|
||||
Wordpress1.png
|
||||
Techcrunch1.png
|
||||
Wordpress2.png
|
||||
Wordpress3.png
|
||||
Pando1.png
|
||||
Uncrunched1.png
|
||||
Popsci1.png
|
||||
Mtv1.png
|
||||
Wikipedia1.png,,,Wikipedia
|
||||
Wikipedia2.png
|
||||
Wikipedia3.png
|
||||
vBulletin1.png,,,Online Forums
|
||||
Gaia1.png
|
||||
Fatwallet1.png
|
||||
Slickdeals1.png
|
||||
Zynga1.png,,,Games
|
||||
Facebook1.png,,,Facebook
|
||||
Facebook2.png
|
||||
Facebook3.png
|
||||
Facebook4.png
|
||||
Facebook5.png
|
||||
Wepay1.png,,,Payments
|
||||
Etsy1.png,,,Etsy!
|
||||
Etsy2.png
|
||||
Cafcp1.png,,,Government
|
||||
Virgin1.png,,,Media
|
||||
sahana1.png,,,Save the world
|
||||
sahana2.png
|
||||
sahana3.png
|
||||
sahana_final.png
|
||||
BIN
slides/intro/slideshow_images/sahana1.png
Normal file
|
After Width: | Height: | Size: 172 KiB |
BIN
slides/intro/slideshow_images/sahana2.png
Normal file
|
After Width: | Height: | Size: 146 KiB |
BIN
slides/intro/slideshow_images/sahana3.png
Normal file
|
After Width: | Height: | Size: 76 KiB |
BIN
slides/intro/slideshow_images/sahana_final.png
Normal file
|
After Width: | Height: | Size: 216 KiB |
BIN
slides/intro/slideshow_images/vBulletin1.png
Normal file
|
After Width: | Height: | Size: 186 KiB |