Added DB2 SQL, Gri, ici, Icon, J, Jade, Jason, Jess, K, LSL, M4, MEL, QuakeC, Qore, Simula, SMIL, SVG, UniComal, unlambda, VRML, VML, WSH, XBase++, XLogo, XPL0, XSLT, XUL and ZIM

This commit is contained in:
William Suggs
2009-03-02 13:08:45 +08:00
committed by Mike Donaghy
parent 0661854566
commit 2a5b239357
28 changed files with 155 additions and 0 deletions

4
s/simula.sim Normal file
View File

@@ -0,0 +1,4 @@
Begin
OutText ("Hello World!");
Outimage;
End;

13
s/smil.smil Normal file
View File

@@ -0,0 +1,13 @@
<smil>
<head>
<layout>
<root-layout width="300" height="160" background-color="white"/>
<region id="text_region" left="115" top="60"/>
</layout>
</head>
<body>
<text src="data:,Hello%20World!" region="text_region">
<param name="fontFace" value="Arial"/>
</text>
</body>
</smil>

9
s/svg.svg Normal file
View File

@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<svg width="240" height="100" viewBox="0 0 240 100" zoomAndPan="disable"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Hello World</title>
<g>
<text x="10" y="50">Hello World</text>
<animate attributeName='opacity' values='0;1' dur='4s' fill='freeze' begin="0s"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 399 B