Bug #27025
closedWhy is the 4.6.0a1 missing the version, workspaces and dbal extensions?
0%
Description
Not sure if its supposed to be like this, but the 4.6.0a1 snapshot and trunk are missing the "version", "workspaces" and "dbal" extensions...
http://git.typo3.org/TYPO3v4/Core.git?a=tree;f=typo3/sysext
...makes it kind of difficult to test since something, somewhere is still attempting to instantiate a class from the version extension:
PHP Fatal error: Class 'tx_version_gui' not found in class.t3lib_div.php on line 5076
Updated by Gabriel Anast over 13 years ago
typo3/template.php: $versionGuiObj = t3lib_div::makeInstance('tx_version_gui');
Updated by Markus Klein over 13 years ago
- Target version deleted (
4.6)
This is not a bug.
These three extensions are maintained in a separate repository and are merged into TYPO3 as git submodules.
So you have to checkout the Core and do:
git submodule init
git submodule update
This will include the extensions in your tree.
(I've to admit, that in the view of taking only a snapshot this procedure is quite inconvenient.)
Regards
Markus
Updated by Gabriel Anast over 13 years ago
I see, no, its not that big a deal... it was easier for me to pull from the repo than to dl from the http://typo3.org/download/packages/ page, so I did. I was just at a loss when "parts were missing."
Maybe (since there is a directory stub for those ext's already) we could ad a README that says exactly what you just said above. But, heh... probably won't affect that many people anyway, and they will probably search and find this report ;).
thanks
Updated by Chris topher over 13 years ago
- Project changed from 624 to TYPO3 Core
Updated by Chris topher over 13 years ago
- Status changed from New to Accepted
Gabriel Anast wrote:
Maybe (since there is a directory stub for those ext's already) we could ad a README that says exactly what you just said above.
+1
Please do so! I really think that this would help people.
(Would have helped me, too... ;-) )
Can you push such a change to Gerrit?
Updated by Markus Klein over 13 years ago
I'm not sure if it's possible to add files to the folders, where submodules are supposed to be mounted.
So please try this first, before pushing a change.
Updated by Markus Klein over 13 years ago
Updated by Chris topher over 13 years ago
Markus Klein wrote:
I'm not sure if it's possible to add files to the folders, where submodules are supposed to be mounted.
So please try this first, before pushing a change.
What I mean is an update to the README.txt file in the folder sysext/. That is the one I starred at while figuring out what to do.
That would be ideal. This file also still mentions SVN, which could be fixed in the same go.
Updated by Steffen Gebert over 13 years ago
- Status changed from Accepted to Closed
I'm closing this in favor of #27173. Feel free to comment there (or push a change, which updates the file).