使用 JavaScript能使本网站更好的工作。
首页
帮助
登录
cacalabs
/
libcaca
镜像自地址
https://github.com/cacalabs/libcaca.git
关注
1
点赞
0
派生
0
代码
工单
0
版本发布
7
百科
动态
浏览代码
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 年前
父节点
34b0a2f3fb
当前提交
419d70e614
共有
5 个文件被更改
,包括
20 次插入
和
3 次删除
分列视图
Diff 选项
显示统计
下载 Patch 文件
下载 Diff 文件
+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
查看文件
@@ -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
查看文件
@@ -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
查看文件
@@ -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
查看文件
@@ -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
查看文件
@@ -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">
撰写
预览
正在加载...
取消
保存