view release on metacpan or search on metacpan
inc/Module/Install/Repository.pm view on Meta::CPAN
if ($query_repo =~ m!Default Remote: (http://.+)!) {
return $1;
}
}
open my $handle, '<', '_darcs/prefs/repos' or return;
while (<$handle>) {
chomp;
return $_ if m!^http://!;
}
} elsif (-e ".hg") {
view all matches for this distribution
view release on metacpan or search on metacpan
inc/Module/Install/Repository.pm view on Meta::CPAN
if ($query_repo =~ m!Default Remote: (http://.+)!) {
return $1;
}
}
open my $handle, '<', '_darcs/prefs/repos' or return;
while (<$handle>) {
chomp;
return $_ if m!^http://!;
}
} elsif (-e ".hg") {
view all matches for this distribution
view release on metacpan or search on metacpan
devel/convert-scm.pl view on Meta::CPAN
}
}
}
}
sub convert_prefs {
print "prefs\n";
my $filename = "$ENV{HOME}/Chart/prefs.scm";
my $content = File::Slurp::slurp ($filename);
$content =~ s/\#f/""/g;
my $forms = Lisp::Reader::lisp_read($content);
devel/convert-scm.pl view on Meta::CPAN
$dbh->begin_work;
$nbh->begin_work;
$dbh->do ('PRAGMA synchronous = OFF');
$dbh->do ('PRAGMA cache_size = 20000'); # of 1.5k pages, is 30Mb
convert_prefs();
#convert_notes ('BHP.AX','BBW.AX','ERA.AX','TEL.NZ');
convert_notes (directory_files ("$ENV{HOME}/Chart/notes"));
convert_intraday ();
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/CpanDak.pm view on Meta::CPAN
use App::CpanDak::Specials;
use App::cpanminus::fatscript ();
our @ISA=('App::cpanminus::script'); ## no critic(ProhibitExplicitISA)
our $VERSION = '0.1.0'; # VERSION
# ABSTRACT: cpanm, with some sort of distroprefs
sub new {
my ($class) = @_;
lib/App/CpanDak.pm view on Meta::CPAN
=encoding UTF-8
=head1 NAME
App::CpanDak - cpanm, with some sort of distroprefs
=head1 VERSION
version 0.1.0
lib/App/CpanDak.pm view on Meta::CPAN
This is a subclass of C<App::cpanminus::script> that wraps some of its
methods to add the ability to apply patches, set environment
variables, and skip tests, to specific distributions.
The idea comes from L<Distroprefs|CPAN/Configuration for individual
distributions (Distroprefs)>.
=head2 Warning
This is mostly a hack; it will I<not> work on C<cpanminus> 1.79 or
later (those future versions are a complete rewrite, based on
view all matches for this distribution
view release on metacpan or search on metacpan
bin/dual-lived view on Meta::CPAN
'CPAN::CacheMgr',
'CPAN::Complete',
'CPAN::Debug',
'CPAN::DeferredCode',
'CPAN::Distribution',
'CPAN::Distroprefs',
'CPAN::Distrostatus',
'CPAN::Exception::RecursiveDependency',
'CPAN::Exception::blocked_urllist',
'CPAN::Exception::yaml_not_installed',
'CPAN::FTP',
view all matches for this distribution
view release on metacpan or search on metacpan
eumm-migrate.pl view on Meta::CPAN
if ($query_repo =~ m!Default Remote: (http://.+)!) {
return $1;
}
}
open my $handle, '<', '_darcs/prefs/repos' or return;
while (<$handle>) {
chomp;
return $_ if m!^http://!;
}
} elsif (-e ".hg") {
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/EUMM/Upgrade.pm view on Meta::CPAN
if ($query_repo =~ m!Default Remote: (http://.+)!) {
return ('darcs', $1);
}
}
open my $handle, '<', '_darcs/prefs/repos' or return;
while (<$handle>) {
chomp;
return ('darcs', $_) if m!^http://!;
}
} elsif (-e ".hg") {
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/GhaInstall.pm view on Meta::CPAN
'pager' => q[/usr/bin/less],
'patch' => q[/usr/bin/patch],
'perl5lib_verbosity' => q[none],
'prefer_external_tar' => q[1],
'prefer_installer' => q[MB],
'prefs_dir' => qq[$home/.cpan/prefs],
'prerequisites_policy' => q[follow],
'scan_cache' => q[atstart],
'shell' => q[/bin/sh],
'show_unparsable_versions' => q[0],
'show_upload_date' => q[0],
view all matches for this distribution
view release on metacpan or search on metacpan
inc/Module/Install/Repository.pm view on Meta::CPAN
if ($query_repo =~ m!Default Remote: (http://.+)!) {
return $1;
}
}
open my $handle, '<', '_darcs/prefs/repos' or return;
while (<$handle>) {
chomp;
return $_ if m!^http://!;
}
} elsif (-e ".hg") {
view all matches for this distribution
view release on metacpan or search on metacpan
inc/Module/Install/Repository.pm view on Meta::CPAN
if ($query_repo =~ m!Default Remote: (http://.+)!) {
return $1;
}
}
open my $handle, '<', '_darcs/prefs/repos' or return;
while (<$handle>) {
chomp;
return $_ if m!^http://!;
}
} elsif (-e ".hg") {
view all matches for this distribution
view release on metacpan or search on metacpan
inc/Module/Install/Repository.pm view on Meta::CPAN
if ($query_repo =~ m!Default Remote: (http://.+)!) {
return $1;
}
}
open my $handle, '<', '_darcs/prefs/repos' or return;
while (<$handle>) {
chomp;
return $_ if m!^http://!;
}
} elsif (-e ".hg") {
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Music/ChordPro/Wx/Main.pm view on Meta::CPAN
$self->{_verbose} = $options->{verbose};
$self->{_trace} = $options->{trace};
$self->{_debug} = $options->{debug};
$self->GetPreferences;
my $font = $fonts[$self->{prefs_editfont}]->{font};
$font->SetPointSize($self->{prefs_editsize});
$self->{t_source}->SetFont($font);
# Disable menu items if we cannot.
$self->{main_menubar}->FindItem(wxID_UNDO)
->Enable($self->{t_source}->CanUndo);
lib/App/Music/ChordPro/Wx/Main.pm view on Meta::CPAN
")");
$self->{sz_source}->GetStaticBox->SetLabel($1);
}
$self->SetTitle( $self->{_windowtitle} = $file);
$self->{prefs_xpose} = 0;
$self->{prefs_xposesharp} = 0;
}
sub newfile {
my ( $self ) = @_;
undef $self->{_currentfile};
$self->{t_source}->SetValue( <<EOD );
{title: New Song}
EOD
Wx::LogStatus("New file");
$self->{prefs_xpose} = 0;
$self->{prefs_xposesharp} = 0;
}
my ( $preview_cho, $preview_pdf );
my ( $msgs, $fatal, $died );
lib/App/Music/ChordPro/Wx/Main.pm view on Meta::CPAN
$SIG{__WARN__} = \&_warn;
# $SIG{__DIE__} = \&_die;
my $haveconfig;
push( @ARGV, '--nosysconfig', '--nouserconfig', '--nolegacyconfig' )
if $self->{prefs_skipstdcfg};
if ( $self->{prefs_cfgpreset} ) {
$haveconfig++;
foreach ( @{ $self->{prefs_cfgpreset} } ) {
if ( $_ eq "custom" ) {
push( @ARGV, '--config', $self->{prefs_configfile} );
}
else {
push( @ARGV, '--config', $_ );
}
}
}
if ( $self->{prefs_xcode} ) {
$haveconfig++;
push( @ARGV, '--transcode', $self->{prefs_xcode} );
}
if ( $self->{prefs_notation} ) {
$haveconfig++;
push( @ARGV, '--config', 'notes:' . $self->{prefs_notation} );
}
push( @ARGV, '--noconfig' ) unless $haveconfig;
push( @ARGV, '--output', $preview_pdf );
push( @ARGV, '--generate', "PDF" );
push( @ARGV, '--transpose', $self->{prefs_xpose} )
if $self->{prefs_xpose};
push( @ARGV, $preview_cho );
if ( $self->{_trace} || $self->{_debug}
|| $self->{_verbose} && $self->{_verbose} > 1 ) {
lib/App/Music/ChordPro/Wx/Main.pm view on Meta::CPAN
_die($@), goto ERROR if $@ && !$died;
if ( -e $preview_pdf ) {
Wx::LogStatus("Output generated, starting previewer");
if ( my $cmd = $self->{prefs_pdfviewer} ) {
if ( $cmd =~ s/\%f/$preview_pdf/g ) {
}
elsif ( $cmd =~ /\%u/ ) {
my $u = _makeurl($preview_pdf);
$cmd =~ s/\%u/$u/g;
lib/App/Music/ChordPro/Wx/Main.pm view on Meta::CPAN
sub GetPreferences {
my ( $self ) = @_;
my $conf = Wx::ConfigBase::Get;
for ( keys( %$prefctl ) ) {
$self->{"prefs_$_"} = $conf->Read( "preferences/$_", $prefctl->{$_} );
}
# Find config setting.
my $p = lc( $self->{prefs_cfgpreset} ) || $prefctl->{cfgpreset};
if ( ",$p" =~ quotemeta( "," . _T("Custom") ) ) {
$self->{_cfgpresetfile} = $self->{prefs_configfile};
}
my @presets;
foreach ( @{stylelist()} ) {
if ( ",$p" =~ quotemeta( "," . $_ ) ) {
push( @presets, $_ );
}
}
$self->{prefs_cfgpreset} = \@presets;
# Find transcode setting.
$p = lc $self->{prefs_xcode} || $prefctl->{xcode};
if ( $p ) {
if ( $p eq lc(_T("-----")) ) {
$p = $prefctl->{xcode};
}
lib/App/Music/ChordPro/Wx/Main.pm view on Meta::CPAN
last;
}
$p = $n;
}
}
$self->{prefs_xcode} = $p;
}
sub SavePreferences {
my ( $self ) = @_;
return unless $self;
my $conf = Wx::ConfigBase::Get;
local $self->{prefs_cfgpreset} = join( ",", @{$self->{prefs_cfgpreset}} );
for ( keys( %$prefctl ) ) {
$conf->Write( "preferences/$_", $self->{"prefs_$_"} );
}
$conf->Flush;
}
################ Event handlers ################
lib/App/Music/ChordPro/Wx/Main.pm view on Meta::CPAN
sub OnPreferences {
my ($self, $event) = @_;
use App::Music::ChordPro::Wx::PreferencesDialog;
$self->{d_prefs} ||= App::Music::ChordPro::Wx::PreferencesDialog->new($self, -1, "Preferences");
my $ret = $self->{d_prefs}->ShowModal;
$self->SavePreferences if $ret == wxID_OK;
}
sub _aboutmsg {
my ( $self ) = @_;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/ChordPro/Wx/Config.pm view on Meta::CPAN
# Modern
Wx::Font->new( FONTSIZE, wxFONTFAMILY_MODERN,
wxFONTSTYLE_NORMAL, wxFONTWEIGHT_NORMAL ),
);
my %prefs =
(
# (Old) config version.
settings_version => SETTINGS_VERSION - 1,
# Skip default (system, user, song) configs.
lib/ChordPro/Wx/Config.pm view on Meta::CPAN
# Try to compensate for incompatibilities (legacy).
method Load :common {
use Hash::Util qw( lock_keys unlock_keys );
unlock_keys(%preferences);
%preferences = ( %prefs );
while ( my ( $k, $v ) = each %prefs ) {
next unless $k =~ /^(editcolour)_(\w+)_(\w+)/;
$preferences{$1}{$2}{$3} = $v;
}
while ( my ( $k, $v ) = each %preferences ) {
delete $preferences{$k} if $k =~ /^(editcolour)_/;
lib/ChordPro/Wx/Config.pm view on Meta::CPAN
recents => [],
);
$cb->SetPath($config_root);
my ( $ggoon, $group, $gindex ) = $cb->GetFirstGroup;
my %pp = $ggoon ? %prefs : ();
while ( $ggoon ) {
my $cp = $cb->GetPath;
$cb->SetPath($group);
$state{$group} = [] if $group eq "recents";
view all matches for this distribution
view release on metacpan or search on metacpan
public/javascripts/ace/ext-modelist.js view on Meta::CPAN
haXe: ["hx"],
Hjson: ["hjson"],
HTML: ["html|htm|xhtml|vue|we|wpy"],
HTML_Elixir: ["eex|html.eex"],
HTML_Ruby: ["erb|rhtml|html.erb"],
INI: ["ini|conf|cfg|prefs"],
Io: ["io"],
Jack: ["jack"],
Jade: ["jade|pug"],
Java: ["java"],
JavaScript: ["js|jsm|jsx"],
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Netdisco/Web/Device.pm view on Meta::CPAN
my $defaults = var('sidebar_defaults')->{'device_ports'}
or return;
# override ports form defaults with cookie settings
# always do this so that embedded links to device ports page have user prefs
if (param('reset')) {
cookie('nd_ports-form' => '', expires => '-1 day');
}
elsif (my $cookie = cookie('nd_ports-form')) {
my $cdata = url_params_mixed($cookie);
view all matches for this distribution
view release on metacpan or search on metacpan
t/prototype/03-meetup.t view on Meta::CPAN
29 btn_select_920502 button
30 hide_location hide_location checkbox 1
31 hostIdentifyBlurb hostIdentifyBlurb text How will members find you there? 50 80
32 _description description textarea Why should people come? 5000
33 photoId photoId hidden 0
34 photo_prefs photo_prefs hidden upload
35 attachfile attachfile file /home/rob/Pictures/9515.jpg
36 host_9248191 host_9248191 checkbox on Alice 8378
Checked
37 host_9017798 host_9017798 checkbox on Robert Krimen
view all matches for this distribution
view release on metacpan or search on metacpan
inc/Module/Install/Repository.pm view on Meta::CPAN
if ($query_repo =~ m!Default Remote: (http://.+)!) {
return $1;
}
}
open my $handle, '<', '_darcs/prefs/repos' or return;
while (<$handle>) {
chomp;
return $_ if m!^http://!;
}
} elsif (-e ".hg") {
view all matches for this distribution
view release on metacpan or search on metacpan
bin/darcs-sd view on Meta::CPAN
fi
darcsdir=`dirname $darcsdir`
done
fi
replica="$darcsdir/_darcs/prefs/sd"
SD_REPO=$replica exec sd "$@"
view all matches for this distribution
view release on metacpan or search on metacpan
bin/staticperl view on Meta::CPAN
CPAN::Shell->o (conf => urllist => push => "'"$CPAN"'");
CPAN::Shell->o (conf => q<cpan_home>, "'"$STATICPERL"'/cpan");
CPAN::Shell->o (conf => q<init>);
CPAN::Shell->o (conf => q<cpan_home>, "'"$STATICPERL"'/cpan");
CPAN::Shell->o (conf => q<build_dir>, "'"$STATICPERL"'/cpan/build");
CPAN::Shell->o (conf => q<prefs_dir>, "'"$STATICPERL"'/cpan/prefs");
CPAN::Shell->o (conf => q<histfile> , "'"$STATICPERL"'/cpan/histfile");
CPAN::Shell->o (conf => q<keep_source_where>, "'"$STATICPERL"'/cpan/sources");
CPAN::Shell->o (conf => q<makepl_arg>, "MAP_TARGET=perl");
CPAN::Shell->o (conf => q<make>, "'"$PERL_PREFIX"'/bin/SP-make-make");
CPAN::Shell->o (conf => q<make_install_make_command>, "'"$PERL_PREFIX"'/bin/SP-make-install-make");
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/XUL.pm view on Meta::CPAN
#'main.xul' => [$self->_get_file_macosx_mainxul()],
},
},
'defaults' => {
'preferences' => {
'prefs.js' => [$self->_get_file_macosx_prefs()],
},
},
'perl' => {
'server' => {
#'server.pl' => [$self->_get_file_macosx_serverpl()],
lib/App/XUL.pm view on Meta::CPAN
#'main.xul' => [$self->_get_file_macosx_mainxul()],
},
},
'defaults' => {
'preferences' => {
'prefs.js' => [$self->_get_file_macosx_prefs()],
},
},
'perl' => {
'server' => {
#'server.pl' => [$self->_get_file_macosx_serverpl()],
lib/App/XUL.pm view on Meta::CPAN
' };'."\n".
'}'."\n".
'1;'."\n";
}
sub _get_file_macosx_prefs
{
my ($self) = @_;
return <<EOFSRC
pref("toolkit.defaultChromeURI", "chrome://$self->{'name'}/content/main.xul");
/* debugging prefs */
pref("browser.dom.window.dump.enabled", true);
pref("javascript.options.showInConsole", true);
pref("javascript.options.strict", true);
pref("nglayout.debug.disable_xul_cache", true);
pref("nglayout.debug.disable_xul_fastload", true);
lib/App/XUL.pm view on Meta::CPAN
content/
<span style="color:blue;font-weight:bold">AppXUL.js</span>
<span style="color:blue;font-weight:bold">myapp.xul</span>
defaults/
preferences/
<span style="color:blue;font-weight:bold">prefs.js</span>
perl/
server/
<span style="color:blue;font-weight:bold">server.pl</span>
modules/
<i>All Perl modules the server depends on</i>
lib/App/XUL.pm view on Meta::CPAN
=item myapp.xul
Defines the basic UI for the XUL application.
=item prefs.js
Sets some preferences for the XUL application.
=item server.pl
view all matches for this distribution
view release on metacpan or search on metacpan
inc/Module/Install/Repository.pm view on Meta::CPAN
if ($query_repo =~ m!Default Remote: (http://.+)!) {
return $1;
}
}
open my $handle, '<', '_darcs/prefs/repos' or return;
while (<$handle>) {
chomp;
return $_ if m!^http://!;
}
} elsif (-e ".hg") {
view all matches for this distribution
view release on metacpan or search on metacpan
inc/Module/Install/Repository.pm view on Meta::CPAN
if ($query_repo =~ m!Default Remote: (http://.+)!) {
return $1;
}
}
open my $handle, '<', '_darcs/prefs/repos' or return;
while (<$handle>) {
chomp;
return $_ if m!^http://!;
}
} elsif (-e ".hg") {
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/cpanminus.pm view on Meta::CPAN
Showing the changes of the modules you're about to upgrade. See L<cpan-listchanges>
=item *
Patching CPAN modules with distroprefs.
=back
See L<cpanm> or C<cpanm -h> to see what cpanminus I<can> do :)
view all matches for this distribution
view release on metacpan or search on metacpan
inc/Module/Install/Repository.pm view on Meta::CPAN
if ($query_repo =~ m!Default Remote: (http://.+)!) {
return $1;
}
}
open my $handle, '<', '_darcs/prefs/repos' or return;
while (<$handle>) {
chomp;
return $_ if m!^http://!;
}
} elsif (-e ".hg") {
view all matches for this distribution
view release on metacpan or search on metacpan
lib/FlashVideo/Generic.pm view on Meta::CPAN
my $video_re = qr!http[-:/a-z0-9%_.?=&]+@{[EXTENSIONS]}
# Grab any params that might be used for auth..
(?:\?[-:/a-z0-9%_.?=&]+)?!xi;
sub find_video {
my ($self, $browser, $embed_url, $prefs) = @_;
# First strategy - identify all the Flash video files, and download the
# biggest one. Yes, this is hacky.
if (!$browser->success) {
$browser->get($browser->response->header('Location'));
lib/FlashVideo/Generic.pm view on Meta::CPAN
qr{(?si)<object[^>]*>(.*?)</object>},
# Attempt to handle scripts using flashvars / swfobject
qr{(?si)<script[^>]*>(.*?)</script>}) {
for my $param($browser->content =~ /$regex/gi) {
(my $url, $possible_filename, $filename_is_reliable) = find_file_param($browser->clone, $param, $prefs);
if($url) {
my $resolved_url = url_exists($browser->clone, $url);
if($resolved_url) {
$actual_url = $resolved_url;
lib/FlashVideo/Generic.pm view on Meta::CPAN
for my $iframe($browser->content =~ /<iframe[^>]+src=["']?([^"'>]+)/gi) {
$iframe = URI->new_abs($iframe, $browser->uri);
debug "Found iframe: $iframe";
my $sub_browser = $browser->clone;
$sub_browser->get($iframe);
($actual_url) = eval { $self->find_video($sub_browser, undef, $prefs) };
}
}
}
my @filenames;
lib/FlashVideo/Generic.pm view on Meta::CPAN
return;
}
sub find_file_param {
my($browser, $param, $prefs) = @_;
for my $file($param =~ /(?:video|movie|file|path)_?(?:href|src|url)?['"]?\s*[=:,]\s*['"]?([^&'" ]+)/gi,
$param =~ /(?:config|playlist|options)['"]?\s*[,:=]\s*['"]?(http[^'"&]+)/gi,
$param =~ /['"=](.*?@{[EXTENSIONS]})/gi,
$param =~ /([^ ]+@{[EXTENSIONS]})/gi,
$param =~ /SWFObject\(["']([^"']+)/) {
debug "Found $file";
my ($actual_url, $filename, $filename_is_reliable) = guess_file($browser, $file, '', $prefs);
if(!$actual_url && $file =~ /\?(.*)/) {
# Maybe we have query params?
debug "Trying query param on $1";
for my $query_param(split /[;&]/, $1) {
my($query_key, $query_value) = split /=/, $query_param;
debug "Found $query_value from $query_key";
($actual_url, $filename, $filename_is_reliable)
= guess_file($browser, $query_value, '', $prefs);
last if $actual_url;
}
}
lib/FlashVideo/Generic.pm view on Meta::CPAN
return;
}
sub guess_file {
my($browser, $file, $once, $prefs) = @_;
# Contains lots of URI encoding, so try escaping..
$file = uri_unescape($file) if scalar(() = $file =~ /%[A-F0-9]{2}/gi) > 3;
my $orig_uri = URI->new_abs($file, $browser->uri);
lib/FlashVideo/Generic.pm view on Meta::CPAN
$browser->clone);
if($package && $package ne __PACKAGE__) {
debug "$uri is supported by $package.";
(my $browser_on_supported_site = $browser->clone())->get($uri);
return $package->find_video($browser_on_supported_site, $uri, $prefs), 1;
}
my $content_type = $browser->response->header("Content-type");
if($content_type =~ m!^(text|application/xml)!) {
lib/FlashVideo/Generic.pm view on Meta::CPAN
# Found a video URL
return $1;
} elsif(!defined $once
&& $browser->content =~ m!(http[-:/a-zA-Z0-9%_.?=&]+)!i) {
# Try once more, one level deeper..
return guess_file($browser, $1, 1, $prefs);
} else {
info "Tried $uri, but no video URL found";
}
} elsif($content_type =~ m!application/! && $uri ne $orig_uri) {
# We were redirected, maybe something in the new URL?
lib/FlashVideo/Generic.pm view on Meta::CPAN
my $swf_uri = URI->new_abs($1, $browser->uri);
if($swf_uri) {
my $new_uri = URI->new_abs($file, $swf_uri);
debug "Found SWF: $swf_uri -> $new_uri";
if($new_uri ne $uri) {
return guess_file($browser, $new_uri, 1, $prefs);
}
}
}
}
}
view all matches for this distribution
view release on metacpan or search on metacpan
inc/Module/Install/Repository.pm view on Meta::CPAN
if ($query_repo =~ m!Default Remote: (http://.+)!) {
return $1;
}
}
open my $handle, '<', '_darcs/prefs/repos' or return;
while (<$handle>) {
chomp;
return $_ if m!^http://!;
}
} elsif (-e ".hg") {
view all matches for this distribution
view release on metacpan or search on metacpan
inc/Module/Install/Repository.pm view on Meta::CPAN
if ($query_repo =~ m!Default Remote: (http://.+)!) {
return $1;
}
}
open my $handle, '<', '_darcs/prefs/repos' or return;
while (<$handle>) {
chomp;
return $_ if m!^http://!;
}
} elsif (-e ".hg") {
view all matches for this distribution
view release on metacpan or search on metacpan
inc/Module/Install/Repository.pm view on Meta::CPAN
if ($query_repo =~ m!Default Remote: (http://.+)!) {
return $1;
}
}
open my $handle, '<', '_darcs/prefs/repos' or return;
while (<$handle>) {
chomp;
return $_ if m!^http://!;
}
} elsif (-e ".hg") {
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/remarkpl/public/remark.min.js view on Meta::CPAN
},contains:[t,{className:"keyword",begin:"\\bend\\sif\\b"},{className:"function",beginKeywords:"function",end:"$",contains:[t,s,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,e.BINARY_NUMBER_MODE,e.C_NUMBER_MODE,r]},{className:"function",begin:"\\bend\\s+",e...
contains:[{className:"comment",begin:/\(\*/,end:/\*\)/},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,e.C_NUMBER_MODE,{begin:/\{/,end:/\}/,illegal:/:/}]}}},{name:"matlab",create:function(e){var t=[e.C_NUMBER_MODE,{className:"string",begin:"'",end:"'",contai...
illegal:"</",contains:[e.C_NUMBER_MODE,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{className:"string",begin:"`",end:"`",contains:[e.BACKSLASH_ESCAPE]},{begin:"[\\$\\%\\@](\\^\\w\\b|#\\w+|[^\\s\\w{]|{\\w+}|\\w+)"},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_M...
contains:[i]});return{aliases:["ps"],lexemes:/-?[A-z\.\-]+/,case_insensitive:!0,keywords:{keyword:"if else foreach return function do while until elseif begin for trap data dynamicparam end break throw param continue finally in switch exit filter try...
},{className:"meta",begin:"#\\!?\\[",end:"\\]",contains:[{className:"meta-string",begin:/"/,end:/"/}]},{className:"class",beginKeywords:"type",end:";",contains:[e.inherit(e.UNDERSCORE_TITLE_MODE,{endsParent:!0})],illegal:"\\S"},{className:"class",beg...
literal:"true false nil"},contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.NUMBER_MODE,a,t.preprocessor],illegal:/#/}}},{name:"sql",create:function(e){var t=e.COMMENT("--","$");return{case_insensitive:!0,illegal:/[<>{}*#]/,contains:[{beginKey...
return{aliases:["styl"],case_insensitive:!1,keywords:"if else for in",illegal:"("+o.join("|")+")",contains:[e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,a,{begin:"\\.[a-zA-Z][a-zA-Z0-9_-]*"+i,returnBegin:!0,cont...
built_in:"ip eip rip al ah bl bh cl ch dl dh sil dil bpl spl r8b r9b r10b r11b r12b r13b r14b r15b ax bx cx dx si di bp sp r8w r9w r10w r11w r12w r13w r14w r15w eax ebx ecx edx esi edi ebp esp eip r8d r9d r10d r11d r12d r13d r14d r15d rax rbx rcx rdx...
"atelier-lakeside-light":".hljs-atelier-lakeside-light .hljs-comment,.hljs-atelier-lakeside-light .hljs-quote{color:#5a7b8c}.hljs-atelier-lakeside-light .hljs-variable,.hljs-atelier-lakeside-light .hljs-template-variable,.hljs-atelier-lakeside-light ...
grayscale:".hljs-grayscale .hljs{display:block;overflow-x:auto;padding:.5em;color:#333;background:#fff}.hljs-grayscale .hljs-comment,.hljs-grayscale .hljs-quote{color:#777;font-style:italic}.hljs-grayscale .hljs-keyword,.hljs-grayscale .hljs-selector...
"solarized-dark":".hljs-solarized-dark .hljs{display:block;overflow-x:auto;padding:.5em;background:#002b36;color:#839496}.hljs-solarized-dark .hljs-comment,.hljs-solarized-dark .hljs-quote{color:#586e75}.hljs-solarized-dark .hljs-keyword,.hljs-solari...
view all matches for this distribution