Project

General

Profile

Actions

Feature #38562

closed

Task #38086: Enhance TYPO3 bootstrap mechanism

Refactor localconf.php handling

Added by Christian Kuhn almost 12 years ago. Updated over 6 years ago.

Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Miscellaneous
Target version:
Start date:
2012-07-02
Due date:
% Done:

100%

Estimated time:
PHP Version:
5.3
Tags:
Complexity:
hard
Sprint Focus:

Files

38562-phpunit.diff (808 Bytes) 38562-phpunit.diff Christian Kuhn, 2012-07-15 18:48

Related issues 11 (0 open11 closed)

Related to TYPO3 Core - Bug #39111: Fix dbal & workspace install toolClosed2012-07-20

Actions
Related to TYPO3 Core - Bug #39112: Fix 1-2-3(-4) wizardsClosed2012-07-20

Actions
Related to TYPO3 Core - Task #39134: t3lib_utility_array::arrayExport should recognize int keysClosed2012-07-20

Actions
Related to TYPO3 Core - Bug #39135: localconf upgrade wizard should recognize $globals['typo3_conf_vars']Closed2012-07-20

Actions
Related to TYPO3 Core - Bug #39224: Adapt to the new localconf handlingClosedHelmut Hummel2012-07-24

Actions
Related to TYPO3 Core - Bug #39237: Re-read extListArray in em at runtimeClosed2012-07-25

Actions
Related to TYPO3 Core - Bug #39241: Deprecate / cleanup t3lib_installClosed2012-07-25

Actions
Related to TYPO3 Core - Bug #39242: Better isLocalconfWritable handlingClosed2012-07-25

Actions
Related to TYPO3 Core - Bug #39306: Generate random key is not updatingClosed2012-07-27

Actions
Related to TYPO3 Core - Bug #39346: localconf migration wizard breaks if escaped tick is used Closed2012-07-28

Actions
Precedes TYPO3 Core - Bug #39110: Fix install tool -> Basic ConfigurationClosed2012-07-20

Actions
Actions #1

Updated by Gerrit Code Review almost 12 years ago

  • Status changed from New to Under Review

Patch set 1 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/12519

Actions #2

Updated by Gerrit Code Review almost 12 years ago

Patch set 2 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/12519

Actions #3

Updated by Gerrit Code Review almost 12 years ago

Patch set 3 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/12519

Actions #4

Updated by Gerrit Code Review almost 12 years ago

Patch set 4 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/12519

Actions #5

Updated by Gerrit Code Review almost 12 years ago

Patch set 5 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/12519

Actions #6

Updated by Gerrit Code Review almost 12 years ago

Patch set 6 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/12519

Actions #7

Updated by Gerrit Code Review almost 12 years ago

Patch set 7 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/12519

Actions #8

Updated by Gerrit Code Review almost 12 years ago

Patch set 8 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/12519

Actions #9

Updated by Gerrit Code Review almost 12 years ago

Patch set 9 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/12519

Actions #10

Updated by Gerrit Code Review almost 12 years ago

Patch set 10 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/12519

Actions #11

Updated by Gerrit Code Review almost 12 years ago

Patch set 11 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/12519

Actions #12

Updated by Gerrit Code Review almost 12 years ago

Patch set 12 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/12519

Actions #13

Updated by Gerrit Code Review almost 12 years ago

Patch set 13 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/12519

Actions #14

Updated by Gerrit Code Review almost 12 years ago

Patch set 14 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/12519

Actions #15

Updated by Gerrit Code Review almost 12 years ago

Patch set 15 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/12519

Actions #16

Updated by Gerrit Code Review almost 12 years ago

Patch set 16 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/12519

Actions #17

Updated by Gerrit Code Review almost 12 years ago

Patch set 17 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/12519

Actions #18

Updated by Christian Kuhn almost 12 years ago

Immediate patch for phpunit (also as file)

--- a/Classes/Service/TestFinder.php
+++ b/Classes/Service/TestFinder.php
@ -365,7 +365,12 @ class Tx_Phpunit_Service_TestFinder implements t3lib_Singleton {

$loadedExtensionList = isset($GLOBALS['TYPO3_CONF_VARS']['EXT']['extList'])
? $GLOBALS['TYPO3_CONF_VARS']['EXT']['extList'] : '';
- $allExtensionKeys = t3lib_div::trimExplode(',', $loadedExtensionList . ',' . $requiredExtensionList, TRUE);

if (!is_array($loadedExtensionList)) {
+ $allExtensionKeys = t3lib_div::trimExplode(',', $loadedExtensionList . ',' . $requiredExtensionList, TRUE);
+ } else {
+ $allExtensionKeys = t3lib_extMgm::getLoadedExtensionListArray();
+ }
return array_unique($allExtensionKeys);
}
Actions #20

Updated by Gerrit Code Review almost 12 years ago

Patch set 18 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/12519

Actions #21

Updated by Gerrit Code Review almost 12 years ago

Patch set 19 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/12519

Actions #22

Updated by Gerrit Code Review almost 12 years ago

Patch set 20 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/12519

Actions #23

Updated by Gerrit Code Review almost 12 years ago

Patch set 21 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/12519

Actions #24

Updated by Gerrit Code Review almost 12 years ago

Patch set 22 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/12519

Actions #25

Updated by Gerrit Code Review almost 12 years ago

Patch set 24 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/12519

Actions #26

Updated by Helge Funk almost 12 years ago

  • Status changed from Under Review to Resolved
  • % Done changed from 0 to 100
Actions #27

Updated by Riccardo De Contardi over 6 years ago

  • Status changed from Resolved to Closed
Actions

Also available in: Atom PDF