⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 nonhighlightedlxrlinefilter.pm

📁 codestriker is a develop useful tool to review code on web user interface.
💻 PM
字号:
################################################################################ Codestriker: Copyright (c) 2001, 2002 David Sitsky.  All rights reserved.# sits@users.sourceforge.net## This program is free software; you can redistribute it and modify it under# the terms of the GPL.# Line filter for linking to LXR for non-highlighted text.package Codestriker::Http::NonHighlightedLxrLineFilter;use strict;use Codestriker::Http::LxrLineFilter;@Codestriker::Http::NonHighlightedLxrLineFilter::ISA =  ("Codestriker::Http::LxrLineFilter");# Parse the line and produce the appropriate hyperlinks to LXR.# Currently, this is very Java/C/C++ centric, but it will do for now.sub _filter {    my ($self, $text) = @_;    my $newdata = "";    my @lines = split /\n/, $text;    foreach my $line (@lines) {        if ($line =~ /^(package(\s| )+)([\w\.]+)(.*)$/) {            # Handle package Java statements.            $newdata .= $1 . $self->lxr_ident($3) . $4 . "\n";        } elsif ($line =~ /^(import(\s| )+)([\w\.]+)\.(\w+)((\s| )*)(.*)$/) {            # Handle Java import statements.            $newdata .= $1 . $self->lxr_ident($3) . "." . $self->lxr_ident($4) . "$5$7\n";        } else {            $newdata .= $self->_handle_identifiers($line) . "\n";        }    }    return $newdata;}1;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -