Index: kit/CHANGELOG
diff -u kit/CHANGELOG:1.9 kit/CHANGELOG:removed
--- kit/CHANGELOG:1.9	Sat Sep  5 00:11:21 1998
+++ kit/CHANGELOG	Mon Aug 15 05:10:01 2005
@@ -1,51 +0,0 @@
-CHANGELOG for magicpoint
-$Id: CHANGELOG,v 1.9 1998/09/04 15:11:21 onoe Exp $
-
-Fri Sep  5 1998  onoe@sm.sony.co.jp
-	* handle key inputs from invoked terminal as pressed on Xserver,
-	  even if the Xserver is running on a remote host.
-
-Mon Aug 26 1998  itojun@iijlab.net
-	* new copyright. (BSDish copyright without clause 3)
-
-Mon Aug 25 1998  itojun@iijlab.net
-	* print.c: better x11/freetype/vflib -> postscript font mapping.
-
-Mon Aug 23 1998  kato@wide.ad.jp
-	* embedded image support (added mgpembed.pl and embed.c)
-
-Mon Aug 22 1998  itojun@iijlab.net
-	* added contrib/xmindpath, MindPath PocketPoint user-level driver.
-
-Fri Jul 10 11:57:59 JST 1998  itojun@iijlab.net
-	* cache gs-generated image file.
-	  Suggested by: luigi@FreeBSD.org
-
-Mon Jul  6 11:38:32 JST 1998  itojun@iijlab.net
-	* capable of handling GB2312 and KSC5601 encoding.
-	  they must be encoded by using iso-2022 like escape sequences.
-	  EUC-cn or EUC-kr does not work.
-	* -x option is added.
-
-Thu Jul  2 18:04:16 JST 1998  itojun@iijlab.net
-	* eliminate gsview.
-	* revamp "xfont" directive. (see SYNTAX for detail)
-
-Thu Jun 25 13:10:28 JST 1998  itojun@iijlab.net
-	* print.c: color postscript support by "mgp2ps -c".
-
-changes between 1.02a and 1.03a:
-	* To allow color name that has space inbetween ("dark blue"), 
-	  color name after directives SHOULD come with doublequote.
-	  Therefore,
-		%fore blue
-	  should be
-		%fore "blue"
-	  At this moment, doublequote can be ommitted for backward
-	  compatibility.  We may require to have doublequote in the future.
-	  Font names and other string parameter obeys the same rule.
-	* %image is now capable of rendering encapsulated postscript files
-	  (*.eps).
-		%image foo.eps
-	  should work fine.
-	  By using -X option, you can specify device name for ghostscript.
Index: kit/ctlwords.pl
diff -u kit/ctlwords.pl:1.2 kit/ctlwords.pl:removed
--- kit/ctlwords.pl:1.2	Sat Sep  5 06:05:08 1998
+++ kit/ctlwords.pl	Mon Aug 15 05:10:01 2005
@@ -1,12 +0,0 @@
-#! /usr/bin/perl
-$counter = 0;	# 0 origin
-print "/* generated by ctlwords.awk. do not edit by hand. */\n";
-
-while (<>) {
-	next if (!/^\/\*CTL\*\//);
-	next if ($_ !~ /(CTL_[A-Z0-9]+)/);
-
-	$word = $1;
-	print "#define $word\t$counter\n";
-	$counter++;
-}
Index: kit/image/gif.h
diff -u kit/image/gif.h:1.2 kit/image/gif.h:removed
--- kit/image/gif.h:1.2	Mon Dec 28 17:23:03 1998
+++ kit/image/gif.h	Mon Aug 15 05:10:01 2005
@@ -1,72 +0,0 @@
-/* gif.h:
- *
- * gifin.h
- * kirk johnson
- * november 1989
- * external interface to gifin.c
- *
- * Copyright 1989 Kirk L. Johnson (see the included file
- * "kljcpyrght.h" for complete copyright information)
- */
-
-/*
- * gifin return codes
- */
-#define GIFIN_SUCCESS       0   /* success */
-#define GIFIN_DONE          1   /* no more images */
-
-#define GIFIN_ERR_BAD_SD   -1   /* bad screen descriptor */
-#define GIFIN_ERR_BAD_SEP  -2   /* bad image separator */
-#define GIFIN_ERR_BAD_SIG  -3   /* bad signature */
-#define GIFIN_ERR_EOD      -4   /* unexpected end of raster data */
-#define GIFIN_ERR_EOF      -5   /* unexpected end of input stream */
-#define GIFIN_ERR_FAO      -6   /* file already open */
-#define GIFIN_ERR_IAO      -7   /* image already open */
-#define GIFIN_ERR_NFO      -8   /* no file open */
-#define GIFIN_ERR_NIO      -9   /* no image open */
-
-/*
- * colormap indices 
- */
-
-#define GIF_RED  0
-#define GIF_GRN  1
-#define GIF_BLU  2
-
-/*
- * typedef BYTE for convenience
- */
-
-typedef unsigned char BYTE;
-
-static int gifin_open_file();
-static int gifin_open_image();
-static int gifin_get_pixel();
-#if 0
-static int gifin_close_image();
-#endif
-static int gifin_close_file();
-static int gifin_load_cmap();
-static int gifin_skip_extension();
-static int gifin_read_data_block();
-static int gifin_push_string();
-static void gifin_add_string();
-static void gifin_fatal();
-
-/* #defines, typedefs, and such
- */
-
-#define GIF_SIG      "GIF87a"
-#define GIF_SIG_89   "GIF89a"
-#define GIF_SIG_LEN  6          /* GIF signature length */
-#define GIF_SD_SIZE  7          /* GIF screen descriptor size */
-#define GIF_ID_SIZE  9          /* GIF image descriptor size */
-
-#define GIF_SEPARATOR   ','     /* GIF image separator */
-#define GIF_EXTENSION   '!'     /* GIF extension block marker */
-#define GIF_TERMINATOR  ';'     /* GIF terminator */
-
-#define STAB_SIZE  4096         /* string table size */
-#define PSTK_SIZE  4096         /* pixel stack size */
-
-#define NULL_CODE  -1           /* string table null code */
Index: kit/sample/cloud.gif
Index: kit/sample/dad.gif
Index: kit/sample/dns-jp.mgp
diff -u kit/sample/dns-jp.mgp:1.5 kit/sample/dns-jp.mgp:removed
--- kit/sample/dns-jp.mgp:1.5	Fri Sep  4 21:33:18 1998
+++ kit/sample/dns-jp.mgp	Mon Aug 15 05:10:02 2005
@@ -1,130 +0,0 @@
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-%%
-%%	This file is automatically created from the file
-%%	main.pre modified at Fri Jan 23 14:31:24 1998
-%%
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-%%
-%include "default.mgp"
-%% "noop" cancels definitions in default.mgp
-%default 1 left, size 7, fore "light yellow", back "blue4", font "standard", ccolor "white", vgap 35
-%default 2 noop
-%default 3 fore "white", bar "gray70", vgap 10
-%default 4 noop
-%tab 1 noop
-%tab 2 noop
-%tab 3 noop
-%%%
-%page
-%nodefault
-%fore "red", back "blue4", size 9, vgap 15
-%center, fore "yellow", font "thick"
-%ccolor "white"
-
-
-
-Root DNS `M' $B$K$D$$$F(B
-
-%size 6, fore "red", font "thick"
-$B2CF#(B   $BO/(B
-
-%size 5, fore "white", font "standard"
-$BEl5~Bg3XBg7?7W;;5!%;%s%?!<(B
-
-
-%font "typewriter"
-kato@wide.ad.jp
-%font "standard"
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-%page
-
-%back "blue4"
-  $B7P0^(B (1)
-%fore "red", size 6, font "thick"
-   $B!y(B Root DNS
-%fore "white", size 5, font "standard"
-       $B!&(B $B#9Bf$G1?MQ(B
-%fore "white", size 5, font "standard"
-          $B!](B $B#8Bf$,(B US
-          $B!](B Stockholm $B$K#1Bf(B
-%fore "white", size 5, font "standard"
-       $B!&(B $B:GBg$G#1#3Bf(B
-%fore "white", size 5, font "standard"
-          $B!](B $B%Q%1%C%HD9$N@)Ls(B
-%fore "red", size 6, font "thick"
-   $B!y(B Root DNS $B$N1?MQ4p=`(B
-%fore "white", size 5, font "standard"
-       $B!&(B RFC 2010
-       $B!&(B gTLD $B$H$N4X78(B
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-%page
-
-%back "blue4"
-  $B7P0^(B (2)
-%fore "red", size 6, font "thick"
-   $B!y(B IEPG $B$G3HD%$r8!F$(B
-   $B!y(B $B%h!<%m%C%QCO0h(B
-%fore "white", size 5, font "standard"
-       $B!&(B LINX $B$K?7@_(B : 1997 $BG/(B 4 $B7n(B
-%fore "white", size 5, font "standard"
-          $B!](B RIPE/NCC $B$,4IM}(B
-          $B!](B `K'
-%fore "red", size 6, font "thick"
-   $B!y(B $B%"%8%"B@J?MNCO0h(B
-%fore "white", size 5, font "standard"
-       $B!&(B NSPIXP-2 $B!'(B 1997 $BG/(B 8 $B7n(B
-%fore "white", size 5, font "standard"
-          $B!](B WIDE $B$,4IM}(B
-          $B!](B `M'
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-%page
-
-%back "blue4"
-  `M'
-%fore "red", size 6, font "thick"
-   $B!y(B $B9=@.(B
-%fore "white", size 5, font "standard"
-       $B!&(B $B#2Bf$N(B PentiumPro 200MHz
-       $B!&(B Primary/Backup$B!"(B $B<+F0@Z$jBX$((B
-%fore "red", size 6, font "thick"
-   $B!y(B Root-only $B%5!<%P(B
-%fore "white", size 5, font "standard"
-       $B!&(B 
-%cont, font "typewriter"
-202.12.27.33
-%font "standard"
-       $B!&(B 400 $B!A(B 500 query/sec
-%fore "red", size 6, font "thick"
-   $B!y(B $B1?MQ4IM}(B
-%fore "white", size 5, font "standard"
-       $B!&(B WIDE $B$*$h$S(B ISP $BM-;V(B
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-%page
-
-%back "blue4"
-  $B$*4j$$(B
-%fore "red", size 6, font "thick"
-   $B!y(B $B:G?7$N(B root.cache $B$NF~$l49$((B
-%fore "white", size 5, font "standard"
-       $B!&(B 
-%cont, font "typewriter"
-1997082200
-%fore "red", size 6, font "thick"
-   $B!y(B Named $B$N99?7(B
-%fore "white", size 5, font "standard"
-       $B!&(B 4.9.6/8.8.1
-%fore "red", size 6, font "thick"
-   $B!y(B $BM7$P$J$$$G!'(B
-%fore "white", size 5, font "standard"
-       $B!&(B 
-%cont, font "typewriter"
-ping/traceroute
-%font "standard"
-       $B!&(B 
-%cont, font "typewriter"
-telnet/spray/...
-%fore "red", size 6, font "thick"
-   $B!y(B Thanks to
-%fore "white", size 5, font "standard"
-       $B!&(B $BF|K\(B Cisco/$BB?$/$N(B ISP
-       $B!&(B `M' $B4IM}%0%k!<%W(B
Index: kit/sample/mgp-old1.gif
Index: kit/sample/mgp-old2.gif
Index: kit/sample/mgp-old3.gif
Index: kit/sample/mgp1.gif
Index: kit/sample/mgp2.gif
Index: kit/sample/mgp3.gif
Index: kit/sample/sample-jp-xft.mgp
diff -u /dev/null kit/sample/sample-jp-xft.mgp:1.1
--- /dev/null	Mon Aug 15 05:10:02 2005
+++ kit/sample/sample-jp-xft.mgp	Wed Aug 10 00:20:57 2005
@@ -0,0 +1,436 @@
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%
+%% This default.mgp is "TrueType fonts" oriented.
+%% First, you should create "~/.mgprc" whose contents are:
+%%	tfdir "/path/to/truetype/fonts"
+%%
+%% To visualize English, install "times.ttf", "arial.ttf", and "cour.ttf"
+%% into the "tfdir" directory above:
+%%	http://microsoft.com/typography/fontpack/default.htm
+%%
+%% To visualize Japanese, install "MSMINCHO.ttf" and 
+%% "watanabenabe-mincho.ttf" into the "tfdir" directory above:
+%%	http://www.mew.org/mgp/xtt-fonts_0.19981020-3.tar.gz
+%%
+%deffont "thick" xfont "helvetica-bold-r", xfont "Kochi Gothic" "jisx0208.1983"
+%deffont "standard" xfont "helvetica-medium-r", xfont "Kochi Gothic" "jisx0208.1983"
+%deffont "typewriter" xfont "courier-medium-r", xfont "Kochi Gothic" "jisx0208.1983"
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%
+%% Default settings per each line numbers.
+%%
+%default 1 area 90 90, leftfill, size 2, fore "gray20", back "white", font "standard", hgap 0
+%default 2 size 5, hgap 20, vgap 10, prefix " ", ccolor "black"
+%default 3 size 2, hgap 10, bar "gray70", vgap 10
+%default 4 size 4, hgap 10, fore "gray20", vgap 30, prefix " ", font "standard"
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%
+%% Default settings that are applied to TAB-indented lines.
+%%
+%tab 1 size 4, vgap 40, prefix "  ", icon box "green" 50
+%tab 2 size 3.5, vgap 40, prefix "      ", icon arc "yellow" 50
+%tab 3 size 3, vgap 40, prefix "            ", icon delta3 "white" 40
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%page
+%nodefault
+%size 6.5, font "standard", back "white", ccolor "black"
+
+
+
+
+
+%center, fore "Blue", font "standard", hgap 60, size 6.5
+MAGIC POINT
+%bar "skyblue" 6 15 70
+%font "standard", hgap 0, size 4.5
+
+
+
+%fore "darkblue"
+$B@>ED2B;K(B Yoshifumi Nishida
+%size 4
+nishida@csl.sony.co.jp
+
+%size 3.5, fore "black", hgap 20
+SPC $B%-!<$r2!$7$F2<$5$$(B
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%page
+%bgrad 0 0 256 0 0 "white" "blue"
+
+$B;H$$J}(B
+
+
+	$B#1%Z!<%8?J$`(B
+		$B:8%\%?%s(B
+		SPC
+	$B#1%Z!<%8La$k(B
+		$B1&%\%?%s(B
+		DEL
+	MagicPoint $B$r=*N;$9$k(B
+		q
+
+%size 4.5, fore "yellow"
+    $B$=$l$G$OFCD'$r$_$F$$$-$^$7$g$&(B
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%page
+%bgrad 0 0 256 0 0 "white" "blue"
+
+$B%&%$%s%I%&(B
+
+
+	$BDL>o$OA42hLL$r;H$$$^$9(B
+	$B2hLL$NBg$-$5$r<+F0H=Dj$7$FI=<($G$-$^$9(B
+
+%size 5, fore "yellow", font "typewriter"
+         mgp -o -g 400x300 sample-jp.mgp
+
+%font "standard", fore "gray20", size 5
+        $B$NMM$KBg$-$5$N;XDj$b$G$-$^$9(B
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%page
+%bgrad 0 0 256 0 0 "white" "blue"
+
+$BI=<(0LCV@)8f(B
+
+
+%area 40 80 5 20
+	$BI=<($N0LCV$r@)8f$G$-$^$9(B
+
+%fore "red"
+%center
+$B%;%s%?%j%s%0(B
+
+%left
+$B:84s$;(B
+
+%right
+$B1&4s$;(B
+%area 40 80 50 20, leftfill, fore "black"
+	$BI=<(HO0O$r;XDj$9$k$3$H$G!"(B2$B%+%i%`$K$9$k$3$H$b$G$-$^$9(B
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%PAGE
+%bgrad 0 0 256 0 0 "white" "blue"
+
+$BJ8;z$NBg$-$5$H?'(B
+
+
+	$B$5$^$6$^$JBg$-$5$NJ8;z$rI=<($G$-$^$9(B
+
+%SIZE 5
+%CENTER
+%SIZE 10,FORE "orange"
+$BK\F|$O@2E7$J$j(B
+%SIZE 7,FORE "gray"
+$BK\F|$O@2E7$J$j(B
+%SIZE 5,FORE "blue"
+$BK\F|$O@2E7$J$j(B
+%SIZE 4,FORE "yellow"
+$BK\F|$O@2E7$J$j(B
+%SIZE 3,FORE "green"
+$BK\F|$O@2E7$J$j(B
+%SIZE 2,FORE "red"
+$BK\F|$O@2E7$J$j(B
+%SIZE 1,FORE "pink"
+$BK\F|$O@2E7$J$j(B
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%page
+%bgrad 0 0 256 90 0 "red" "white"
+
+$B%U%)%s%H(B
+
+
+	$B$5$^$6$^$J%U%)%s%H$,;XDj$G$-$^$9(B
+
+%size 6, fore "blue", center
+%font "standard"
+$B$3$l$OL@D+(B
+%font "thick"
+$B$3$l$O%4%7%C%/(B
+%size 6
+%font "standard"
+This is Standard
+%font "thick"
+This is Thick
+%font "typewriter"
+This is Typewriter
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%page
+%bgrad 0 0 256 90 0 "red" "white"
+
+$B9TFb$G$NB0@-JQ99(B
+
+
+	$B9T$NESCf$G$bB0@-$rJQ$($i$l$^$9(B
+
+%size 6, fore "blue", center
+$B;d$NL>A0$O(B
+%cont, fore "green", font "thick", size 8
+$B@>ED(B
+%cont, fore "red", font "typewriter", size 4
+$B$G$9(B
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%page
+
+$B9T$N@^$j6J$2(B
+
+
+	$B$3$s$J$U$&$K$H$F$bD9$$9T$b$-$A$s$H@^$j6J$2$FI=<($7$F$$$^$9!#%=!<%9%3!<%ICf$G$O$3$3$O(B1$B9T$H$7$F=q$+$l$F$$$^$9(B
+		$B$3$3$,<!$N9T$G$9!#CJ$,?<$/$F$b$[$iBg>fIW!#(B\
+UNIX$B$H$$$&$/$i$$$G!"%=!<%9$N9T$O%P%C%/%9%i%C%7%e$GO"7k$G$-$^$9(B
+
+	A quick brown fox jumps over the lazy dog.  A quick brown fox jumps over the lazy dog.
+		$B9TKv6XB'(B($B!V!#!W$H$+$r9TF,$K$@$5$J$$(B)$B$7$F$^$9!#%&%$%s%I%&$NI}$r$+$($F$_$F$M(B
+		$B1Q8l$OC18lC10L$G2~9T$7$^$9(B
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%PAGE
+
+$B2hA|(B
+
+
+	$B%$%a!<%8!&%U%!%$%k$rI=<($G$-$^$9(B
+
+%CENTER
+%IMAGE "cloud.jpg"
+
+$B$3$l$OAp4"@i>=$5$s$N:nIJ$G$9(B
+$B$"$j$,$H$&(B
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%PAGE
+
+$BBP1~$7$F$$$k2hA|(B
+
+
+	($BB?J,(B)$BI=<(2DG=$J%$%a!<%8!&%U%)!<%^%C%H$O0J2<$NDL$j$G$9(B
+%CENTER,SIZE 3,FORE "red", xfont "times-medium-r"
+  FBM Image
+  Sun Rasterfile
+  CMU WM Raster
+  Portable Bit Map (PBM, PGM, PPM)
+  Faces Project
+  Utah RLE Image
+  JFIF-style JPEG Image
+  X Window Dump
+  McIDAS areafile
+  G3 FAX Image
+  PC Paintbrush Image
+  GEM Bit Image
+  MacPaint Image
+  X Pixmap, Bitmap
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%PAGE
+
+$B2hA|$N3HBg$H=L>.(B
+
+
+	$B2#$r(B1.5$BG\!"=D$r(B1/3$B$7$?>l9g(B
+
+%center, image "cloud.jpg" 0 150 33 1
+
+
+%leftfill
+	$B2#$r2hLL$NI}$N(B50%$B!"=D$r2hLL$NI}$N(B30%$B$K$7$?>l9g(B
+
+%center, image "cloud.jpg" 0 50 30 0
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%PAGE
+
+$B2hA|$N8:?'(B
+
+
+	256$B?'"*(B16$B?'"*(B4$B?'"*(B2$B?'$K8:?'$7$?>l9g(B
+
+
+%left, image "cloud.jpg" 256 40 40 1, cont
+%image "cloud.jpg" 16 40 40 1, cont
+%image "cloud.jpg" 4 40 40 1, cont
+%image "cloud.jpg" 2 40 40 1, cont
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%PAGE
+
+$B$3$s$J$3$H$b(B...
+
+
+
+%CENTER
+%SHRINK
+%FORE "red", size 5
+$BK\F|$O@2E7$J$j(B
+
+%rcutin, FORE "blue"
+$BK\F|$O@2E7$J$j(B
+
+%lcutin, fore "green"
+$BK\F|$O@2E7$J$j(B
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%PAGE
+
+$B0l9T$:$DI=<((B
+
+
+	SPC $B$r(B 2 $B2s2!$7$F2<$5$$(B
+
+%size 5, center, fore "red"
+   $BK\F|$O@2E7$J$j(B
+%pause, fore "blue"
+   $BK\F|$O@2E7$J$j(B
+%pause, fore "green"
+   $BK\F|$O@2E7$J$j(B
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%PAGE
+
+$B%"%K%a!<%7%g%s(B
+
+
+	SPC $B$r2!$7$F2<$5$$(B
+
+%center, fore "white"
+%mark, image "mgp-old1.jpg"
+
+%pause, again, mark, image "mgp-old2.jpg"
+
+%again, mark, image "mgp-old3.jpg"
+
+%again, mark, image "mgp-old2.jpg"
+
+%again, mark, image "mgp-old1.jpg"
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%PAGE
+
+$B%3%^%s%I$N=PNO(B
+
+
+	$B;R%W%m%;%9$N7k2L$rI=<($G$-$^$9(B
+
+		% ls -l /kernel /bsd
+%size 3, prefix "     "
+%filter "ls -l /kernel /bsd"
+%endfilter
+
+		% echo this is test | rev
+%filter "rev"
+this is test
+%endfilter
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%PAGE
+
+$B%5%V%W%m%;%9$N5/F0(B
+
+
+%system "xeyes -geometry %50x15+25+80"
+	xanim$B$r8F$s$G%W%l%<%s$KF02h$rE=$m$&(B!
+		$B#19T$NL?Na$OF1;~$K#1%W%m%;%9$7$+5/F0$7$^$;$s(B
+		($B$=$N%Z!<%8$r:FEYI=<($7$F$b0B?4$G$9(B)
+		$B%W%l%<%s2hLL$KBP$9$kAjBPCM$G(Bgeometry$B$r;XDj$G$-$^$9(B
+
+		$B%Z!<%8$r0\$k$H(Bxeyes$B$O;`$K$^$9(B
+		($B;&$5$J$$@_Dj$b$G$-$^$9(B)
+
+%leftfill, size 3
+MagicPoint $B$r(B "-g" $B%*%W%7%g%sIU$-$G5/F0$7$F$$$k>l9g$O!"<!$N%Z!<%8$K$$$/$?$a$K%/%j%C%/$7$F2<$5$$!#(BSPC $B$,8z$+$J$$>l9g$,$"$j$^$9(B
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%PAGE
+
+$B%5%V%W%m%;%9$ND%$j$D$1(B
+
+
+	$B%5%V%W%m%;%9$r%&%$%s%I%&$KD%$j$D$1$i$l$^$9(B
+
+%xsystem "xeyes -geometry %50x10+25+60"
+
+
+	$B%;%s%?%j%s%0$b0l1~$G$-$^$9(B
+
+%center
+%xsystem "xclock -geometry %30x30+25+60 -update 1 -bg white -fg blue -hands green"
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%% %PAGE
+%%% 
+%%% $B%3%^%s%I$N=PNO(B - $B$"$o$;$o$6(B
+%%% 
+%%% 	$BF0E*$K%0%i%U$r@8@.$7$^$9(B
+%%% 
+%%% %filter "gnuplot"
+%%% set output "/tmp/hoge.pbm"
+%%% set term pbm
+%%% plot sin(x)
+%%% %endfilter
+%%% %system "xv -geometry %50x50+25+40 /tmp/hoge.pbm"
+%%% 
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%PAGE
+%bgrad 0 0 256 0 0 "skyblue" "white"
+
+$B$=$NB>$N5!G=(B
+
+
+	$B2hA|$r(B tab $B%3%^%s%I$K;XDj$G$-$^$9(B
+	$B2U>r=q$-MQ%"%$%3%s(B(
+%cont
+%icon box "green" 50
+%icon arc "green" 50
+%icon delta1 "green" 50
+%icon delta2 "green" 50
+%icon delta3 "green" 50
+%icon delta4 "green" 50
+%icon dia "green" 50
+)$B$,IA$1$^$9(B
+	$BB0@-$,:.$6$C$?%F%-%9%H$b@5$7$/%;%s%?%j%s%0$G$-$^$9(B
+
+%center, size 5
+$B;d$NL>A0$O(B
+%cont, fore "green", font "thick", size 10
+$B@>ED(B
+%cont, fore "red", font "typewriter", size 4
+$B$G$9(B
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%PAGE
+%bgrad 0 0 256 0 0 "skyblue" "white"
+%pcache 1 1 0 0
+
+$B@hFI$_5!G=(B
+
+
+	$B#1%Z!<%8@h$NFbMF$r%-%c%C%7%e$7$^$9(B
+	$B#2$D$N;XDjJ}K!$,$"$j$^$9(B
+%fore "red"
+		-F
+%cont, fore "gray20"
+ option $B$r;H$&(B
+		"
+%cont, fore "red"
+pcache
+%cont, fore "gray20"
+" $B%3%^%s%I$r;H$&(B
+
+	$B%-%c%C%7%e5!G=$K$h$jIA2h=hM}$,9bB.$K$J$j$^$9(B
+		SPC$B%-!<$r2!$7$F2<$5$$(B
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%PAGE
+%bgrad 0 0 256 0 0 "skyblue" "white"
+%pcache 1 1 1 30
+
+$B@hFI$_5!G=$NFC<l8z2L(B
+
+
+	$B@hFI$_5!G=$K$OFC<l5!G=$,;XDj$G$-$^$9(B
+	SPC$B$r2!$9$HFC<l8z2L$NNc$r3Z$7$a$^$9(B
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%PAGE
+%bgrad 0 0 256 0 0 "skyblue" "white"
+%pcache 0
+
+$B$*$7$^$$(B
+
+
+    $B%"%C%W%G!<%H$J$I$N>pJs$O(B
+%font "typewriter"
+       http://member.wide.ad.jp/wg/mgp/ 
+%font "standard"
+    $B$K7G<($5$l$^$9$N$G8fMw$/$@$5$$(B
+
+    $B%3%a%s%H$,$"$l$P(B
+%font "typewriter"
+        mgp-users-jp@Mew.org
+%font "standard"
+    $B$^$GAw$C$F2<$5$$(B
Index: kit/sample/v6header.gif
