| Key | Value |
|---|---|
| FileName | ./usr/share/doc/perl-Catalyst-Controller-ActionRole/Changes |
| FileSize | 2333 |
| MD5 | E9DB1D9F0550E48929D3487A3E28DEBE |
| SHA-1 | C93F10EE9823D46B2F11685F34EDEB3995863836 |
| SHA-256 | 1B07A5406E90224F39B1C3D134534757ABC5DB4D86A9BC1D51DD9B2AB0E85E6A |
| SSDEEP | 48:ctxVKrLqaT0gLJyGSA0yZQ9EYIg5rZg1N+oRtem6Wdx+lcS:ctxVKrLqaPkGSA0y69hI2rSHy8kqS |
| TLSH | T10E41405037B22DB33A0382E318D720D20678B84FF5A302152DEE6A8C2B17A65579F68D |
| hashlookup:parent-total | 25 |
| hashlookup:trust | 100 |
The searched file hash is included in 25 parent files which include package known and seen by metalookup. A sample is included below:
| Key | Value |
|---|---|
| MD5 | 445C9345975967F0B681E502C31830F4 |
| PackageArch | noarch |
| PackageDescription | This module allows one to apply Moose::Roles to the 'Catalyst::Action's for different controller methods. For that a 'Does' attribute is provided. That attribute takes an argument, that determines the role, which is going to be applied. If that argument is prefixed with '+', it is assumed to be the full name of the role. If it's prefixed with '~', the name of your application followed by '::ActionRole::' is prepended. If it isn't prefixed with '+' or '~', the role name will be searched for in '@INC' according to the rules for role prefix searching. It's possible to apply roles to *all* actions of a controller without specifying the 'Does' keyword in every action definition: package MyApp::Controller::Bar use Moose; use namespace::autoclean; BEGIN { extends 'Catalyst::Controller::ActionRole' } __PACKAGE__->config( action_roles => ['Foo', '~Bar'], ); sub moo : Local { ... } Additionally, roles can be applied to selected actions without specifying 'Does' using Catalyst::Controller/action and configured with Catalyst::Controller/action_args: package MyApp::Controller::Baz; use Moose; use namespace::autoclean; BEGIN { extends 'Catalyst::Controller::ActionRole' } __PACKAGE__->config( action_roles => [qw( Foo )], action => { some_action => { Does => [qw( ~Bar )] }, another_action => { Does => [qw( +MyActionRole::Baz )] }, }, action_args => { another_action => { customarg => 'arg1' }, } ); sub some_action : Local { ... } sub another_action : Local { ... } |
| PackageName | perl-Catalyst-Controller-ActionRole |
| PackageRelease | 1.58 |
| PackageVersion | 0.17 |
| SHA-1 | 04884CCD5C85636B74714435A30A77CD9F759229 |
| SHA-256 | 785816BE0CDAFD862317BED0B89F0D4FFE68D4F9F88436116EEAC0D7D2DCD8B3 |
| Key | Value |
|---|---|
| MD5 | EDACAC99E574EFBD14427D53B308A865 |
| PackageArch | noarch |
| PackageDescription | This module allows to apply roles to the Catalyst::Actions for different controller methods. |
| PackageMaintainer | Fedora Project |
| PackageName | perl-Catalyst-Controller-ActionRole |
| PackageRelease | 4.fc24 |
| PackageVersion | 0.17 |
| SHA-1 | 066FC4AAED337532311E25C5261F7066E6D6DB88 |
| SHA-256 | 98F9822914A2EA37A6A925826195A75067D4BDF52CBCF7BC232EB746CBC27B96 |
| Key | Value |
|---|---|
| MD5 | 41C5018DCBD94FDB24022B0CA9CE4B94 |
| PackageArch | noarch |
| PackageDescription | This module allows to apply roles to the Catalyst::Actions for different controller methods. |
| PackageMaintainer | Fedora Project |
| PackageName | perl-Catalyst-Controller-ActionRole |
| PackageRelease | 18.fc34 |
| PackageVersion | 0.17 |
| SHA-1 | 079C11AD3A789B91AD9D42792179AB497EAC392E |
| SHA-256 | E727148B94F4364E4204DCA4F7AC5DF6C34D5F67F3BB3F52FEF7D9094C5C8D32 |
| Key | Value |
|---|---|
| MD5 | C03990BD1063A286DB6F8A7E0C9E99AB |
| PackageArch | noarch |
| PackageDescription | This module allows to apply roles to the 'Catalyst::Action's for different controller methods. For that a 'Does' attribute is provided. That attribute takes an argument, that determines the role, which is going to be applied. If that argument is prefixed with '+', it is assumed to be the full name of the role. If it's prefixed with '~', the name of your application followed by '::ActionRole::' is prepended. If it isn't prefixed with '+' or '~', the role name will be searched for in '@INC' according to the rules for /ROLE PREFIX SEARCHING. Additionally it's possible to to apply roles to *all* actions of a controller without specifying the 'Does' keyword in every action definition: |
| PackageMaintainer | umeabot <umeabot> |
| PackageName | perl-Catalyst-Controller-ActionRole |
| PackageRelease | 5.mga8 |
| PackageVersion | 0.170.0 |
| SHA-1 | 0E760FBD337DC5318D658B863A4DDD92846C8134 |
| SHA-256 | 899B15A573E7F102A2302E52632F605DAC9CE65249E166ED2F49968366B52C01 |
| Key | Value |
|---|---|
| MD5 | 3248CD0266FD2AF48BCD9EAD73535F72 |
| PackageArch | noarch |
| PackageDescription | This module allows one to apply the Moose::Role manpages to the 'Catalyst::Action's for different controller methods. For that a 'Does' attribute is provided. That attribute takes an argument, that determines the role, which is going to be applied. If that argument is prefixed with '+', it is assumed to be the full name of the role. If it's prefixed with '~', the name of your application followed by '::ActionRole::' is prepended. If it isn't prefixed with '+' or '~', the role name will be searched for in '@INC' according to the rules for /ROLE PREFIX SEARCHING. It's possible to apply roles to *all* actions of a controller without specifying the 'Does' keyword in every action definition: package MyApp::Controller::Bar use Moose; use namespace::autoclean; BEGIN { extends 'Catalyst::Controller::ActionRole' } __PACKAGE__->config( action_roles => ['Foo', '~Bar'], ); sub moo : Local { ... } Additionally, roles can be applied to selected actions without specifying 'Does' using the Catalyst::Controller/action manpage and configured with the Catalyst::Controller/action_args manpage: package MyApp::Controller::Baz; use Moose; use namespace::autoclean; BEGIN { extends 'Catalyst::Controller::ActionRole' } __PACKAGE__->config( action_roles => [qw( Foo )], action => { some_action => { Does => [qw( ~Bar )] }, another_action => { Does => [qw( +MyActionRole::Baz )] }, }, action_args => { another_action => { customarg => 'arg1' }, } ); sub some_action : Local { ... } sub another_action : Local { ... } |
| PackageName | perl-Catalyst-Controller-ActionRole |
| PackageRelease | lp152.1.1 |
| PackageVersion | 0.17 |
| SHA-1 | 1E1D15808DCFF0504E6593F17DF946927D6A491C |
| SHA-256 | 9F42200C0A2765DB348DE8A2F68E22AF50E98BA464C41AA76249581864AEE9FC |
| Key | Value |
|---|---|
| MD5 | D11F9D6ABA0BA41501884F62E00BB375 |
| PackageArch | noarch |
| PackageDescription | This module allows to apply roles to the Catalyst::Actions for different controller methods. |
| PackageMaintainer | Fedora Project |
| PackageName | perl-Catalyst-Controller-ActionRole |
| PackageRelease | 1.fc22 |
| PackageVersion | 0.17 |
| SHA-1 | 219AF3D6B508A105E0B809BAA572C87F0D427AF9 |
| SHA-256 | 0108FDE064C96C750BF048085485D5B53D91E7A82352C7BE5F7E068545A6B636 |
| Key | Value |
|---|---|
| MD5 | F8ACFB8EC1C32EF5D46D798DFA7807E0 |
| PackageArch | noarch |
| PackageDescription | This module allows one to apply the Moose::Role manpages to the 'Catalyst::Action's for different controller methods. For that a 'Does' attribute is provided. That attribute takes an argument, that determines the role, which is going to be applied. If that argument is prefixed with '+', it is assumed to be the full name of the role. If it's prefixed with '~', the name of your application followed by '::ActionRole::' is prepended. If it isn't prefixed with '+' or '~', the role name will be searched for in '@INC' according to the rules for /ROLE PREFIX SEARCHING. It's possible to apply roles to *all* actions of a controller without specifying the 'Does' keyword in every action definition: package MyApp::Controller::Bar use Moose; use namespace::autoclean; BEGIN { extends 'Catalyst::Controller::ActionRole' } __PACKAGE__->config( action_roles => ['Foo', '~Bar'], ); sub moo : Local { ... } Additionally, roles can be applied to selected actions without specifying 'Does' using the Catalyst::Controller/action manpage and configured with the Catalyst::Controller/action_args manpage: package MyApp::Controller::Baz; use Moose; use namespace::autoclean; BEGIN { extends 'Catalyst::Controller::ActionRole' } __PACKAGE__->config( action_roles => [qw( Foo )], action => { some_action => { Does => [qw( ~Bar )] }, another_action => { Does => [qw( +MyActionRole::Baz )] }, }, action_args => { another_action => { customarg => 'arg1' }, } ); sub some_action : Local { ... } sub another_action : Local { ... } |
| PackageName | perl-Catalyst-Controller-ActionRole |
| PackageRelease | lp151.1.1 |
| PackageVersion | 0.17 |
| SHA-1 | 23166805F70042B83317CD3987346F1EE38434F5 |
| SHA-256 | 4AD58B2D1B683751290F1490B139642CC4EEE3F8CEC5A3A43B38E1D39BD8FCBC |
| Key | Value |
|---|---|
| MD5 | 88421CCB5C6DAE1CC085B0437591490C |
| PackageArch | noarch |
| PackageDescription | This module allows one to apply the Moose::Role manpages to the 'Catalyst::Action's for different controller methods. For that a 'Does' attribute is provided. That attribute takes an argument, that determines the role, which is going to be applied. If that argument is prefixed with '+', it is assumed to be the full name of the role. If it's prefixed with '~', the name of your application followed by '::ActionRole::' is prepended. If it isn't prefixed with '+' or '~', the role name will be searched for in '@INC' according to the rules for /ROLE PREFIX SEARCHING. It's possible to apply roles to *all* actions of a controller without specifying the 'Does' keyword in every action definition: package MyApp::Controller::Bar use Moose; use namespace::autoclean; BEGIN { extends 'Catalyst::Controller::ActionRole' } __PACKAGE__->config( action_roles => ['Foo', '~Bar'], ); sub moo : Local { ... } Additionally, roles can be applied to selected actions without specifying 'Does' using the Catalyst::Controller/action manpage and configured with the Catalyst::Controller/action_args manpage: package MyApp::Controller::Baz; use Moose; use namespace::autoclean; BEGIN { extends 'Catalyst::Controller::ActionRole' } __PACKAGE__->config( action_roles => [qw( Foo )], action => { some_action => { Does => [qw( ~Bar )] }, another_action => { Does => [qw( +MyActionRole::Baz )] }, }, action_args => { another_action => { customarg => 'arg1' }, } ); sub some_action : Local { ... } sub another_action : Local { ... } |
| PackageName | perl-Catalyst-Controller-ActionRole |
| PackageRelease | 1.2 |
| PackageVersion | 0.17 |
| SHA-1 | 467F237366EFA175E2E8A616CCFEDE18A123DD2C |
| SHA-256 | 34F9992BB30F814AEE6196CE795912E106881A316496CF6D0AF44D09ECDAA91E |
| Key | Value |
|---|---|
| MD5 | 2F5CB7488A4AA5248B93D6AA2E6C83F9 |
| PackageArch | noarch |
| PackageDescription | This module allows one to apply the Moose::Role manpages to the 'Catalyst::Action's for different controller methods. For that a 'Does' attribute is provided. That attribute takes an argument, that determines the role, which is going to be applied. If that argument is prefixed with '+', it is assumed to be the full name of the role. If it's prefixed with '~', the name of your application followed by '::ActionRole::' is prepended. If it isn't prefixed with '+' or '~', the role name will be searched for in '@INC' according to the rules for /ROLE PREFIX SEARCHING. It's possible to apply roles to *all* actions of a controller without specifying the 'Does' keyword in every action definition: package MyApp::Controller::Bar use Moose; use namespace::autoclean; BEGIN { extends 'Catalyst::Controller::ActionRole' } __PACKAGE__->config( action_roles => ['Foo', '~Bar'], ); sub moo : Local { ... } Additionally, roles can be applied to selected actions without specifying 'Does' using the Catalyst::Controller/action manpage and configured with the Catalyst::Controller/action_args manpage: package MyApp::Controller::Baz; use Moose; use namespace::autoclean; BEGIN { extends 'Catalyst::Controller::ActionRole' } __PACKAGE__->config( action_roles => [qw( Foo )], action => { some_action => { Does => [qw( ~Bar )] }, another_action => { Does => [qw( +MyActionRole::Baz )] }, }, action_args => { another_action => { customarg => 'arg1' }, } ); sub some_action : Local { ... } sub another_action : Local { ... } |
| PackageName | perl-Catalyst-Controller-ActionRole |
| PackageRelease | 1.1 |
| PackageVersion | 0.17 |
| SHA-1 | 4CF813041CEA009832642E8B8080492C1DB989A3 |
| SHA-256 | 40EDDF97630D55410BAD36DEAD8B0CC16F201C60B1755107C4646D1535093E05 |
| Key | Value |
|---|---|
| MD5 | 533FDCB81E4C40C6165129557F646BCB |
| PackageArch | noarch |
| PackageDescription | This module allows one to apply the Moose::Role manpages to the 'Catalyst::Action's for different controller methods. For that a 'Does' attribute is provided. That attribute takes an argument, that determines the role, which is going to be applied. If that argument is prefixed with '+', it is assumed to be the full name of the role. If it's prefixed with '~', the name of your application followed by '::ActionRole::' is prepended. If it isn't prefixed with '+' or '~', the role name will be searched for in '@INC' according to the rules for /ROLE PREFIX SEARCHING. It's possible to apply roles to *all* actions of a controller without specifying the 'Does' keyword in every action definition: package MyApp::Controller::Bar use Moose; use namespace::autoclean; BEGIN { extends 'Catalyst::Controller::ActionRole' } __PACKAGE__->config( action_roles => ['Foo', '~Bar'], ); sub moo : Local { ... } Additionally, roles can be applied to selected actions without specifying 'Does' using the Catalyst::Controller/action manpage and configured with the Catalyst::Controller/action_args manpage: package MyApp::Controller::Baz; use Moose; use namespace::autoclean; BEGIN { extends 'Catalyst::Controller::ActionRole' } __PACKAGE__->config( action_roles => [qw( Foo )], action => { some_action => { Does => [qw( ~Bar )] }, another_action => { Does => [qw( +MyActionRole::Baz )] }, }, action_args => { another_action => { customarg => 'arg1' }, } ); sub some_action : Local { ... } sub another_action : Local { ... } |
| PackageName | perl-Catalyst-Controller-ActionRole |
| PackageRelease | 1.61 |
| PackageVersion | 0.17 |
| SHA-1 | 5A04826B08EBD1BDFA075F7978199E8631FA9341 |
| SHA-256 | D7B33E47A55C4DB3AD1B17B2B4E55883EC33BA3FB340B61512F45B85BE5D9734 |