Commit Graph

86 Commits

Author SHA1 Message Date
Dylan Wagstaff 4b59fdba02 Update supporting items for SilverStripe 4 conventions
Update versions and configurations for tests and code checkers, such as
phpunit and the SilverStripe CI tools. Altered the layout of the
repository to be more in line with other SilverStripe 4 modules (including
core ones).
2017-11-22 14:01:40 +13:00
Dylan Wagstaff 3c69b3fa77 begin SilverStripe v4 compatibility update 2017-11-22 11:46:40 +13:00
Damian Mooyman 3547869393 Merge pull request #24 from robbieaverill/pulls/fix-readme-badge
Update Travis badge in readme
2017-05-12 21:31:56 +12:00
Damian Mooyman ded3b7cd82 Merge pull request #23 from robbieaverill/pulls/translatable-conflict-in-test
FIX Ensure that translatable cannot break tests. Separate page stub class. Remove injector nesting.
2017-05-12 11:50:43 +12:00
Robbie Averill 76fd1169db Update Travis badge in readme 2017-05-12 11:41:14 +12:00
Robbie Averill 99d4a6ee1a FIX Ensure that translatable cannot break tests. Separate page stub class. Remove injector nesting. 2017-05-12 11:38:49 +12:00
Damian Mooyman 738ca1733e Update translations 2016-08-17 11:08:00 +12:00
Damian Mooyman ecd7014cd5 Merge pull request #12 from helpfulrobot/add-standard-scrutinizer-config
Added standard Scrutinizer config
2016-05-18 17:16:21 +12:00
Damian Mooyman 248b93f8d7 Merge pull request #15 from helpfulrobot/add-standard-editor-config
Added standard editor config
2016-05-18 17:16:10 +12:00
Damian Mooyman eab4080934 Merge pull request #14 from helpfulrobot/add-standard-travis-config
Added standard Travis config
2016-05-18 17:15:57 +12:00
Damian Mooyman c5e9a30235 Merge pull request #18 from helpfulrobot/add-standard-git-attributes
Added standard git attributes
2016-05-18 17:15:35 +12:00
Damian Mooyman 32812adba3 Merge pull request #21 from helpfulrobot/update-license-year
Updated license year
2016-05-18 17:15:17 +12:00
Damian Mooyman 1e9cec9c70 Update changelog for 1.0.5 2016-05-18 17:14:35 +12:00
Damian Mooyman c3ba71fa10 Update translations 2016-05-18 16:58:44 +12:00
helpfulrobot f1b12c8d4c Added standard Scrutinizer config 2016-02-17 04:39:30 +13:00
Damian Mooyman dafe6af910 Add changelog for 1.0.4 2016-02-04 14:03:35 +13:00
helpfulrobot cb32766c88 Updated license year 2016-01-06 11:14:36 +13:00
Damian Mooyman 9d14238eaf Merge pull request #17 from helpfulrobot/add-standard-license
Added standard license
2016-01-05 11:23:50 +13:00
Damian Mooyman fe8d93cdbd Merge pull request #20 from helpfulrobot/add-standard-editorconfig-file
Added standard .editorconfig file
2015-12-17 13:31:56 +13:00
helpfulrobot 14ccb2aa8d Added standard .editorconfig file 2015-12-17 10:34:43 +13:00
Damian Mooyman 79a4e691ee Merge pull request #19 from helpfulrobot/add-standard-code-of-conduct
Added standard code of conduct
2015-11-26 15:00:28 +13:00
helpfulrobot 638844b34a Added standard code of conduct 2015-11-21 20:13:30 +13:00
helpfulrobot a5b162cdc5 Added standard git attributes 2015-11-21 20:05:07 +13:00
helpfulrobot 2479280fbb Added standard license 2015-11-21 19:55:05 +13:00
helpfulrobot 8d54709675 Added standard editor config 2015-11-21 19:46:45 +13:00
helpfulrobot 939b19c31f Added standard Travis config 2015-11-21 19:38:21 +13:00
Scott Hutchinson 97c3623acf Merge pull request #16 from tractorcow/pulls/release-103
Release 1.0.3
2015-11-19 15:37:49 +13:00
Damian Mooyman 929bf30ea5 Release 1.0.3 2015-11-19 13:28:08 +13:00
Damian Mooyman 0531d699e8 Add module to transifex 2015-11-16 10:22:03 +13:00
Damian Mooyman 821d86ae76 Merge pull request #11 from mikron-ia/translation-pl
PL translation added
2015-11-16 10:02:34 +13:00
Mikron c37a13b3e2 PL translation added 2015-11-06 11:19:37 +01:00
Ingo Schommer f0134c98f1 Merge pull request #10 from silverstripe-labs/pulls/travis
Include tests for 3.2 and php 5.6
2015-11-02 09:58:53 +13:00
Damian Mooyman 928f6049a0 Include tests for 3.2 and php 5.6 2015-10-30 14:53:10 +13:00
Damian Mooyman c949b125ea Merge pull request #9 from dhensby/patch-2
Move to new travis containerised infrastructure
2015-07-21 14:48:47 +12:00
Daniel Hensby 4411d2e85d Move to new travis containerised infrastructure 2015-07-20 16:20:54 +01:00
Damian Mooyman b219ebb52e Merge pull request #8 from silverstripe-labs/pulls/avoid-hamcrest-globals
Include Hamcrest without clashing with PHPUnit globals
2015-05-28 09:21:57 +12:00
Ingo Schommer 38659bac98 Include Hamcrest without clashing with PHPUnit globals
PHPUnit had a Functions.php with global methods like any() for a while (3.7 at least),
which clashes with similar globals from Hamcrest (used in Phockito).

Both PHPUnit and Phockito use 'classmap' composer autoloading,
but that's not directly requiring/evaluating the files.
The problem is caused by SilverStripe's ClassLoader
which does require ALL subclasses of SapphireTest.
This in turn causes PHP outside of the class context to execute,
which includes Hamcrest.

Changing the include_hamcrest() is not strictly necessary here,
but makes the code a bit more resilient against any preceding
test including Functions.php from PHPUnit.

See https://github.com/hafriedlander/phockito/issues/32 for context.
2015-04-29 14:28:08 +12:00
Damian Mooyman a35241cd10 Update translations 2014-11-19 09:54:06 +13:00
Damian Mooyman f2b4c7b7a2 Merge pull request #7 from halkyon/indicator_fixes
BUG Indicator stuck on 0% until you refresh the page.
2014-08-13 17:36:12 +12:00
Sean Harvey 65117b2599 BUG Indicator stuck on 0% until you refresh the page.
admin/externallinks/start is called, but asynchronously, so the poll()
call is never called immediately on start, you have to refresh the page
to get it to show.
2014-08-13 15:39:29 +12:00
Damian Mooyman 2a286fd582 Merge pull request #6 from halkyon/vis_changes
Removing unused static funcs and moving existing statics to top of class
2014-08-13 14:58:55 +12:00
Sean Harvey 2a3f99b2cd Removing unused static funcs and moving existing statics to top of class. 2014-08-13 14:49:47 +12:00
Damian Mooyman 5a4682cdc0 Merge pull request #5 from halkyon/method_vis
Fixing static visibility and moving method to underneath statics
2014-08-13 14:31:51 +12:00
Sean Harvey 3431448657 Fixing static visibility and moving method to underneath statics 2014-08-13 14:27:40 +12:00
Damian Mooyman 606c801513 Merge pull request #4 from halkyon/export_csv_columns
Fixing CSV export columns to match the ones show in broken links report
2014-08-13 14:26:50 +12:00
Sean Harvey aef8f6f521 Fixing CSV export columns to match the ones show in broken links report 2014-08-13 14:23:03 +12:00
Damian Mooyman a283b6b69f Merge pull request #3 from halkyon/visibility_info
Fixing CurlLinkChecker::checkLink() using incorrect visibility
2014-08-13 14:08:12 +12:00
Sean Harvey 486ccec95c Fixing CurlLinkChecker::checkLink() using incorrect visibility 2014-08-13 13:48:33 +12:00
Sean Harvey d9e1b998d7 Merge pull request #1 from tractorcow/pulls/description
API Add description for response code to report
2014-08-13 11:08:56 +12:00
Sean Harvey 7698ba9ef2 Merge pull request #2 from tractorcow/pulls/docs
Update docs
2014-08-13 11:02:45 +12:00