Skip to content
This repository has been archived by the owner on Jan 10, 2021. It is now read-only.

Commit

Permalink
FIX, vendor update.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathan Glasl committed Aug 1, 2017
1 parent d5b8724 commit 73de42c
Show file tree
Hide file tree
Showing 15 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,4 +93,4 @@ To ensure the current page version history remains, `/dev/tasks/MisdirectionHist

## Maintainer Contact

Nathan Glasl, nathan@silverstripe.com.au
Nathan Glasl, nathan@symbiote.com.au
2 changes: 1 addition & 1 deletion _config.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* The misdirection specific configuration settings.
* @author Nathan Glasl <nathan@silverstripe.com.au>
* @author Nathan Glasl <nathan@symbiote.com.au>
*/

if(!defined('MISDIRECTION_PATH')) {
Expand Down
2 changes: 1 addition & 1 deletion code/controllers/MisdirectionAdmin.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* Misdirection CMS interface for creating, managing and testing customisable link redirection mappings.
* @author Nathan Glasl <nathan@silverstripe.com.au>
* @author Nathan Glasl <nathan@symbiote.com.au>
*/

class MisdirectionAdmin extends ModelAdmin {
Expand Down
2 changes: 1 addition & 1 deletion code/dataobjects/LinkMapping.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* Simple and regular expression link redirection definitions.
* @author Nathan Glasl <nathan@silverstripe.com.au>
* @author Nathan Glasl <nathan@symbiote.com.au>
*/

class LinkMapping extends DataObject {
Expand Down
2 changes: 1 addition & 1 deletion code/extensions/MisdirectionAdminTestingExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* This extension adds the testing interface used to view the link mapping recursion stack.
* @author Nathan Glasl <nathan@silverstripe.com.au>
* @author Nathan Glasl <nathan@symbiote.com.au>
*/

class MisdirectionAdminTestingExtension extends Extension {
Expand Down
4 changes: 2 additions & 2 deletions code/extensions/MisdirectionFallbackExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

/**
* This extension allows pages to have a fallback mapping for children that result in a page not found.
* @author Marcus Nyeholt <marcus@silverstripe.com.au>
* @author Nathan Glasl <nathan@silverstripe.com.au>
* @author Marcus Nyeholt <marcus@symbiote.com.au>
* @author Nathan Glasl <nathan@symbiote.com.au>
*/

class MisdirectionFallbackExtension extends DataExtension {
Expand Down
2 changes: 1 addition & 1 deletion code/extensions/SiteTreeMisdirectionExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* This extension provides vanity mapping directly from a page, and automatically creates the appropriate link mappings when replacing the default automated URL handling.
* @author Nathan Glasl <nathan@silverstripe.com.au>
* @author Nathan Glasl <nathan@symbiote.com.au>
*/

class SiteTreeMisdirectionExtension extends DataExtension {
Expand Down
2 changes: 1 addition & 1 deletion code/forms/MisdirectionTesting.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* The testing interface used to view the link mapping recursion stack.
* @author Nathan Glasl <nathan@silverstripe.com.au>
* @author Nathan Glasl <nathan@symbiote.com.au>
*/

class MisdirectionTesting implements GridField_HTMLProvider {
Expand Down
2 changes: 1 addition & 1 deletion code/requestfilters/MisdirectionRequestFilter.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* Hooks into the current director response and appropriately redirects towards the highest priority link mapping that may have been defined.
* @author Nathan Glasl <nathan@silverstripe.com.au>
* @author Nathan Glasl <nathan@symbiote.com.au>
*/

class MisdirectionRequestFilter implements RequestFilter {
Expand Down
2 changes: 1 addition & 1 deletion code/services/MisdirectionService.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* Handles the link mapping recursion to return the eventual result, while providing any additional functionality required by the module.
* @author Nathan Glasl <nathan@silverstripe.com.au>
* @author Nathan Glasl <nathan@symbiote.com.au>
*/

class MisdirectionService {
Expand Down
2 changes: 1 addition & 1 deletion code/tasks/MisdirectionHistoricalLinkMappingTask.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/**
* Instantiate a link mapping for each site tree version URL, recursively replaying the publish into a temporary table.
* NOTE: If disabling the temporary table usage, ensure the default table doesn't already exist.
* @author Rodney Way <rodney@silverstripe.com.au>
* @author Rodney Way <rodney@symbiote.com.au>
*
* @URLparameter live <{CREATE_LINK_MAPPINGS}> boolean
*/
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"license": "BSD-3-Clause",
"authors": [{
"name": "Nathan Glasl",
"email": "nathan@silverstripe.com.au"
"email": "nathan@symbiote.com.au"
}],
"require": {
"silverstripe/framework": "~3.2"
Expand Down
2 changes: 1 addition & 1 deletion css/misdirection.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

/**
* The misdirection specific styling.
* @author Nathan Glasl <nathan@silverstripe.com.au>
* @author Nathan Glasl <nathan@symbiote.com.au>
*/

div.misdirection-testing.wrapper,
Expand Down
2 changes: 1 addition & 1 deletion tests/MisdirectionFunctionalTests.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* The misdirection specific functional testing.
* @author Nathan Glasl <nathan@silverstripe.com.au>
* @author Nathan Glasl <nathan@symbiote.com.au>
*/

class MisdirectionFunctionalTests extends FunctionalTest {
Expand Down
4 changes: 2 additions & 2 deletions tests/MisdirectionUnitTests.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

/**
* The misdirection specific unit testing.
* @author Nathan Glasl <nathan@silverstripe.com.au>
* @author Marcus Nyeholt <marcus@silverstripe.com.au>
* @author Nathan Glasl <nathan@symbiote.com.au>
* @author Marcus Nyeholt <marcus@symbiote.com.au>
*/

class MisdirectionUnitTests extends SapphireTest {
Expand Down

0 comments on commit 73de42c

Please sign in to comment.