亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? texi2html

?? unix上的ODBC實現
??
?? 第 1 頁 / 共 4 頁
字號:
#!PATH_TO_PERL -*- perl -*-# Add path to perl on the previous line and make this executable# if you want to use this as a normal script.'di ';'ig 00 ';#+###############################################################################                                                                              ## File: texi2html                                                              ##                                                                              ## Description: Program to transform most Texinfo documents to HTML             ##                                                                              ##-############################################################################### @(#)texi2html	1.52 971230 Written (mainly) by Lionel Cons, Lionel.Cons@cern.ch# Enhanced by David Axmark, david@detron.se# The man page for this program is included at the end of this file and can be# viewed using the command 'nroff -man texi2html'.# Please read the copyright at the end of the man page.#+++#############################################################################                                                                              ## Constants                                                                    ##                                                                              ##---############################################################################$DEBUG_TOC   =  1;$DEBUG_INDEX =  2;$DEBUG_BIB   =  4;$DEBUG_GLOSS =  8;$DEBUG_DEF   = 16;$DEBUG_HTML  = 32;$DEBUG_USER  = 64;$BIBRE = '\[[\w\/]+\]';			# RE for a bibliography reference$FILERE = '[\/\w.+-]+';			# RE for a file name$VARRE = '[^\s\{\}]+';			# RE for a variable name$NODERE = '[^@{}:\'`",]+';		# RE for a node name$NODESRE = '[^@{}:\'`"]+';		# RE for a list of node names$XREFRE = '[^@{}]+';			# RE for a xref (should use NODERE)$ERROR = "***";			        # prefix for errors and warnings$THISPROG = "texi2html 1.52 (hacked by david\@detron.se)";	# program name and version$HOMEPAGE = "http://www.mathematik.uni-kl.de/~obachman/Texi2html/"; # program home page$TODAY = &pretty_date;			# like "20 September 1993"$SPLITTAG = "<!-- SPLIT HERE -->\n";	# tag to know where to split$PROTECTTAG = "_ThisIsProtected_";	# tag to recognize protected sections$html2_doctype = '<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0 Strict Level 2//EN">';## language dependent constants##$LDC_SEE = 'see';#$LDC_SECTION = 'section';#$LDC_IN = 'in';#$LDC_TOC = 'Table of Contents';#$LDC_GOTO = 'Go to the';#$LDC_FOOT = 'Footnotes';# TODO: @def* shortcuts#$user_sub{"email"} = "fix_email";## pre-defined indices#%predefined_index = (		     'cp', 'c',		     'fn', 'f',		     'vr', 'v',		     'ky', 'k',		     'pg', 'p',		     'tp', 't',		     );## valid indices#%valid_index = (		'c', 1,		'f', 1,		'v', 1,		'k', 1,		'p', 1,		't', 1,		);## texinfo section names to level#%sec2level = (	      'top', 0,	      'chapter', 1,	      'unnumbered', 1,	      'majorheading', 1,	      'chapheading', 1,	      'appendix', 1,	      'section', 2,	      'unnumberedsec', 2,	      'heading', 2,	      'appendixsec', 2,	      'appendixsection', 2,	      'subsection', 3,	      'unnumberedsubsec', 3,	      'subheading', 3,	      'appendixsubsec', 3,	      'subsubsection', 4,	      'unnumberedsubsubsec', 4,	      'subsubheading', 4,	      'appendixsubsubsec', 4,	      );## accent map, TeX command to ISO name#%accent_map = (	       '"',  'uml',	       '~',  'tilde',	       '^',  'circ',	       '`',  'grave',	       '\'', 'acute',	       );## texinfo "simple things" (@foo) to HTML ones#%simple_map = (	       # cf. makeinfo.c	       "*", "<BR>",	# HTML+	       " ", " ",	       "\n", "\n",	       "|", "",	       # spacing commands	       ":", "",	       "!", "!",	       "?", "?",	       ".", ".",	       );## texinfo "things" (@foo{}) to HTML ones#%things_map = (	       'TeX', 'TeX',	       'br', '<P>',	# paragraph break	       'bullet', '*',	       'copyright', '(C)',	       'dots', '...',	       'equiv', '==',	       'error', 'error-->',	       'expansion', '==>',	       'minus', '-',	       'point', '-!-',	       'print', '-|',	       'result', '=>',	       'today', $TODAY,	       );## texinfo styles (@foo{bar}) to HTML ones#%style_map = (	      'asis', '',	      'b', 'B',	      'cite', 'CITE',	      'code', 'CODE',	      'ctrl', '&do_ctrl', # special case	      'dfn', 'STRONG',	# DFN tag is illegal in the standard	      'dmn', '',	# useless	      'email', '&fix_email',	# special	      'emph', 'EM',	      'file', '"TT',	# will put quotes, cf. &apply_style	      'i', 'I',	      'kbd', 'KBD',	      'key', 'KBD',	      'r', '',		# unsupported	      'samp', '"SAMP',	# will put quotes, cf. &apply_style	      'sc', '&do_sc',	# special case	      'strong', 'STRONG',	      't', 'TT',	      'titlefont', '',	# useless	      'image', '&fix_image',	# Image	      'url', '&fix_url',	# URL	      'uref', '&fix_uref',	# URL Reference	      'var', 'VAR',	      'w', '',		# unsupported	      );## texinfo format (@foo/@end foo) to HTML ones#%format_map = (	       'display', 'PRE',	       'example', 'PRE',	       'format', 'PRE',	       'lisp', 'PRE',	       'quotation', 'BLOCKQUOTE',	       'smallexample', 'PRE',	       'smalllisp', 'PRE',	       # lists	       'itemize', 'UL',	       'enumerate', 'OL',	       # poorly supported	       'flushleft', 'PRE',	       'flushright', 'PRE',	       );## texinfo definition shortcuts to real ones#%def_map = (	    # basic commands	    'deffn', 0,	    'defvr', 0,	    'deftypefn', 0,	    'deftypevr', 0,	    'defcv', 0,	    'defop', 0,	    'deftp', 0,	    # basic x commands	    'deffnx', 0,	    'defvrx', 0,	    'deftypefnx', 0,	    'deftypevrx', 0,	    'defcvx', 0,	    'defopx', 0,	    'deftpx', 0,	    # shortcuts	    'defun', 'deffn Function',	    'defmac', 'deffn Macro',	    'defspec', 'deffn {Special Form}',	    'defvar', 'defvr Variable',	    'defopt', 'defvr {User Option}',	    'deftypefun', 'deftypefn Function',	    'deftypevar', 'deftypevr Variable',	    'defivar', 'defcv {Instance Variable}',	    'defmethod', 'defop Method',	    # x shortcuts	    'defunx', 'deffnx Function',	    'defmacx', 'deffnx Macro',	    'defspecx', 'deffnx {Special Form}',	    'defvarx', 'defvrx Variable',	    'defoptx', 'defvrx {User Option}',	    'deftypefunx', 'deftypefnx Function',	    'deftypevarx', 'deftypevrx Variable',	    'defivarx', 'defcvx {Instance Variable}',	    'defmethodx', 'defopx Method',	    );## things to skip#%to_skip = (	    # comments	    'c', 1,	    'comment', 1,	    # useless	    'contents', 1,	    'shortcontents', 1,	    'summarycontents', 1,	    'footnotestyle', 1,	    'end ifclear', 1,	    'end ifset', 1,	    'titlepage', 1,	    'end titlepage', 1,	    # unsupported commands (formatting)	    'afourpaper', 1,	    'cropmarks', 1,	    'finalout', 1,	    'headings', 1,	    'need', 1,	    'page', 1,	    'setchapternewpage', 1,	    'everyheading', 1,	    'everyfooting', 1,	    'evenheading', 1,	    'evenfooting', 1,	    'oddheading', 1,	    'oddfooting', 1,	    'smallbook', 1,	    'vskip', 1,	    'filbreak', 1,	    # unsupported formats	    'cartouche', 1,	    'end cartouche', 1,	    'group', 1,	    'end group', 1,	    );#+++#############################################################################                                                                              ## Argument parsing, initialisation                                             ##                                                                              ##---############################################################################%value = ();			# hold texinfo variables$use_bibliography = 1;$use_acc = 0;$debug = 0;$doctype = '';$check = 0;$expandinfo = 0;$use_glossary = 0;$invisible_mark = '';$use_iso = 0;@include_dirs = ();$show_menu = 0;$number_sections = 0;$split_node = 0;$split_chapter = 0;$monolithic = 0;$verbose = 0;$opt_use_numbers = 0;$opt_empty_headers = 0;$opt_special_links = "";$usage = <<EOT;This is $THISPROGTo convert a Texinfo file to HMTL: $0 [options] filewhere options can be:-expandinfo    : use \@ifinfo sections, not \@iftex-glossary      : handle a glossary-invisible name: use 'name' as an invisible anchor-I dir         : search also for files in 'dir'-Dvar=value    : define a variable, as with \@set-menu          : handle menus-monolithic    : output only one file including ToC-number        : number sections-split_chapter : split on main sections-split_node    : split on nodes-ref_num       : use numeric names when spliting-empty_headers : no headers and implicit links (for inclusion into other documents)-usage         : print usage instructions-verbose       : verbose outputTo check converted files: $0 -check [-verbose] filesEOT  # while ($#ARGV >= 0 && $ARGV[0] =~ /^-/){  $_ = shift(@ARGV);  if (/^-acc$/)            { $use_acc = 1; next; }  if (/^-d(ebug)?(\d+)?$/) { $debug = $2 || shift(@ARGV); next; }  if (/^-doctype$/)        { $doctype = shift(@ARGV); next; }  if (/^-c(heck)?$/)       { $check = 1; next; }  if (/^-e(xpandinfo)?$/)  { $expandinfo = 1; next; }  if (/^-g(lossary)?$/)    { $use_glossary = 1; next; }  if (/^-i(nvisible)?$/)   { $invisible_mark = shift(@ARGV); next; }  if (/^-iso$/)            { $use_iso = 1; next; }  if (/^-I(.+)?$/)         { push(@include_dirs, $2 || shift(@ARGV)); next; }  if (/^-D([a-zA-Z0-9]+)=?(.+)?$/)			   { $value{$1} = $2 ? $2 : 1; next; }  if (/^-m(enu)?$/)        { $show_menu = 1; next; }  if (/^-mono(lithic)?$/)  { $monolithic = 1; next; }  if (/^-n(umber)?$/)      { $number_sections = 1; next; }  if (/^-ref_num$/)        { $opt_use_numbers = 1; next; }  if (/^-empty_headers$/)  { $opt_empty_headers = 1; next; }  if (/^-special_links$/)  { $opt_special_links = $2 || shift(@ARGV); next; }  if (/^-s(plit)?_?(n(ode)?|c(hapter)?)?$/) {    if ($2 =~ /^n/) {      $split_node = 1;    } else {      $split_chapter = 1;    }    next;  }  if (/^-v(erbose)?$/)     { $verbose = 1; next; }  die $usage;}if ($check) {  die $usage unless @ARGV > 0;  &check;  exit;}die "Can't use -special_links with -ref_num.\n"  if $opt_special_links && $opt_use_numbers;die "Must have -split_node with -special_links.\n"  if $opt_special_links && !$split_node;if (($split_node || $split_chapter) && $monolithic) {  warn "Can't use -monolithic with -split, -monolithic ignored.\n";  $monolithic = 0;}if ($expandinfo) {  $to_skip{'ifinfo'}++;  $to_skip{'end ifinfo'}++;} else {  $to_skip{'iftex'}++;  $to_skip{'end iftex'}++;}$invisible_mark = '<IMG SRC="invisible.xbm">' if $invisible_mark eq 'xbm';die $usage unless @ARGV == 1;$docu = shift(@ARGV);if ($docu =~ /.*\//) {  chop($docu_dir = $&);  $docu_name = $';} else {  $docu_dir = '.';  $docu_name = $docu;}unshift(@include_dirs, $docu_dir);$docu_name =~ s/\.te?x(i|info)?$//; # basename of the document$docu_doc = "$docu_name.html"; # document's contents$link_doc = $docu_doc;if ($monolithic) {  $docu_toc = $docu_foot = $docu_doc;} else {  $docu_toc  = "${docu_name}_toc.html"; # document's table of contents  $docu_foot = "${docu_name}_foot.html"; # document's footnotes}## variables#$value{'html'} = 1;		# predefine html (the output format)$value{'texi2html'} = '1.52';	# predefine texi2html (the translator)# _foo: internal to track @fooforeach ('_author', '_title', '_subtitle',	 '_settitle', '_setfilename') {  $value{$_} = '';		# prevent -w warnings}%node2sec = ();		# node to section name%node2href = ();	# node to HREF%bib2href = ();		# bibliography reference to HREF%gloss2href = ();	# glossary term to HREF@sections = ();		# list of sections%tag2pro = ();		# protected sections## initial indexes#$bib_num = 0;$foot_num = 0;$gloss_num = 0;$idx_num = 0;$sec_num = 0;$doc_num = 0;$current_chapter_link = "";@maybe_wrong_links = ();$html_num = 0;## can I use ISO8879 characters? (HTML+)#if ($use_iso) {  $things_map{'bullet'} = "&bull;";  $things_map{'copyright'} = "&copy;";  $things_map{'dots'} = "&hellip;";  $things_map{'equiv'} = "&equiv;";  $things_map{'expansion'} = "&rarr;";  $things_map{'point'} = "&lowast;";  $things_map{'result'} = "&rArr;";}## read texi2html extensions (if any)#$extensions = 'texi2html.ext'; # extensions in working directoryif (-f $extensions) {  print "# reading extensions from $extensions\n" if $verbose;  require($extensions);}($progdir = $0) =~ s/[^\/]+$//;if ($progdir && ($progdir ne './')){  $extensions = "${progdir}texi2html.ext"; # extensions in texi2html directory  if (-f $extensions) {    print "# reading extensions from $extensions\n" if $verbose;    require($extensions);  }}  print "# reading from $docu\n" if $verbose;#+++#############################################################################                                                                              ## Pass 1: read source, handle command, variable, simple substitution           ##                                                                              ##---############################################################################@lines = ();			# whole document@toc_lines = ();		# table of contents$toplevel = 0;			# top level seen in hierarchy$curlevel = 0;			# current level in TOC$node = '';			# current node name$in_table = 0;			# am I inside a table$table_type = '';		# type of table ('', 'f', 'v')@tables = ();			# nested table support$in_bibliography = 0;		# am I inside a bibliography$in_glossary = 0;		# am I inside a glossary$in_top = 0;			# am I inside the top node$in_pre = 0;			# am I inside a preformatted section$in_list = 0;			# am I inside a list$in_html = 0;			# am I inside an HTML section$first_line = 1;		# is it the first line$dont_html = 0;			# don't protect HTML on this line$split_num = 0;			# split index$deferred_ref = '';		# deferred reference for indexes@html_stack = ();		# HTML elements stack$html_element = '';		# current HTML element&html_reset;# build code for simple substitutions# the maps used (%simple_map and %things_map) MUST be aware of this# watch out for regexps, / and escaped characters!$subst_code = '';foreach (keys(%simple_map)) {  ($re = $_) =~ s/(\W)/\\$1/g;	# protect regexp chars  $subst_code .= "s/\\\@$re/$simple_map{$_}/g;\n";}foreach (keys(%things_map)) {  $subst_code .= "s/\\\@$_\\{\\}/$things_map{$_}/g;\n";}if ($use_acc) {  # accentuated characters  foreach (keys(%accent_map)) {    if ($_ eq "`") {      $subst_code .= "s/$;3";    } elsif ($_ eq "'") {      $subst_code .= "s/$;4";    } else {      $subst_code .= "s/\\\@\\$_";    }    $subst_code .= "([aeiou])/&\${1}$accent_map{$_};/gi;\n";  }}eval("sub simple_substitutions { $subst_code }");&init_input;READ_LINE: while ($_ = &next_line){  #  # remove \input on the first lines only  #  if ($first_line) {    next if /^\\input/;    $first_line = 0;  }  #  # parse texinfo tags  #  $tag = '';  $end_tag = '';  if (/^\s*\@end\s+(\w+)\b/) {    $end_tag = $1;  } elsif (/^\s*\@(\w+)\b/) {    $tag = $1;  }  #  # handle @ifhtml / @end ifhtml  #  if ($in_html) {    if ($end_tag eq 'ifhtml') {      $in_html = 0;    } else {      $tag2pro{$in_html} .= $_;    }    next;  } elsif ($tag eq 'ifhtml') {    $in_html = $PROTECTTAG . ++$html_num;    push(@lines, $in_html);    next;  }

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
在线免费观看成人短视频| 国产精品久久久久久久久快鸭 | 大尺度一区二区| 中文字幕一区二区5566日韩| 香港成人在线视频| 成人免费毛片app| 日韩三级在线免费观看| 亚洲视频在线观看三级| 国产99久久久国产精品免费看 | 日韩电影在线一区二区三区| 国产在线精品不卡| 欧美一区二区人人喊爽| 亚洲一区影音先锋| 亚洲国产精品成人综合 | 欧美精品久久99久久在免费线 | 亚洲国产一二三| 国产三级精品三级| 欧美色成人综合| 成人教育av在线| 久久精品国产99| 中文字幕一区二区5566日韩| 久久精品国产99国产| 精品国产一区二区亚洲人成毛片 | 国产精华液一区二区三区| 午夜精品福利一区二区三区av | 国产69精品久久久久毛片| 亚洲三级理论片| 欧美zozozo| 91免费精品国自产拍在线不卡| 伦理电影国产精品| 日韩av高清在线观看| 91精品国产综合久久久久久| 亚洲一区二区三区不卡国产欧美| 欧美日韩综合一区| 日韩精品一二区| 在线播放91灌醉迷j高跟美女| 亚洲精品日产精品乱码不卡| 国产精品1区二区.| 一区二区三区在线观看动漫| 精品久久久三级丝袜| 国产日韩欧美亚洲| 中文字幕一区二区三区在线观看 | 欧美一级日韩一级| 日本韩国一区二区| 欧美日免费三级在线| 91丨porny丨户外露出| 激情综合网av| 成人免费观看av| 国产成人精品网址| 国产精一区二区三区| 经典一区二区三区| 精品一区二区三区av| 国产成人亚洲综合a∨猫咪| 精品一区二区三区久久久| 另类的小说在线视频另类成人小视频在线 | 日韩欧美亚洲国产另类 | 国产一区二区三区综合| 一区二区欧美精品| 国产婷婷色一区二区三区| 91麻豆精品91久久久久久清纯| 免费成人av资源网| 国产伦精品一区二区三区视频青涩 | 国产精品第一页第二页第三页| 欧美在线免费视屏| 国产最新精品免费| 蜜臀av国产精品久久久久| 中文字幕一区在线观看视频| 精品视频色一区| 色综合天天视频在线观看| 欧美人与禽zozo性伦| 欧美精品1区2区3区| 欧美精品在线一区二区三区| 制服丝袜日韩国产| 日韩网站在线看片你懂的| 国产精品视频第一区| 一区在线观看视频| 亚洲一区二区三区在线看| 无码av中文一区二区三区桃花岛| 首页国产丝袜综合| 国产精品一色哟哟哟| 欧美影视一区二区三区| 欧美日韩大陆一区二区| 91精品在线观看入口| 欧美mv和日韩mv国产网站| 久久久久免费观看| 亚洲日韩欧美一区二区在线| 午夜影视日本亚洲欧洲精品| 美女性感视频久久| 91视频com| 91麻豆精品国产91久久久久久| 日本高清不卡视频| 亚洲va天堂va国产va久| 亚洲综合丝袜美腿| 天天色天天操综合| 国产精品夜夜嗨| 成人黄色av电影| 亚洲香蕉伊在人在线观| 精品成人a区在线观看| 欧美三级电影一区| 国产一区在线视频| 日韩精品中文字幕一区二区三区 | 日韩一区二区三区三四区视频在线观看 | 天使萌一区二区三区免费观看| 日韩欧美一级二级| 中文字幕一区二区三区在线观看| 亚洲国产日韩一区二区| 美女视频黄频大全不卡视频在线播放| 国产麻豆视频一区二区| 日本精品一区二区三区高清| 日韩三级免费观看| 夜夜精品视频一区二区| 在线视频你懂得一区二区三区| 老司机一区二区| 91精品国模一区二区三区| 免费不卡在线视频| 日本一区二区三区四区在线视频| 国产精品二区一区二区aⅴ污介绍| 亚洲一区二区三区四区在线观看 | 欧美一级片在线看| 欧美激情在线一区二区三区| 国产综合成人久久大片91| 色激情天天射综合网| 国产精品三级视频| 国产一区二区美女诱惑| 91精品国产黑色紧身裤美女| 国产婷婷一区二区| 亚洲亚洲人成综合网络| 成人深夜福利app| 日韩一区二区不卡| 日韩高清在线电影| 色域天天综合网| 国产精品乱码妇女bbbb| 国产不卡视频一区二区三区| 日韩欧美一级片| 国产一区二区三区久久悠悠色av | 粉嫩久久99精品久久久久久夜| 精品国产露脸精彩对白| 亚洲一区视频在线| 在线观看亚洲成人| 国产精品自拍在线| 日韩一区二区电影| 色婷婷综合视频在线观看| 人禽交欧美网站| 亚洲日本乱码在线观看| 亚洲天堂a在线| 麻豆精品一区二区三区| 欧美午夜不卡视频| 亚洲久本草在线中文字幕| 青青草成人在线观看| 欧美色精品在线视频| 亚洲欧美区自拍先锋| 高清不卡一区二区| 日韩电影免费一区| 91精品国产欧美一区二区 | 欧美女孩性生活视频| 亚洲一区二区av在线| 国产99久久久国产精品| 欧美极品少妇xxxxⅹ高跟鞋| 狠狠色综合播放一区二区| 国产经典欧美精品| 亚洲一本大道在线| 久久久精品免费网站| 色香蕉成人二区免费| 国产精品自在在线| 蜜臀av在线播放一区二区三区| 久久久.com| 99免费精品在线观看| 日韩成人伦理电影在线观看| 国产亚洲精久久久久久| 2020国产精品自拍| 欧美一区二区三区免费大片| 97se亚洲国产综合自在线不卡| 91精品国产一区二区三区| 亚洲精品美国一| 日本中文一区二区三区| 欧美伊人久久久久久久久影院| 玉足女爽爽91| 亚洲精品在线免费观看视频| 国产在线视频一区二区三区| 亚洲综合精品自拍| 日韩欧美一区电影| 99久久伊人网影院| 亚洲bt欧美bt精品| 欧美国产精品劲爆| 色婷婷激情一区二区三区| 久久99精品久久久| 国产精品免费久久| 日韩网站在线看片你懂的| 粉嫩av一区二区三区| 麻豆国产精品官网| 国产精品久久久久久久久免费桃花| 7878成人国产在线观看| 国产激情视频一区二区在线观看 | 欧美四级电影网| 国产主播一区二区| 一区二区三区影院| 欧美不卡视频一区| 色视频一区二区| 国产成人av电影在线播放| 亚洲国产一区二区在线播放|