| Meta documentation | Contained in the Meta distribution. |
Meta::Tool::Sgml2 - run old sgmltools sgml2 tools.
Copyright (C) 2001, 2002 Mark Veltzer; All rights reserved.
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
MANIFEST: Sgml2.pm PROJECT: meta VERSION: 0.14
package foo; use Meta::Tool::Sgml2 qw(); my($object)=Meta::Tool::Sgml2->new(); my($result)=$object->method();
This module is here to ease the job of running sgmltools for you if you wish to use them (I think it's better to use the Jade.pm module which runs jade or openjade directly).
c2html($$$$) c2late($$$$) c2lyxx($$$$) c2info($$$$) c2rtfx($$$$) c2txtx($$$$) TEST($)
This routine will convert sgml DocBook files to HTML.
This routine will convert sgml DocBook files to Latex.
This routine will convert sgml DocBook files to Lyx documentation.
This routine will convert sgml DocBook files to GNU info documentation.
This routine will convert sgml DocBook files to RTF (Rich Text Format).
This routine will convert sgml DocBook files to plain ASCII text.
Test suite for this module.
None.
None.
Name: Mark Veltzer Email: mailto:veltzer@cpan.org WWW: http://www.veltzer.org CPAN id: VELTZER
0.00 MV web site stuff 0.01 MV remove old c++ files 0.02 MV fix docbook and other various stuff 0.03 MV finish lit database and convert DocBook to SGML 0.04 MV perl packaging 0.05 MV md5 project 0.06 MV database 0.07 MV perl module versions in files 0.08 MV movies and small fixes 0.09 MV thumbnail user interface 0.10 MV more thumbnail issues 0.11 MV website construction 0.12 MV web site automation 0.13 MV SEE ALSO section fix 0.14 MV md5 issues
Meta::Baseline::Utils(3), Meta::Utils::Chdir(3), Meta::Utils::File::Copy(3), Meta::Utils::File::Move(3), Meta::Utils::File::Remove(3), Meta::Utils::Output(3), Meta::Utils::System(3), Meta::Utils::Text::Lines(3), Meta::Utils::Utils(3), strict(3)
Nothing.
| Meta documentation | Contained in the Meta distribution. |
#!/bin/echo This is a perl module and should not be run package Meta::Tool::Sgml2; use strict qw(vars refs subs); use Meta::Utils::System qw(); use Meta::Baseline::Utils qw(); use Meta::Utils::Output qw(); use Meta::Utils::Text::Lines qw(); use Meta::Utils::File::Copy qw(); use Meta::Utils::File::Remove qw(); use Meta::Utils::File::Move qw(); use Meta::Utils::Utils qw(); use Meta::Utils::Chdir qw(); our($VERSION,@ISA); $VERSION="0.14"; @ISA=qw(); #sub c2html($$$$); #sub c2late($$$$); #sub c2lyxx($$$$); #sub c2info($$$$); #sub c2rtfx($$$$); #sub c2txtx($$$$); #sub TEST($); #__DATA__ sub c2html($$$$) { my($modu,$srcx,$targ,$path)=@_; Meta::Baseline::Utils::file_emblem($targ); return(1); } sub c2late($$$$) { my($modu,$srcx,$targ,$path)=@_; Meta::Baseline::Utils::file_emblem($targ); return(1); } sub c2lyxx($$$$) { my($modu,$srcx,$targ,$path)=@_; Meta::Baseline::Utils::file_emblem($targ); return(1); } sub c2info($$$$) { my($modu,$srcx,$targ,$path)=@_; # Meta::Baseline::Utils::file_emblem($targ); # return(1); my($file)=Meta::Utils::Utils::get_temp_file(); my($resu)=$file.".info"; Meta::Utils::File::Copy::copy($srcx,$file); my($prog)="sgml2info"; my(@args); my(@pths)=split(':',$path); my(@dirs); for(my($i)=0;$i<=$#pths;$i++) { my($curr)=$pths[$i]; #add search directory for entire search path my($docb)=$curr."/chun/sgml"; if(-d $docb) { push(@dirs,"-D".$docb); #push(@args,"--include".$docb); } #search for DTDs in the baseline my($dtdx)=$curr."/dtdx"; if(-d $dtdx) { push(@dirs,"-D".$dtdx); #push(@args,"--include".$dtdx); } #search for DTDs in the baseline catalog my($dtdxcata)=$curr."/dtdx/CATALOG"; if(-f $dtdxcata) { push(@dirs,"-c".$dtdxcata); #push(@args,"-c".$dtdxcata); } #search for DSLs in the baseline my($dslx)=$curr."/dslx"; if(-d $dslx) { push(@dirs,"-D".$dslx); #push(@args,"--include".$dslx); } #search for DSLs in the baseline catalog my($dslxcata)=$curr."/dslx/CATALOG"; if(-f $dslxcata) { push(@dirs,"-c".$dslxcata); #push(@args,"-c".$dslxcata); } } push(@args,"--pass=\'".join(" ",@dirs)."\'",$file); my($text); Meta::Utils::Output::print("args are [".CORE::join(",",@args)."]\n"); Meta::Utils::Chdir::chdir("/tmp"); my($scod)=Meta::Utils::System::system_err_nodie(\$text,$prog,\@args); Meta::Utils::Chdir::popd(); if(!$scod) { Meta::Utils::Output::print($text); } else { my($obj)=Meta::Utils::Text::Lines->new(); $obj->set_text($text,"\n"); $obj->remove_line_nre("\<OSFD\>"); $text=$obj->get_text_fixed(); if($text ne "") { $scod=0; Meta::Utils::Output::print($text); Meta::Utils::File::Remove::rm($file); Meta::Utils::File::Remove::rm($resu); } else { Meta::Utils::File::Move::mv($resu,$targ); } } Meta::Utils::File::Remove::rm($file); return($scod); } sub c2rtfx($$$$) { my($modu,$srcx,$targ,$path)=@_; Meta::Baseline::Utils::file_emblem($targ); return(1); } sub c2txtx($$$$) { my($modu,$srcx,$targ,$path)=@_; Meta::Baseline::Utils::file_emblem($targ); } sub TEST($) { my($context)=@_; return(1); } 1; __END__