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 Apr 16 05:10:02 2001
@@ -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/README
diff -u kit/README:1.42 kit/README:1.43
--- kit/README:1.42	Sun Mar 18 03:27:35 2001
+++ kit/README	Thu Apr 12 12:27:53 2001
@@ -2,7 +2,7 @@
 
 	     MagicPoint - an X11 based presentation tool
 
-			    March 16, 2001
+			    April 12, 2001
 
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
@@ -78,12 +78,21 @@
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
 It's a good idea to preview sample files before installation. For more
-information, see sample/README or sample/README.jp, which describes
-how to install TrueType fonts.
+information, see "sample/README" or "sample/README.jp", which
+describes how to install TrueType fonts.
 
-To visualize the tutorial.mgp file, type:
+To visualize the sample{,-jp}.mgp file, type:
 
+	% ./mgp sample/sample.mgp
+	% ./mgp sample/sample-jp.mgp
+
+To visualize the tutorial{,-jp}.mgp file, type:
+
 	% ./mgp sample/tutorial.mgp
+	% ./mgp sample/tutorial-jp.mgp
+
+WE STRONGLY RECOMMEND TO BUY TRUETYPE FONTS IF YOU WANT TO GIVE YOUR
+PRESENTATION WITH BEAUTIFUL FONTS.
 
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
@@ -104,28 +113,14 @@
 
 Official home page of MagicPoint is:
 	http://www.Mew.org/mgp/
-
-Latest packages are available from:
-	ftp://ftp.Mew.org/pub/MagicPoint/
-
-Pre-release snapshots are generated weekly, to:
-	ftp://sh.wide.ad.jp/WIDE/free-ware/mgp-snap/
 
-These snapshots MAY NOT WORK AT ALL. Keep in your mind that these are
-just for people who would like to hack.
+Stable release packages are available from:
+	ftp://ftp.Mew.org/pub/mgp/
 
-Please send comments to the developer mailing-list:
-	mgp@Mew.org
-
-There are two mailing lists for magicpoint users:
-	mgp-users@Mew.org	(language: English)
-	mgp-users-jp@Mew.org	(language: Japanese)
-For subscription, please send an email to
-	mgp-users-ctl@Mew.org	or
-	mgp-users-jp-ctl@Mew.org
-with "# guide" in the email body (without quotes).
+You can use anonymous CVS to catch up the latest. See:
+	http://www.Mew.org/mgp/anoncvs.html
 
-The ML agent is subject to change. See the official home page
-MagicPoint for latest information.
+To join the mailing-list for MagicPoint, See:
+	http://www.Mew.org/mgp/ml.html
 
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
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 Apr 16 05:10:02 2001
@@ -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/tfont.c
diff -u kit/tfont.c:1.41 kit/tfont.c:1.42
--- kit/tfont.c:1.41	Thu Mar 15 17:58:12 2001
+++ kit/tfont.c	Thu Apr 12 20:49:04 2001
@@ -26,7 +26,7 @@
  * SUCH DAMAGE.
  */
 /*
- * $Id: tfont.c,v 1.41 2001/03/15 08:58:12 nishida Exp $
+ * $Id: tfont.c,v 1.42 2001/04/12 11:49:04 nishida Exp $
  */
 
 #include "mgp.h"
@@ -537,6 +537,7 @@
 	tfc->ref = 0;
 	tfc->dbitmap = bitmap.bitmap;
 	tfc->regid = get_regid(registry);
+	if (!tfc->charlen) tfc->charlen = 1;
 
 	TFC_INSHASH(tfc);
 	TFC_INSLRU(tfc);
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 Apr 16 05:10:03 2001
@@ -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/image/png.c
diff -u kit/image/png.c:1.5 kit/image/png.c:1.6
--- kit/image/png.c:1.5	Tue Jun 13 13:46:17 2000
+++ kit/image/png.c	Wed Apr 11 17:37:00 2001
@@ -26,7 +26,7 @@
  * SUCH DAMAGE.
  */
 /*
- * $Id: png.c,v 1.5 2000/06/13 04:46:17 nishida Exp $
+ * $Id: png.c,v 1.6 2001/04/11 08:37:00 nishida Exp $
  */
 #ifdef USE_PNG
 #include <png.h>
@@ -152,7 +152,7 @@
 	row_pointers = (png_bytep *)malloc(sizeof(png_bytep) * height);
 	for (row = 0; row < height; row++) {
 			row_pointers[row] = 
-				(png_bytep)malloc(width * 3);
+				(png_bytep)malloc(png_get_rowbytes(png_ptr, info_ptr));
 	}
 	png_read_image(png_ptr, row_pointers);
 
Index: kit/sample/README
diff -u kit/sample/README:1.10 kit/sample/README:1.12
--- kit/sample/README:1.10	Fri Mar 16 21:13:30 2001
+++ kit/sample/README	Fri Apr 13 12:28:50 2001
@@ -18,5 +18,7 @@
 
 	(1) Create "~/.mgprc" whose contents are:
 		tfdir "/path/to/truetype/fonts"
-	(2) Copy "times.ttf", "arial.ttf", and "cour.ttf" to "tfdir"
-	    http://microsoft.com/typography/fontpack/default.htm
+
+	(2) Copy "standard.ttf", "thick.ttf", "typewriter.ttf", 
+	    "kochi-mincho.ttf" and "goth.ttf" to "tfdir".
+		ftp://ftp.mew.org/pub/mgp/ttf.tar.gz
Index: kit/sample/README.jp
diff -u kit/sample/README.jp:1.9 kit/sample/README.jp:1.11
--- kit/sample/README.jp:1.9	Sun Mar 18 03:27:35 2001
+++ kit/sample/README.jp	Fri Apr 13 12:28:50 2001
@@ -18,9 +18,7 @@
 
 	(1) "~/.mgprc" $B$r:n@.$7!"$=$NCf$K(B "tfdir" $B$r@_Dj$7$F2<$5$$!#(B
 		tfdir "/path/to/truetype/fonts"
-	(2) "tfdir" $B$K(B "times.ttf"$B!"(B"arial.ttf"$B!"(B"cour.ttf" $B$r%3%T!<(B
-	    $B$7$F2<$5$$!#(B
-		http://microsoft.com/typography/fontpack/default.htm
-	(3) "tfdir" $B$K(B "wadalab-gothic.ttf" $B$H(B "watanabenabe-mincho.ttf"
-	    $B$r%3%T!<$7$F2<$5$$!#(B
-		ftp://www.mew.org/MagicPoint/xtt-fonts_0.19981020-3.tar.gz
+
+	(2) "tfdir" $B$K(B "standard.ttf"$B!"(B"thick.ttf"$B!"(B"typewriter.ttf"$B!"(B
+	    "kochi-mincho.ttf"$B!"(B"goth.ttf" $B$r%3%T!<$7$F2<$5$$!#(B
+		ftp://ftp.mew.org/pub/mgp/ttf.tar.gz
Index: kit/sample/cloud.gif
Index: kit/sample/dad.gif
Index: kit/sample/default.mgp
diff -u kit/sample/default.mgp:1.21 kit/sample/default.mgp:1.22
--- kit/sample/default.mgp:1.21	Fri Mar 16 21:01:56 2001
+++ kit/sample/default.mgp	Wed Apr 11 21:46:01 2001
@@ -4,17 +4,17 @@
 %% 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 English, install "standard.ttf", "thick.ttf", and 
+%% "typewriter.ttf" into the "tfdir" directory above:
+%%	ftp://ftp.mew.org/pub/mgp/ttf-us.tar.gz
 %%
-%% To visualize Japanese, install "wadalab-gothic.ttf" and 
-%% "watanabenabe-mincho.ttf" into the "tfdir" directory above:
-%%	http://www.mew.org/mgp/xtt-fonts_0.19981020-3.tar.gz
+%% To visualize Japanese, install "kochi-mincho.ttf" and "goth.ttf"
+%% into the "tfdir" directory above:
+%%	ftp://ftp.mew.org/pub/mgp/ttf-jp.tar.gz
 %%
-%deffont "standard" xfont "helvetica-medium-r", tfont "times.ttf", tmfont "wadalab-gothic.ttf"
-%deffont "thick" xfont "helvetica-bold-r", tfont "arial.ttf", tmfont "wadalab-gothic.ttf"
-%deffont "typewriter" xfont "courier-medium-r", tfont "cour.ttf", tmfont "wadalab-gothic.ttf"
+%deffont "standard"   tfont "standard.ttf",   tmfont "kochi-mincho.ttf"
+%deffont "thick"      tfont "thick.ttf",      tmfont "goth.ttf"
+%deffont "typewriter" tfont "typewriter.ttf", tmfont "goth.ttf"
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 %%
 %% Default settings per each line numbers.
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 Apr 16 05:10:04 2001
@@ -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.mgp
diff -u kit/sample/sample-jp.mgp:1.34 kit/sample/sample-jp.mgp:1.35
--- kit/sample/sample-jp.mgp:1.34	Fri Mar 16 23:58:32 2001
+++ kit/sample/sample-jp.mgp	Thu Apr 12 13:42:17 2001
@@ -1,64 +1,100 @@
-%include "default.mgp"
-%default 1 fore "blue", font "thick"
-%default 4 fore "yellow", font "standard"
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%
+%% 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", tfont "thick.ttf", tmfont "goth.ttf"
+%deffont "standard" xfont "helvetica-medium-r", tfont "standard.ttf", tmfont "kochi-mincho.ttf"
+%deffont "typewriter" xfont "courier-medium-r", tfont "typewriter.ttf", tmfont "goth.ttf"
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%
+%% Default settings per each line numbers.
+%%
+%default 1 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
-%fore "red", size 8, back "darkblue", font "standard", vgap 0, ccolor "gray"
-%bgrad 0 0 128 0 1 "black" "black" "blue" "black" "black" "black" "black" "black"
+%size 6.5, font "standard", back "white", ccolor "black"
 
 
 
-%center, fore "yellow", font "thick"
-MagicPoint
-%font "standard"
 
 
+%center, fore "Blue", font "standard", hgap 60, size 6.5
+MAGIC POINT
+%bar "skyblue" 6 15 70
+%font "standard", hgap 0, size 4.5
+
 
-%size 4, fore "red", font "standard"
-$B7DXf5A=NBg3X(B
-$B@/:v!&%a%G%#%"8&5f2J(B
-$B@>ED2B;K(B
-%size 3
-nishida@sfc.wide.ad.jp
 
+%fore "darkblue"
+$B@>ED2B;K(B Yoshifumi Nishida
+%size 4
+nishida@csl.sony.co.jp
 
-%size 4, fore "yellow"
+%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
+
 
-	1 $B%Z!<%8?J$`(B
+	$B#1%Z!<%8?J$`(B
 		$B:8%\%?%s(B
 		SPC
-	1 $B%Z!<%8La$k(B
+	$B#1%Z!<%8La$k(B
 		$B1&%\%?%s(B
 		DEL
 	MagicPoint $B$r=*N;$9$k(B
 		q
 
-%size 5, fore "red"
+%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 4, fore "red", font "typewriter"
+
+%size 5, fore "yellow", font "typewriter"
          mgp -o -g 400x300 sample-jp.mgp
-%font "standard"
+
+%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
 
+
 	$BI=<($N0LCV$r@)8f$G$-$^$9(B
+
 %fore "red"
 %center
 $B%;%s%?%j%s%0(B
@@ -70,9 +106,11 @@
 $B1&4s$;(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
@@ -93,46 +131,51 @@
 $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 5, fore "red", center
+%size 6, fore "blue", center
 %font "standard"
 $B$3$l$OL@D+(B
 %font "thick"
 $B$3$l$O%4%7%C%/(B
-%size 4
+%size 6
 %font "standard"
-This is Times
+This is Standard
 %font "thick"
-This is Arial
+This is Thick
 %font "typewriter"
-This is Courier
+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 "red"
 
-        $B;d$NL>A0$O(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 6
+%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.
 
+	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
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -140,6 +183,7 @@
 
 $B2hA|(B
 
+
 	$B%$%a!<%8!&%U%!%$%k$rI=<($G$-$^$9(B
 
 %CENTER
@@ -153,6 +197,7 @@
 
 $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", tfont "times.ttf"
 
@@ -175,6 +220,7 @@
 
 $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
@@ -189,6 +235,7 @@
 
 $B2hA|$N8:?'(B
 
+
 	256$B?'"*(B16$B?'"*(B4$B?'"*(B2$B?'$K8:?'$7$?>l9g(B
 
 
@@ -201,9 +248,11 @@
 
 $B$3$s$J$3$H$b(B...
 
+
+
 %CENTER
 %SHRINK
-%FORE "red"
+%FORE "red", size 5
 $BK\F|$O@2E7$J$j(B
 
 %rcutin, FORE "blue"
@@ -216,9 +265,10 @@
 
 $B0l9T$:$DI=<((B
 
+
 	SPC $B$r(B 2 $B2s2!$7$F2<$5$$(B
 
-%center, fore "red"
+%size 5, center, fore "red"
    $BK\F|$O@2E7$J$j(B
 %pause, fore "blue"
    $BK\F|$O@2E7$J$j(B
@@ -229,6 +279,7 @@
 
 $B%"%K%a!<%7%g%s(B
 
+
 	SPC $B$r2!$7$F2<$5$$(B
 
 %center, fore "white"
@@ -246,6 +297,7 @@
 
 $B%3%^%s%I$N=PNO(B
 
+
 	$B;R%W%m%;%9$N7k2L$rI=<($G$-$^$9(B
 
 		% ls -l /kernel /bsd
@@ -257,39 +309,38 @@
 %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!
-
-	1$B9T$NL?Na$OF1;~$K(B1$B%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#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)
+		$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 black -fg blue -hands green"
-
+%xsystem "xclock -geometry %30x30+25+60 -update 1 -bg white -fg blue -hands green"
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 %%% %PAGE
 %%% 
@@ -306,9 +357,11 @@
 %%% 
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 %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
@@ -321,47 +374,52 @@
 %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
+
+%center, size 5
 $B;d$NL>A0$O(B
-%cont, fore "green", font "thick", size 8
+%cont, fore "green", font "thick", size 10
 $B@>ED(B
-%cont, fore "red", font "typewriter", size 6
+%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 "yellow"
+%cont, fore "gray20"
  option $B$r;H$&(B
 		"
 %cont, fore "red"
 pcache
-%cont, fore "yellow"
+%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
 
+	$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"
Index: kit/sample/sample.mgp
diff -u kit/sample/sample.mgp:1.26 kit/sample/sample.mgp:1.27
--- kit/sample/sample.mgp:1.26	Fri Mar 16 23:58:32 2001
+++ kit/sample/sample.mgp	Wed Apr 11 21:47:33 2001
@@ -1,40 +1,77 @@
-%include "default.mgp"
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%
+%% 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 "standard" xfont "helvetica-medium-r", tfont "standard.ttf", tmfont "hoso6.ttf"
+%deffont "thick" xfont "helvetica-bold-r", tfont "thick.ttf", tmfont "hoso6.ttf"
+%deffont "typewriter" xfont "courier-medium-r", tfont "typewriter.ttf", tmfont "hoso6.ttf"
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%
+%% Default settings per each line numbers.
+%%
+%default 1 leftfill, size 2, fore "gray20", back "white", font "standard", hgap 0
+%default 2 size 7, vgap 10, prefix " ", ccolor "black"
+%default 3 size 2, bar "gray70", vgap 10
+%default 4 size 5, fore "gray20", vgap 30, prefix " ", font "standard"
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%
+%% Default settings that are applied to TAB-indented lines.
+%%
+%tab 1 size 5, vgap 40, prefix "  ", icon box "green" 50
+%tab 2 size 4, vgap 40, prefix "      ", icon arc "yellow" 50
+%tab 3 size 3, vgap 40, prefix "            ", icon delta3 "white" 40
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 %page
 %nodefault
-%fore "red", size 7, font "standard", back "darkblue"
+%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
 
-%center, fore "yellow", font "thick"
-MagicPoint
-%font "standard"
 
 
-%size 4, fore "red"
-Keio University
+%size 5, fore "darkblue"
 Yoshifumi Nishida
-%size 3
-nishida@sfc.wide.ad.jp
+%size 4.5
+nishida@csl.sony.co.jp
 
-%size 4, fore "yellow"
-Type SPC key!!
+
+%size 3, fore "black", hgap 20
+TYPE SPC KEY!!
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 %page
-%bgrad 0 0 16 0 0 "red" "black"
+%bgrad 0 0 256 0 0 "white" "blue"
 
 How to Use 
+
 
-	forward page-> press mouse1 button 
-	backward page-> press mouse3 button 
+	forward page -> press mouse1 button 
+	backward page -> press mouse3 button 
 	quit -> press q key 
 
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 %page
-%bgrad 0 0 16 0 0 "red" "black"
+%bgrad 0 0 256 90 0 "red" "white"
 
 Command Line Option 
 
+
 %prefix "    -h:"
 display usage.
 %prefix "    -g:"
@@ -49,25 +86,30 @@
            
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 %page
+%bgrad 0 0 256 0 0 "green" "white"
 
 Place text whereever you like!
 
+
+
 %fore "red", size 6
 %center
-center
+CENTER
 
 
 %left
-left
+LEFT
 
 %right
-right
+RIGHT
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 %PAGE
+%bgrad 25 25 256 45 1 "gray" "gray" "white" "white" "white" "white" "gray" "gray"
 
 Use any font size as you like!
 
 
+
 %CENTER
 %SIZE 10,FORE "orange"
 Hello World
@@ -85,32 +127,35 @@
 Hello World
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 %page
+%bgrad 25 25 256 45 1 "gray" "gray" "white" "white" "white" "white" "gray" "gray"
 
 Fonts are selectable
 
 
-%size 4, fore "red", center
+%size 5, fore "red", center
 
-%font "standard"
+%font "standard", hgap 20
 This is Times
 
 %font "thick"
-This is Arial
+This is Thick
 
 %font "typewriter"
 This is Courier
-
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 %page
+%bgrad 25 25 256 45 1 "gray" "gray" "white" "white" "white" "white" "gray" "gray"
 
 Control can be mixed
 
+
 
-%fore "green", font "standard", size 4
+%center 
+%fore "green", font "standard", size 6
 This is a 
-%cont, fore "orange", font "thick", size 6
+%cont, fore "orange", font "thick", size 10
 Test 
-%cont, fore "red", font "typewriter", size 5
+%cont, fore "red", font "typewriter", size 8
 message
 
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -118,8 +163,10 @@
 
 Automatic folding of long line!
 
+
 	Hello, this is MagicPoint. I can properly handle the folding opeation of very long line, of course english word-wise.  The source code of this line is made up by a single line.
 		This is the next line. Even if the indentation changes, I can handle this!  Yey!
+
 	You can also connect the line using backslash.  \
 				Yes, UNIX tradition.
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -127,10 +174,12 @@
 
 Visualize inline images!
 
+
 %CENTER
 %IMAGE "cloud.jpg"
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 %PAGE
+%bgrad 0 0 256 0 0 "white" "blue"
 
 Special effects!
 
@@ -146,12 +195,14 @@
 yet another test message
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 %PAGE
+%bgrad 0 0 256 0 0 "white" "blue"
 
 Pause
 
+
 	Type SPC key (twice) to proceed.
 
-%center, fore "red"
+%center, fore "red", hgap 20
 Happy hacking!
 %pause, fore "blue"
 Happy hacking!
@@ -159,9 +210,11 @@
 Happy hacking!
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 %PAGE
+%bgrad 0 0 256 0 0 "white" "blue"
 
 Grab command output into foils
 
+
 	ls -l /kernel /bsd
 
 %size 3, prefix "     "
@@ -169,16 +222,18 @@
 %endfilter
 
 	echo "this is test" | rev
-
 %filter "rev"
+
 this is test
 %endfilter
 
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 %PAGE
+%bgrad 0 0 256 0 0 "white" "blue"
 
 Subprocess (multimedia!)
 
+
 %system "xeyes -geometry %50x20+25+60"
 
 	Invoke xanim/mpegplay for multimedia presentation! :-)
@@ -194,18 +249,21 @@
 
 Embed Subprocess
 
+
 	You can embed X applications in MagicPoint!
 
 	An example
 %center
-%xsystem "xclock -geometry %30x30+25+60 -update 1 -bg black -fg blue -hands green"
+%xsystem "xclock -geometry %30x30+25+60 -update 1 -bg white -fg blue -hands green"
 
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 %PAGE
+%bgrad 0 0 256 0 0 "skyblue" "white"
 %PCACHE 1 1 0 30
 
 Forward page cache (1)
 
+
 	The next slide is cached inwardly by using
 		'%pcache' directive
 		-F option
@@ -214,20 +272,24 @@
 	Next slide will appear quicker than before!
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 %PAGE
+%bgrad 0 0 256 0 0 "skyblue" "white"
 %PCACHE 1 1 1 50
 
 Forward page cache (2)
 
+
 	You can specify 'special effect' for the forward page cache.
 		tap space bar to see the 'special effect'. 
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 %PAGE
+%bgrad 0 0 256 0 0 "skyblue" "white"
 %PCACHE 0 
 
 Have a nice day!
 
+
     Visit
-%font "typewriter"
+%font "typewriter", fore "blue"
        http://www.mew.org/mgp/
-%font "standard"
+%fore "gray20", font "standard"
     for upcoming information.
Index: kit/sample/tutorial.mgp
diff -u kit/sample/tutorial.mgp:1.4 kit/sample/tutorial.mgp:1.5
--- kit/sample/tutorial.mgp:1.4	Sat Aug 28 04:09:52 1999
+++ kit/sample/tutorial.mgp	Thu Apr 12 12:27:53 2001
@@ -77,7 +77,7 @@
 
 %fore "yellow"
 Type CTL to display a list of pages,
-and the move your mouse on to the page 6.
+and move your mouse on to the page 6.
 Then click the left.
 
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Index: kit/sample/v6header.gif
