view release on metacpan or search on metacpan
lib/PlackX/Framework/Handler.pm view on Meta::CPAN
$mapper->map('/' => $file_app) if $file_app;
return $mapper->to_app;
}
# Static file app with no app_base, so try one, try the other if it's 404
# (basically our own cascade whereas we could use Plack::App::Cascade).
# We prefer to serve the app's 404 page if the file app also returns 404
# because it is easier to customize the 404 page with PXF.
# Add a later date we might add a feature to intercept all 4xx and 5xx
# error codes at the last possible moment and render a user-defined page.
return sub ($env) {
view all matches for this distribution
view release on metacpan or search on metacpan
In case options should become standard, store them in a file C<.pod2pp> in your
home directory. To make settings valid for all users, store them in a C<.pod2pp>
file in the directory of C<pod2pp> itself. C<.pod2pp> files will be read automatically.
Option files can be nested and cascaded, see C<Getopt::ArgvFile> for further details.
=head1 NOTES
view all matches for this distribution
view release on metacpan or search on metacpan
Prima/MDI.pm view on Meta::CPAN
{
my @m = $_[0]-> mdis;
$m[0]-> arrange_icons if $m[0];
}
sub cascade
{
my @m = $_[0]-> mdis;
$m[0]-> cascade if $m[0];
}
sub tile
{
my @m = $_[0]-> mdis;
Prima/MDI.pm view on Meta::CPAN
$i++;
}
$_-> unlock for @mdis;
}
sub cascade
{
my $self = $_[0]-> owner;
my @mdis = grep {
(($_-> windowState != ws::Minimized) and $_-> tileable && $_-> clipOwner) ?
$_ :
Prima/MDI.pm view on Meta::CPAN
MDI stands for Multiple Document Interface, and is a Microsoft Windows user
interface, that consists of multiple non-toplevel windows belonging to an
application window. The module contains classes that provide similar
functionality; sub-window widgets realize a set of operations, close to those
of the real top-level windows, - iconize, maximize, cascade etc.
The basic classes required to use the MDI are C<Prima::MDIOwner> and
C<Prima::MDI>, which are, correspondingly, sub-window owner class and
sub-window class. C<Prima::MDIWindowOwner> is exactly the same as
C<Prima::MDIOwner> but is a C<Prima::Window> descendant: the both owner classes
Prima/MDI.pm view on Meta::CPAN
Selects restore button image in pressed state.
=item tileable BOOLEAN
Selects whether the window is allowed to participate in cascading and tiling
auto-arrangements, performed correspondingly by C<cascade> and C<tile> methods.
If 0, the window is never positioned automatically.
Default value: 1
=item titleHeight INTEGER
Prima/MDI.pm view on Meta::CPAN
=item arrange_icons
Arranges geometrically the minimized sibling MDI windows.
=item cascade
Arranges sibling MDI windows so they form a cascade-like structure: the lowest
window is expanded to the full owner window inferior rectangle, window next to
the lowest occupies the inferior rectangle of the lowest window, etc.
Only windows with C<tileable> property set to 1 are processed.
Prima/MDI.pm view on Meta::CPAN
=item arrange_icons
Same as C<Prima::MDI::arrange_icons>.
=item cascade
Same as C<Prima::MDI::cascade>.
=item tile
Same as C<Prima::MDI::tile>.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Prophet/Web/Menu.pm view on Meta::CPAN
absolute (does not start with a "/"), then is is treated as relative to it's
parent's url, and made absolute.
=head2 active [BOOLEAN]
Gets or sets if the menu item is marked as active. Setting this cascades to
all of the parents of the menu item.
=head2 child KEY [, PARAMHASH]
If only a I<KEY> is provided, returns the child with that I<KEY>.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Prty/Database/Connection.pm view on Meta::CPAN
if ($self->isOracle) {
my $stmt = $sql->dropTrigger($name);
return $self->sqlAtomic($stmt);
}
elsif ($self->isPostgreSQL) {
my $stmt = $sql->dropFunction($name.'_proc',-cascade=>1);
return $self->sqlAtomic($stmt);
}
$self->throw('Not implemented');
}
view all matches for this distribution
view release on metacpan or search on metacpan
misc/js/debug.js view on Meta::CPAN
var initialtab=[1,"sc1"]
function cascadedstyle(el,cssproperty,csspropertyNS){if(el.currentStyle)
return el.currentStyle[cssproperty]
else if(window.getComputedStyle){var elstyle=window.getComputedStyle(el,"")
return elstyle.getPropertyValue(csspropertyNS)}}
var previoustab=""
function expandcontent(cid,aobject){if(document.getElementById){highlighttab(aobject)
misc/js/debug.js view on Meta::CPAN
function detectSourceindex(aobject){for(i=0;i<tabobjlinks.length;i++){if(aobject==tabobjlinks[i]){tabsourceindex=i
break}}}
function do_onload(){var cookiename=(typeof persisttype!="undefined"&&persisttype=="sitewide")?"tabcontent":window.location.pathname
var cookiecheck=window.get_cookie&&get_cookie(cookiename).indexOf("|")!=-1
collecttablinks()
initTabcolor=cascadedstyle(tabobjlinks[1],"backgroundColor","background-color")
initTabpostcolor=cascadedstyle(tabobjlinks[0],"backgroundColor","background-color")
if(typeof enablepersistence!="undefined"&&enablepersistence&&cookiecheck){var cookieparse=get_cookie(cookiename).split("|")
var whichtab=cookieparse[0]
var tabcontentid=cookieparse[1]
expandcontent(tabcontentid,tabobjlinks[whichtab])}
else
view all matches for this distribution
view release on metacpan or search on metacpan
qtgui/examples/mainwindows/mdi/MainWindow.pm view on Meta::CPAN
this->{saveAsAct}->setEnabled($hasMdiChild);
this->{pasteAct}->setEnabled($hasMdiChild);
this->{closeAct}->setEnabled($hasMdiChild);
this->{closeAllAct}->setEnabled($hasMdiChild);
this->{tileAct}->setEnabled($hasMdiChild);
this->{cascadeAct}->setEnabled($hasMdiChild);
this->{nextAct}->setEnabled($hasMdiChild);
this->{previousAct}->setEnabled($hasMdiChild);
this->{separatorAct}->setVisible($hasMdiChild);
my $hasSelection = (this->activeMdiChild() &&
qtgui/examples/mainwindows/mdi/MainWindow.pm view on Meta::CPAN
this->{windowMenu}->clear();
this->{windowMenu}->addAction(this->{closeAct});
this->{windowMenu}->addAction(this->{closeAllAct});
this->{windowMenu}->addSeparator();
this->{windowMenu}->addAction(this->{tileAct});
this->{windowMenu}->addAction(this->{cascadeAct});
this->{windowMenu}->addSeparator();
this->{windowMenu}->addAction(this->{nextAct});
this->{windowMenu}->addAction(this->{previousAct});
this->{windowMenu}->addAction(this->{separatorAct});
qtgui/examples/mainwindows/mdi/MainWindow.pm view on Meta::CPAN
my $tileAct = Qt::Action("&Tile", this);
this->{tileAct} = $tileAct;
$tileAct->setStatusTip("Tile the windows");
this->connect($tileAct, SIGNAL 'triggered()', this->{mdiArea}, SLOT 'tileSubWindows()');
my $cascadeAct = Qt::Action("&Cascade", this);
this->{cascadeAct} = $cascadeAct;
$cascadeAct->setStatusTip("Cascade the windows");
this->connect($cascadeAct, SIGNAL 'triggered()', this->{mdiArea}, SLOT 'cascadeSubWindows()');
my $nextAct = Qt::Action("Ne&xt", this);
this->{nextAct} = $nextAct;
$nextAct->setStatusTip("Move the focus to the next window");
this->connect($nextAct, SIGNAL 'triggered()',
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Quiq/Database/Connection.pm view on Meta::CPAN
if ($self->isOracle) {
my $stmt = $sql->dropTrigger($name);
return $self->sqlAtomic($stmt);
}
elsif ($self->isPostgreSQL) {
my $stmt = $sql->dropFunction($name.'_proc()',-cascade=>1);
return $self->sqlAtomic($stmt);
}
$self->throw('Not implemented');
}
view all matches for this distribution
view release on metacpan or search on metacpan
and an SQL statement, if relevant, by including debug=1 in the URL.
=head1 TODO
Generate forms for interactive data definition.
Enforce referential integrity (cascade/block deletes).
* Enforce uniqueness for label columns.
* Add fancy display options that support automagic hyperlinking of
URLs and email addresses.
* denotes feature present in the original PHP/FI version.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/RDF/Flow.pm view on Meta::CPAN
use RDF::Flow::Pipeline;
use RDF::Flow::Cached;
use base 'Exporter';
our @EXPORT = qw(rdflow);
our @EXPORT_OK = qw(rdflow cached union cascade pipeline previous rdflow_uri);
our %EXPORT_TAGS = (
all => [qw(rdflow cached union cascade pipeline previous)] );
our $PREVIOUS = RDF::Flow::Source->new( sub { shift->{'rdflow.data'} } );
sub rdflow { RDF::Flow::Source->new(@_) }
sub union { RDF::Flow::Union->new( @_ ) }
sub cascade { RDF::Flow::Cascade->new( @_ ) }
sub pipeline { RDF::Flow::Pipeline->new( @_ ) }
sub cached { RDF::Flow::Cached->new( @_ ); }
sub previous { $RDF::Flow::PREVIOUS; }
lib/RDF/Flow.pm view on Meta::CPAN
=item C<cached>
Shortcut to create a new cached source with L<RDF::Flow::Cached>.
=item C<cascade>
Shortcut to create a new source cascade with L<RDF::Flow::Cascade>.
=item C<pipeline>
Shortcut to create a new source pipeline with L<RDF::Flow::Pipeline>.
view all matches for this distribution
view release on metacpan or search on metacpan
bin/serv1.pl view on Meta::CPAN
{
my $r_person = $q->param('r_person') or die "No node specified";
# my $model = $s->get_model(NS_LD.'#M1');
my $model = $s;
my $person = $model->get($r_person);
if( $person->delete_node_cascade() )
{
return "Deleted person";
}
else
{
view all matches for this distribution
view release on metacpan or search on metacpan
t/rdql-tests/rdf/dc.rdf view on Meta::CPAN
<dcterms:abstract xml:lang="en">carlos's test page.</dcterms:abstract>
</rdf:Description>
</rdf:li>
<rdf:li>
<rdf:Description rdf:about="http://testers.mkdoc.com/cascadenet-quiz/">
<dc:title xml:lang="en">Cascadenet Quiz</dc:title>
<dcterms:abstract xml:lang="en">A test page </dcterms:abstract>
</rdf:Description>
</rdf:li>
view all matches for this distribution
view release on metacpan or search on metacpan
examples/anticol_c.pl view on Meta::CPAN
# Enable field so more power consuming cards can power themselves up
nfc_configure($pdi, NDO_ACTIVATE_FIELD, 1);
my $cmd = pack("C", MU_REQA);
if (my $resp = transceive_bits($pdi, $cmd, 7)) {
$cmd = pack("C2", MU_SELECT1, 0x20); # ANTICOLLISION of cascade level 1
if ($resp = transceive_bytes($pdi, $cmd, 2)) {
my (@rb) = unpack("C".length($resp), $resp);
my $cuid = pack("C3", $rb[1], $rb[2], $rb[3]);
if ($rb[0] == 0x88) { # define a constant for 0x88
$cmd = pack("C9", MU_SELECT1, 0x70, @rb); # SELECT of cascade level 1
iso14443a_crc_append($cmd, 7);
if ($resp = transceive_bytes($pdi, $cmd, 9)) {
# we need to do cascade level 2
# first let's get the missing part of the uid
$cmd = pack("C2", MU_SELECT2, 0x20); # ANTICOLLISION of cascade level 2
if ($resp = transceive_bytes($pdi, $cmd, 2)) {
@rb = unpack("C".length($resp), $resp);
$cuid .= pack("C3", $rb[1], $rb[2], $rb[3]);
$cmd = pack("C9", MU_SELECT2, 0x70, @rb); # SELECT of cascade level 2
iso14443a_crc_append($cmd, 7);
if (transceive_bytes($pdi, $cmd, 9)) {
print "2 level cascade anticollision/selection passed for uid : ";
print_hex($cuid, 6);
} else {
warn "Select cascade level 2 failed";
}
} else {
warn "Anticollision cascade level 2 failed";
}
} else {
warn "Select cascade level 1 failed";
}
}
} else {
warn "Anticollision cascade level 1 failed";
}
} else {
warn "Device doesn't respond to REQA";
}
exit 0;
view all matches for this distribution
view release on metacpan or search on metacpan
etc/make_method view on Meta::CPAN
chomp $line;
# Skip blanks and comments
next if ($line =~ /^\s*(?:#.*)?$/);
# I'm using a horrendous if-else cascade to avoid moving the required
# version of Perl to 5.012 just for the "when" construct.
## no critic (ProhibitCascadingIfElse)
if ($line =~ /^name:\s+([\w.]+)$/i)
{
$attrs{name} = $1;
view all matches for this distribution
view release on metacpan or search on metacpan
- Detect visibility of inline form from form input rather than .ticket-info-cfs div which is not unique with multiple groupings
- Process dynamically HTML Condition CF
1.12 2023-10-12
- Fix Mason filters, should be not filtered, not html not js
- Add some doc about sort order on cascaded CF
- Limit to inline editing retriggering change on Dropdown Condition CF after inline form has been made visible
- Fix bad variable name
- Fix triggering show needed for cascaded CFs (wrongly deleted by commit #fcf12c1)
1.11 2023-10-11
- Retrigger change on Dropdown Condition CF after bootstrap dropdown has made it visible
- Retrigger change on Dropdown Condition CF after inline form has been made visible
- Check whether condition is met for inline editing
- Update author's name
1.06 2022-12-12
- Update selector to hide/show queues/article according to RT5 upgrades
- Update computing selector to Combobox/Date/DateTime according to RT5 upgrades
- Fix test that cascaded List child CF is hidden when parent conditioned is changed to failed
- Fix event listeners for cascaded List child CF which shoul be on HTML container not on radio buttons
- Avoid JS error raised by bootstrap when triggering show on radio button
- Show bootstrap collapse box when CF is shown
- Increase LWP timeout and add some sleeps to please phantomjs
- Skip some tests since phantomjs randomly messes up with bootstrap
- Add call to RT->Config->PostLoadCheck when changing CustomFieldGroupings to comply with update to 5.0.3
0.15 2019-01-24
- Fix textarea CF conditionned byFix textarea CF conditionned by
- Add tests for textarea CF conditionned by
0.14 2019-01-22
- Add tests for display of cascaded conditioned CFs
- Add tests for edit of cascaded conditioned CFs
- Really fix edit of cascaded conditioned CFs
0.13 2019-01-20
- Fix Binary/Image CF conditionned by
- Add tests for Binary/Image CF conditionned by
- Fix edit of cascaded conditioned CFs by adding hide/show events
- Fix display of cascaded conditioned CFs
0.12 2018-07-02
- Fix editing with two conditions having the same value
- Prevent Error Message
view all matches for this distribution
view release on metacpan or search on metacpan
1.18 2025-06-06
- Fix issue where clicking Add Page on a newly created form could overwrite the default pages
1.17 2025-04-09
- Fix issue with HR component
- Dynamically create cascaded custom field value options on custom field change
- Add core field Starts
- Localize additional strings and core fields - Sollericos
- Add translation for Spanish and Catalan - Sollericos
1.16 2024-12-03
view all matches for this distribution
view release on metacpan or search on metacpan
static/css/terminal-light/charts.css view on Meta::CPAN
}
.chart-wrapper .collection-as-table tr th.oddline {
background: #ddd;
}
.cascade-by-optgroup {
margin-right: 5px;
}
.chart-table-wrapper {
margin-top: .4em;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/RackTables/Schema/Result/Attribute.pm view on Meta::CPAN
__PACKAGE__->has_many(
"attribute_maps",
"RackTables::Schema::Result::AttributeMap",
{ "foreign.attr_id" => "self.id" },
{ cascade_copy => 0, cascade_delete => 0 },
);
# Created by DBIx::Class::Schema::Loader v0.07010 @ 2011-10-26 11:34:02
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:vwBohNJOvsB/0da3KpXrRQ
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Rapi/Blog/DB/Result/Category.pm view on Meta::CPAN
__PACKAGE__->set_primary_key("name");
__PACKAGE__->has_many(
"post_categories",
"Rapi::Blog::DB::Result::PostCategory",
{ "foreign.category_name" => "self.name" },
{ cascade_copy => 0, cascade_delete => 0 },
);
# Created by DBIx::Class::Schema::Loader v0.07045 @ 2017-08-20 20:36:08
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:9R1QEXzoBCbh4hJhMmAztw
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Rapi/Demo/Chinook/DB/Result/Album.pm view on Meta::CPAN
);
__PACKAGE__->has_many(
"tracks",
"Rapi::Demo::Chinook::DB::Result::Track",
{ "foreign.albumid" => "self.albumid" },
{ cascade_copy => 0, cascade_delete => 0 },
);
# Created by DBIx::Class::Schema::Loader v0.07036 @ 2013-09-12 15:36:29
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:OJ1U992pTI/1TC7qsm8syA
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Rapi/Demo/CrudModes/DB/Result/Bravo.pm view on Meta::CPAN
__PACKAGE__->add_unique_constraint("title_unique", ["title"]);
__PACKAGE__->has_many(
"bravo_notes",
"Rapi::Demo::CrudModes::DB::Result::BravoNote",
{ "foreign.bravo_id" => "self.id" },
{ cascade_copy => 0, cascade_delete => 0 },
);
# Created by DBIx::Class::Schema::Loader v0.07043 @ 2015-06-20 22:14:07
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Xvfb5Ivd8WzCa4ffCzNjiQ
view all matches for this distribution
view release on metacpan or search on metacpan
lib/RapidApp/CoreSchema/Result/NavtreeNode.pm view on Meta::CPAN
__PACKAGE__->has_many(
"navtree_nodes",
"RapidApp::CoreSchema::Result::NavtreeNode",
{ "foreign.pid" => "self.id" },
{ cascade_copy => 0, cascade_delete => 0 },
);
__PACKAGE__->has_many(
"navtree_node_to_roles",
"RapidApp::CoreSchema::Result::NavtreeNodeToRole",
{ "foreign.node_id" => "self.id" },
{ cascade_copy => 0, cascade_delete => 0 },
);
__PACKAGE__->has_many(
"saved_states",
"RapidApp::CoreSchema::Result::SavedState",
{ "foreign.node_id" => "self.id" },
{ cascade_copy => 0, cascade_delete => 0 },
);
use RapidApp::Util qw(:all);
sub update {
view all matches for this distribution
view release on metacpan or search on metacpan
demo/demo_hash_lexicon.pl view on Meta::CPAN
casava
casave
casavi
casbah
cascabel
cascade
Cascadia
Cascadian
cascadite
cascado
cascalho
view all matches for this distribution
view release on metacpan or search on metacpan
t/coverage-tldr.t view on Meta::CPAN
field 'ODC Open Database License (ODbL)' =>
'odc-open-database-license-(odbl)';
field 'ODC Public Domain Dedication & License 1.0 (PDDL-1.0)' =>
'odc-public-domain-dedication-&-license-1.0-(pddl-1.0)';
# field 'Open CASCADE Technology Public License v6.5' => 'open-cascade-technology-public-license-v6.5';
# field 'OPEN GAME LICENSE (OGL)' => 'open-game-license-(ogl)';
# field 'Open Government Licence v3 (UK)' => 'open-government-licence-v3-(uk)';
field 'Open Group Test Suite License (OGTSL)' =>
'open-group-test-suite-license-(ogtsl)';
field 'OpenLDAP Public License v2.8 (OLDAP-2.8)' =>
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Reindeer.pm view on Meta::CPAN
=head2 CascadeClearing
This attribute trait allows one to designate that certain attributes are to be
cleared when certain other ones are; that is, when an attribute is cleared
that clearing will be cascaded down to other attributes. This is most useful
when you have attributes that are lazily built.
See L<MooseX::CascadeClearing> for more information and a significantly more
cogent description.
view all matches for this distribution
view release on metacpan or search on metacpan
ARSTools.pod view on Meta::CPAN
this will delete an ARS Object from the ARServer. It probably goes without saying but you know ...
indescriminate use of this function can turn a perfectly good day of gainful employment into a hellacious nightmare
that ends with standing in line at the unemployment office ... so ... be careful m'kay?
BE AWARE: deleting schemas causes ARS to cascade delete all the workflow associated to that form that isn't shared.
=head2 syntax
$Remedy->DeleteObjectFromServer( [options] ) || die $Remedy->{'errstr'}
view all matches for this distribution
view release on metacpan or search on metacpan
share/script.sql view on Meta::CPAN
INSERT INTO TEXTS(tag, value, details) VALUES ("search-database-analyses-protein-code-by-kegg-pathway-options", "Citrate cycle (TCA cycle)", "00020");
INSERT INTO TEXTS(tag, value, details) VALUES ("search-database-analyses-protein-code-by-kegg-pathway-options", "Clavulanic acid biosynthesis", "00331");
INSERT INTO TEXTS(tag, value, details) VALUES ("search-database-analyses-protein-code-by-kegg-pathway-options", "Cocaine addiction", "05030");
INSERT INTO TEXTS(tag, value, details) VALUES ("search-database-analyses-protein-code-by-kegg-pathway-options", "Collecting duct acid secretion", "04966");
INSERT INTO TEXTS(tag, value, details) VALUES ("search-database-analyses-protein-code-by-kegg-pathway-options", "Colorectal cancer", "05210");
INSERT INTO TEXTS(tag, value, details) VALUES ("search-database-analyses-protein-code-by-kegg-pathway-options", "Complement and coagulation cascades", "04610");
INSERT INTO TEXTS(tag, value, details) VALUES ("search-database-analyses-protein-code-by-kegg-pathway-options", "Cutin, suberine and wax biosynthesis", "00073");
INSERT INTO TEXTS(tag, value, details) VALUES ("search-database-analyses-protein-code-by-kegg-pathway-options", "Cyanoamino acid metabolism", "00460");
INSERT INTO TEXTS(tag, value, details) VALUES ("search-database-analyses-protein-code-by-kegg-pathway-options", "Cysteine and methionine metabolism", "00270");
INSERT INTO TEXTS(tag, value, details) VALUES ("search-database-analyses-protein-code-by-kegg-pathway-options", "Cytokine-cytokine receptor interaction", "04060");
INSERT INTO TEXTS(tag, value, details) VALUES ("search-database-analyses-protein-code-by-kegg-pathway-options", "Cytosolic DNA-sensing pathway", "04623");
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Resource/Silo/Metadata.pm view on Meta::CPAN
if (@forward_deps) {
$self->{pending_deps}->add_edges([$name], \@forward_deps);
} else {
# resource is independent, notify dependents if any
$self->{pending_deps}->drop_sink_cascade($name);
};
$self->{resource}{$name} = \%spec;
return $self;
};
view all matches for this distribution
view release on metacpan or search on metacpan
share/flot/jquery.js view on Meta::CPAN
continue;
}
values[ index ] = jQuery._data( elem, "olddisplay" );
if ( show ) {
// Reset the inline display of this element to learn if it is
// being hidden by cascaded rules or not
if ( !values[ index ] && elem.style.display === "none" ) {
elem.style.display = "";
}
// Set elements which have been overridden with display: none
view all matches for this distribution