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

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

?? plaintext.pm

?? 視頻監控網絡部分的協議ddns,的模塊的實現代碼,請大家大膽指正.
?? PM
?? 第 1 頁 / 共 2 頁
字號:
# Pod::PlainText -- Convert POD data to formatted ASCII text.# $Id: Text.pm,v 2.1 1999/09/20 11:53:33 eagle Exp $## Copyright 1999-2000 by Russ Allbery <rra@stanford.edu>## This program is free software; you can redistribute it and/or modify it# under the same terms as Perl itself.## This module is intended to be a replacement for Pod::Text, and attempts to# match its output except for some specific circumstances where other# decisions seemed to produce better output.  It uses Pod::Parser and is# designed to be very easy to subclass.############################################################################# Modules and declarations############################################################################package Pod::PlainText;require 5.005;use Carp qw(carp croak);use Pod::Select ();use strict;use vars qw(@ISA %ESCAPES $VERSION);# We inherit from Pod::Select instead of Pod::Parser so that we can be used# by Pod::Usage.@ISA = qw(Pod::Select);$VERSION = '2.02';############################################################################# Table of supported E<> escapes############################################################################# This table is taken near verbatim from Pod::PlainText in Pod::Parser,# which got it near verbatim from the original Pod::Text.  It is therefore# credited to Tom Christiansen, and I'm glad I didn't have to write it.  :)%ESCAPES = (    'amp'       =>    '&',      # ampersand    'lt'        =>    '<',      # left chevron, less-than    'gt'        =>    '>',      # right chevron, greater-than    'quot'      =>    '"',      # double quote    "Aacute"    =>    "\xC1",   # capital A, acute accent    "aacute"    =>    "\xE1",   # small a, acute accent    "Acirc"     =>    "\xC2",   # capital A, circumflex accent    "acirc"     =>    "\xE2",   # small a, circumflex accent    "AElig"     =>    "\xC6",   # capital AE diphthong (ligature)    "aelig"     =>    "\xE6",   # small ae diphthong (ligature)    "Agrave"    =>    "\xC0",   # capital A, grave accent    "agrave"    =>    "\xE0",   # small a, grave accent    "Aring"     =>    "\xC5",   # capital A, ring    "aring"     =>    "\xE5",   # small a, ring    "Atilde"    =>    "\xC3",   # capital A, tilde    "atilde"    =>    "\xE3",   # small a, tilde    "Auml"      =>    "\xC4",   # capital A, dieresis or umlaut mark    "auml"      =>    "\xE4",   # small a, dieresis or umlaut mark    "Ccedil"    =>    "\xC7",   # capital C, cedilla    "ccedil"    =>    "\xE7",   # small c, cedilla    "Eacute"    =>    "\xC9",   # capital E, acute accent    "eacute"    =>    "\xE9",   # small e, acute accent    "Ecirc"     =>    "\xCA",   # capital E, circumflex accent    "ecirc"     =>    "\xEA",   # small e, circumflex accent    "Egrave"    =>    "\xC8",   # capital E, grave accent    "egrave"    =>    "\xE8",   # small e, grave accent    "ETH"       =>    "\xD0",   # capital Eth, Icelandic    "eth"       =>    "\xF0",   # small eth, Icelandic    "Euml"      =>    "\xCB",   # capital E, dieresis or umlaut mark    "euml"      =>    "\xEB",   # small e, dieresis or umlaut mark    "Iacute"    =>    "\xCD",   # capital I, acute accent    "iacute"    =>    "\xED",   # small i, acute accent    "Icirc"     =>    "\xCE",   # capital I, circumflex accent    "icirc"     =>    "\xEE",   # small i, circumflex accent    "Igrave"    =>    "\xCD",   # capital I, grave accent    "igrave"    =>    "\xED",   # small i, grave accent    "Iuml"      =>    "\xCF",   # capital I, dieresis or umlaut mark    "iuml"      =>    "\xEF",   # small i, dieresis or umlaut mark    "Ntilde"    =>    "\xD1",   # capital N, tilde    "ntilde"    =>    "\xF1",   # small n, tilde    "Oacute"    =>    "\xD3",   # capital O, acute accent    "oacute"    =>    "\xF3",   # small o, acute accent    "Ocirc"     =>    "\xD4",   # capital O, circumflex accent    "ocirc"     =>    "\xF4",   # small o, circumflex accent    "Ograve"    =>    "\xD2",   # capital O, grave accent    "ograve"    =>    "\xF2",   # small o, grave accent    "Oslash"    =>    "\xD8",   # capital O, slash    "oslash"    =>    "\xF8",   # small o, slash    "Otilde"    =>    "\xD5",   # capital O, tilde    "otilde"    =>    "\xF5",   # small o, tilde    "Ouml"      =>    "\xD6",   # capital O, dieresis or umlaut mark    "ouml"      =>    "\xF6",   # small o, dieresis or umlaut mark    "szlig"     =>    "\xDF",   # small sharp s, German (sz ligature)    "THORN"     =>    "\xDE",   # capital THORN, Icelandic    "thorn"     =>    "\xFE",   # small thorn, Icelandic    "Uacute"    =>    "\xDA",   # capital U, acute accent    "uacute"    =>    "\xFA",   # small u, acute accent    "Ucirc"     =>    "\xDB",   # capital U, circumflex accent    "ucirc"     =>    "\xFB",   # small u, circumflex accent    "Ugrave"    =>    "\xD9",   # capital U, grave accent    "ugrave"    =>    "\xF9",   # small u, grave accent    "Uuml"      =>    "\xDC",   # capital U, dieresis or umlaut mark    "uuml"      =>    "\xFC",   # small u, dieresis or umlaut mark    "Yacute"    =>    "\xDD",   # capital Y, acute accent    "yacute"    =>    "\xFD",   # small y, acute accent    "yuml"      =>    "\xFF",   # small y, dieresis or umlaut mark    "lchevron"  =>    "\xAB",   # left chevron (double less than)    "rchevron"  =>    "\xBB",   # right chevron (double greater than));############################################################################# Initialization############################################################################# Initialize the object.  Must be sure to call our parent initializer.sub initialize {    my $self = shift;    $$self{alt}      = 0  unless defined $$self{alt};    $$self{indent}   = 4  unless defined $$self{indent};    $$self{loose}    = 0  unless defined $$self{loose};    $$self{sentence} = 0  unless defined $$self{sentence};    $$self{width}    = 76 unless defined $$self{width};    $$self{INDENTS}  = [];              # Stack of indentations.    $$self{MARGIN}   = $$self{indent};  # Current left margin in spaces.    $self->SUPER::initialize;}############################################################################# Core overrides############################################################################# Called for each command paragraph.  Gets the command, the associated# paragraph, the line number, and a Pod::Paragraph object.  Just dispatches# the command to a method named the same as the command.  =cut is handled# internally by Pod::Parser.sub command {    my $self = shift;    my $command = shift;    return if $command eq 'pod';    return if ($$self{EXCLUDE} && $command ne 'end');    $self->item ("\n") if defined $$self{ITEM};    $command = 'cmd_' . $command;    $self->$command (@_);}# Called for a verbatim paragraph.  Gets the paragraph, the line number, and# a Pod::Paragraph object.  Just output it verbatim, but with tabs converted# to spaces.sub verbatim {    my $self = shift;    return if $$self{EXCLUDE};    $self->item if defined $$self{ITEM};    local $_ = shift;    return if /^\s*$/;    s/^(\s*\S+)/(' ' x $$self{MARGIN}) . $1/gme;    $self->output ($_);}# Called for a regular text block.  Gets the paragraph, the line number, and# a Pod::Paragraph object.  Perform interpolation and output the results.sub textblock {    my $self = shift;    return if $$self{EXCLUDE};    $self->output ($_[0]), return if $$self{VERBATIM};    local $_ = shift;    my $line = shift;    # Perform a little magic to collapse multiple L<> references.  This is    # here mostly for backwards-compatibility.  We'll just rewrite the whole    # thing into actual text at this part, bypassing the whole internal    # sequence parsing thing.    s{        (          L<                    # A link of the form L</something>.              /              (                  [:\w]+        # The item has to be a simple word...                  (\(\))?       # ...or simple function.              )          >          (              ,?\s+(and\s+)?    # Allow lots of them, conjuncted.              L<                    /                  (                      [:\w]+                      (\(\))?                  )              >          )+        )    } {        local $_ = $1;        s%L</([^>]+)>%$1%g;        my @items = split /(?:,?\s+(?:and\s+)?)/;        my $string = "the ";        my $i;        for ($i = 0; $i < @items; $i++) {            $string .= $items[$i];            $string .= ", " if @items > 2 && $i != $#items;            $string .= " and " if ($i == $#items - 1);        }        $string .= " entries elsewhere in this document";        $string;    }gex;    # Now actually interpolate and output the paragraph.    $_ = $self->interpolate ($_, $line);    s/\s+$/\n/;    if (defined $$self{ITEM}) {        $self->item ($_ . "\n");    } else {        $self->output ($self->reformat ($_ . "\n"));    }}# Called for an interior sequence.  Gets the command, argument, and a# Pod::InteriorSequence object and is expected to return the resulting text.# Calls code, bold, italic, file, and link to handle those types of# sequences, and handles S<>, E<>, X<>, and Z<> directly.sub interior_sequence {    my $self = shift;    my $command = shift;    local $_ = shift;    return '' if ($command eq 'X' || $command eq 'Z');    # Expand escapes into the actual character now, carping if invalid.    if ($command eq 'E') {        return $ESCAPES{$_} if defined $ESCAPES{$_};        carp "Unknown escape: E<$_>";        return "E<$_>";    }    # For all the other sequences, empty content produces no output.    return if $_ eq '';    # For S<>, compress all internal whitespace and then map spaces to \01.    # When we output the text, we'll map this back.    if ($command eq 'S') {        s/\s{2,}/ /g;        tr/ /\01/;        return $_;    }    # Anything else needs to get dispatched to another method.    if    ($command eq 'B') { return $self->seq_b ($_) }    elsif ($command eq 'C') { return $self->seq_c ($_) }    elsif ($command eq 'F') { return $self->seq_f ($_) }    elsif ($command eq 'I') { return $self->seq_i ($_) }    elsif ($command eq 'L') { return $self->seq_l ($_) }    else { carp "Unknown sequence $command<$_>" }}# Called for each paragraph that's actually part of the POD.  We take# advantage of this opportunity to untabify the input.sub preprocess_paragraph {    my $self = shift;    local $_ = shift;    1 while s/^(.*?)(\t+)/$1 . ' ' x (length ($2) * 8 - length ($1) % 8)/me;    $_;}############################################################################# Command paragraphs############################################################################# All command paragraphs take the paragraph and the line number.# First level heading.sub cmd_head1 {    my $self = shift;    local $_ = shift;    s/\s+$//;    $_ = $self->interpolate ($_, shift);    if ($$self{alt}) {        $self->output ("\n==== $_ ====\n\n");    } else {        $_ .= "\n" if $$self{loose};        $self->output ($_ . "\n");    }}# Second level heading.sub cmd_head2 {    my $self = shift;    local $_ = shift;    s/\s+$//;    $_ = $self->interpolate ($_, shift);    if ($$self{alt}) {        $self->output ("\n==   $_   ==\n\n");    } else {        $self->output (' ' x ($$self{indent} / 2) . $_ . "\n\n");    }}# third level heading - not strictly perlpodspec compliantsub cmd_head3 {    my $self = shift;    local $_ = shift;    s/\s+$//;    $_ = $self->interpolate ($_, shift);    if ($$self{alt}) {        $self->output ("\n= $_ =\n");    } else {        $self->output (' ' x ($$self{indent}) . $_ . "\n");    }}# fourth level heading - not strictly perlpodspec compliant# just like head3*cmd_head4 = \&cmd_head3;# Start a list.sub cmd_over {    my $self = shift;    local $_ = shift;    unless (/^[-+]?\d+\s+$/) { $_ = $$self{indent} }    push (@{ $$self{INDENTS} }, $$self{MARGIN});    $$self{MARGIN} += ($_ + 0);}# End a list.sub cmd_back {    my $self = shift;    $$self{MARGIN} = pop @{ $$self{INDENTS} };    unless (defined $$self{MARGIN}) {        carp "Unmatched =back";        $$self{MARGIN} = $$self{indent};    }}# An individual list item.sub cmd_item {    my $self = shift;    if (defined $$self{ITEM}) { $self->item }    local $_ = shift;    s/\s+$//;    $$self{ITEM} = $self->interpolate ($_);}# Begin a block for a particular translator.  Setting VERBATIM triggers# special handling in textblock().sub cmd_begin {    my $self = shift;    local $_ = shift;    my ($kind) = /^(\S+)/ or return;    if ($kind eq 'text') {        $$self{VERBATIM} = 1;    } else {        $$self{EXCLUDE} = 1;    }}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
在线观看欧美日本| 亚洲精品视频在线看| 一区二区三区日韩| 国模大尺度一区二区三区| 日本电影亚洲天堂一区| 国产日韩亚洲欧美综合| 亚洲成人免费影院| 99国产精品一区| 精品国内二区三区| 亚洲成人综合在线| 95精品视频在线| 中文一区二区完整视频在线观看 | 亚洲成人在线网站| 成人永久aaa| 久久蜜桃av一区二区天堂| 秋霞影院一区二区| 欧美日韩卡一卡二| 亚洲自拍偷拍欧美| 91麻豆6部合集magnet| 国产精品人成在线观看免费| 国产在线视频不卡二| 91精品国产综合久久福利软件 | 国产女主播一区| 国产在线麻豆精品观看| 精品蜜桃在线看| 麻豆精品视频在线观看免费| 7777精品伊人久久久大香线蕉| 一区二区三区四区蜜桃| 在线视频综合导航| 亚洲欧美日韩精品久久久久| 成人精品小蝌蚪| 国产精品久久久久久久久果冻传媒 | 国产福利视频一区二区三区| 久久久久久久久久久黄色| 国产资源精品在线观看| 久久免费看少妇高潮| 国产一区二区三区在线观看免费视频| 日韩你懂的在线观看| 国产毛片精品一区| 国产精品久久久久久亚洲毛片| 国产成人精品免费网站| 国产精品美女久久久久久久| 91在线视频播放| 天天综合天天做天天综合| 欧美一级片在线看| 精品一二三四在线| 国产亚洲一区二区三区| 99精品黄色片免费大全| 一区二区三区四区不卡在线| 777久久久精品| 国产黄色精品网站| 一区视频在线播放| 欧美日韩不卡一区二区| 久久国产精品一区二区| 国产日韩一级二级三级| 99re视频这里只有精品| 亚洲18影院在线观看| 久久亚洲综合色一区二区三区 | 国产片一区二区| 99久久久久免费精品国产 | 欧美日韩精品一区二区三区蜜桃 | 日韩av电影天堂| 久久久久久亚洲综合影院红桃| 99视频在线观看一区三区| 亚洲在线观看免费| 26uuu亚洲综合色欧美| 91浏览器打开| 蜜臀va亚洲va欧美va天堂| 国产精品人成在线观看免费| 在线视频综合导航| 日韩女优毛片在线| 精品一区二区三区影院在线午夜| 大陆成人av片| 欧美肥妇bbw| 一区二区激情视频| 亚洲精品一区二区三区影院| 97se亚洲国产综合自在线观| 麻豆精品一区二区综合av| 亚洲人一二三区| 欧美精品一区二区久久久| 色婷婷狠狠综合| 国产在线日韩欧美| 亚洲成人动漫av| 国产精品成人免费| 精品粉嫩aⅴ一区二区三区四区| 色婷婷av一区二区三区大白胸| 久久成人麻豆午夜电影| 一区二区视频免费在线观看| 久久婷婷久久一区二区三区| 欧美日韩精品一区二区在线播放| www.欧美日韩| 久久99蜜桃精品| 免费精品视频在线| 亚洲午夜影视影院在线观看| 一区在线中文字幕| 欧美激情中文字幕一区二区| 日韩精品最新网址| 欧美丰满一区二区免费视频| 91黄视频在线观看| 99久久免费精品高清特色大片| 国产精品中文欧美| 捆绑调教一区二区三区| 午夜精彩视频在线观看不卡| 亚洲综合久久久久| 一区二区三区精密机械公司| 综合欧美一区二区三区| 中文字幕欧美日韩一区| 久久久青草青青国产亚洲免观| 日韩一级片网址| 正在播放一区二区| 欧美日本免费一区二区三区| 欧美日韩在线免费视频| 欧洲另类一二三四区| 色老头久久综合| 欧美无砖专区一中文字| 欧美日韩黄色一区二区| 欧美日韩国产免费一区二区 | 欧美电影免费观看高清完整版在| 欧美高清激情brazzers| 欧美高清www午色夜在线视频| 欧美精选午夜久久久乱码6080| 欧美中文字幕一区二区三区 | 在线亚洲免费视频| 欧美色视频在线| 欧美高清激情brazzers| 欧美一区二区免费视频| 日韩一级大片在线| 精品免费国产二区三区| 国产精品午夜电影| 亚洲人成在线播放网站岛国| 一区二区三区免费网站| 日本va欧美va欧美va精品| 六月丁香婷婷色狠狠久久| 国产高清在线观看免费不卡| 91香蕉视频mp4| 在线不卡中文字幕| 久久影音资源网| 国产精品电影院| 亚洲成人一区在线| 久久精品99国产精品日本| 国产成人精品免费网站| 色婷婷亚洲综合| 日韩一区二区中文字幕| 欧美国产精品一区| 午夜日韩在线观看| 精品一二线国产| 日本韩国一区二区| 日韩一区二区三区三四区视频在线观看| 久久综合久色欧美综合狠狠| 中文字幕中文字幕中文字幕亚洲无线| 一区二区三区国产精品| 精品亚洲porn| 91精彩视频在线| 精品久久国产字幕高潮| 中文字幕一区二区三区在线不卡| 天天色综合成人网| 成人免费视频免费观看| 欧洲国内综合视频| 久久午夜色播影院免费高清| 一区二区三区四区在线免费观看| 精品一区二区三区在线播放视频 | 日本电影欧美片| 精品福利一区二区三区 | 国产香蕉久久精品综合网| 亚洲精品国久久99热| 国产成人精品免费视频网站| 91精品综合久久久久久| 亚洲色图一区二区三区| 国产真实乱偷精品视频免| 欧美色精品在线视频| 国产精品电影院| 国产精品自拍网站| 日韩免费在线观看| 亚洲午夜视频在线| aaa国产一区| 久久久久国产精品人| 免费成人结看片| 欧美日韩国产高清一区二区三区 | 亚洲综合色噜噜狠狠| 成人高清视频在线| 久久久精品免费观看| 日本vs亚洲vs韩国一区三区| 欧美日韩久久一区| 玉足女爽爽91| 日本久久一区二区| 国产精品久久久久久妇女6080| 国产精品一区二区视频| 欧美一级夜夜爽| 蜜桃视频第一区免费观看| 555夜色666亚洲国产免| 亚洲成人一区在线| 欧美视频在线一区二区三区| 洋洋成人永久网站入口| 色综合久久久久久久| 中文字幕五月欧美| 91丝袜高跟美女视频| 亚洲日本丝袜连裤袜办公室| 成人黄色国产精品网站大全在线免费观看| 精品日韩99亚洲| 精品一区二区三区免费视频|