com presentations: tweaks: mx14.html slides/intro/nold.xml slides/intro/nold2.xml slides/intro/nold3.xml
[email protected] (Rasmus Lerdorf)
| Newsgroups | php.pres |
|---|---|
| Message-ID | <[email protected]> |
Commit: 9e421207f104681147d669afb7f2818032f446fb Author: Rasmus Lerdorf <[email protected]> Tue, 2 Dec 2014 22:18:30 -0800 Parents: 65d6f22b90939c0d591db9312bef6ae79745cc87 Branches: master Link: http://git.php.net/?p=presentations.git;a=commitdiff;h=9e421207f104681147d669afb7f2818032f446fb Log: tweaks Changed paths: M mx14.html M slides/intro/nold.xml M slides/intro/nold2.xml M slides/intro/nold3.xml Diff: diff --git a/mx14.html b/mx14.html index 430ef95..8653b50 100644 --- a/mx14.html +++ b/mx14.html @@ -54,7 +54,7 @@ </section> <section> <h2 margin-bottom="2em">1993</h2><br> - <pre><code>#include <stdio.h> + <pre><code class="C">#include <stdio.h> #include <stdlib.h> #include <ctype.h> #include <string.h> @@ -121,7 +121,7 @@ void main(int argc, char *argv[]) { </section> <section> <h2 margin-bottom="2em">1993</h2><br> - <pre><code>use CGI qw(:standard); + <pre><code class="Perl">use CGI qw(:standard); print header; print start_html('Form Example'), h1('My Example Form'), @@ -141,7 +141,7 @@ print end_html;</code></pre> </section> <section> <h2 margin-bottom="2em">1994</h2><br> - <pre><code><html><head><title>Form Example</title></head> + <pre><code class="PHP"><html><head><title>Form Example</title></head> <body><h1>My Example Form</h1> <form action="form.phtml" method="POST"> Name: <input type="text" name="name"> diff --git a/slides/intro/nold.xml b/slides/intro/nold.xml index 8615e03..a4d2ac3 100644 --- a/slides/intro/nold.xml +++ b/slides/intro/nold.xml @@ -1,5 +1,5 @@ <slide title="1993"> -<example fontsize="1.5em" ><![CDATA[#include <stdio.h> +<example fontsize="1.5em" type="C"><![CDATA[#include <stdio.h> #include <stdlib.h> #include <ctype.h> #include <string.h> diff --git a/slides/intro/nold2.xml b/slides/intro/nold2.xml index dcbccf2..e524926 100644 --- a/slides/intro/nold2.xml +++ b/slides/intro/nold2.xml @@ -2,7 +2,7 @@ <break lines="1" /> -<example><![CDATA[use CGI qw(:standard); +<example type="Perl"><![CDATA[use CGI qw(:standard); print header; print start_html('Form Example'), h1('My Example Form'), diff --git a/slides/intro/nold3.xml b/slides/intro/nold3.xml index 4fd92d3..8a80b88 100644 --- a/slides/intro/nold3.xml +++ b/slides/intro/nold3.xml @@ -2,7 +2,7 @@ <break lines="1" /> -<example><![CDATA[<html><head><title>Form Example</title></head> +<example type="PHP"><![CDATA[<html><head><title>Form Example</title></head> <body><h1>My Example Form</h1> <form action="form.phtml" method="POST"> Name: <input type="text" name="name">