This website works better with JavaScript.
Home
Help
Sign In
cacalabs
/
libcaca
mirror of
https://github.com/cacalabs/libcaca.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
7
Wiki
Activity
Browse Source
send correct content-type; add a missing doctype (although technically the table is not allowed inside pre, but that we will need to find another fix for)
tags/v0.99.beta17
Ben Wiley Sittler
bsittler
16 years ago
parent
34b0a2f3fb
commit
419d70e614
5 changed files
with
20 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
caca-php/examples/www/caca-php.css
+4
-0
caca-php/examples/www/cacainfo.php
+6
-0
caca-php/examples/www/dithering.php
+5
-2
caca-php/examples/www/figlet.php
+4
-0
caca-php/examples/www/text.php
+ 1
- 1
caca-php/examples/www/caca-php.css
View File
@@ -13,7 +13,7 @@ table, table tr
{
display: block;
}
table td
table t
r t
d
{
display: inline;
padding: 0px;
+ 4
- 0
caca-php/examples/www/cacainfo.php
View File
@@ -1,3 +1,6 @@
<?php
header('Content-Type: text/html; charset=UTF-8');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
@@ -16,6 +19,7 @@
?>
<head>
<title>sample program for libcaca php binding</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<link rel="StyleSheet" href="caca-php.css" type="text/css" />
</head>
<body text="silver" bgcolor="black">
+ 6
- 0
caca-php/examples/www/dithering.php
View File
@@ -1,3 +1,9 @@
<?php
header('Content-Type: text/html; charset=UTF-8');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Caca power!</title>
+ 5
- 2
caca-php/examples/www/figlet.php
View File
@@ -1,9 +1,12 @@
<?php
header('Content-Type: text/html; charset=UTF-8');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Caca power!</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<style type="text/css">
</style>
</head>
<body>
<?php
+ 4
- 0
caca-php/examples/www/text.php
View File
@@ -1,3 +1,6 @@
<?php
header('Content-Type: text/html; charset=UTF-8');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
@@ -20,6 +23,7 @@
?>
<head>
<title>demo for libcaca php binding</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<link rel="StyleSheet" href="caca-php.css" type="text/css" />
</head>
<body text="silver" bgcolor="black">
Write
Preview
Loading…
Cancel
Save