From: Salve J. N. <sj...@us...> - 2004-11-08 14:48:49
|
Update of /cvsroot/openinteract/OpenInteract2/pkg/base_page/OpenInteract2/Action In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26312/pkg/base_page/OpenInteract2/Action Modified Files: Page.pm Log Message: Let also text/css and text/plain documents be displayable with the default setup Index: Page.pm =================================================================== RCS file: /cvsroot/openinteract/OpenInteract2/pkg/base_page/OpenInteract2/Action/Page.pm,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** Page.pm 5 Oct 2004 01:18:51 -0000 1.22 --- Page.pm 8 Nov 2004 14:48:41 -0000 1.23 *************** *** 30,34 **** # etc.) get sent to the user directly ! my %DISPLAY_TYPES = map { $_ => 1 } ( 'text/html' ); # Use this to separate your single document into multiple pages --- 30,34 ---- # etc.) get sent to the user directly ! my %DISPLAY_TYPES = map { $_ => 1 } ( 'text/html', 'text/css', 'text/plain' ); # Use this to separate your single document into multiple pages |