Bug #26612

Preview does not include L parameter if not default language

Added by Simon Schaufelberger about 2 years ago. Updated 5 months ago.

Status:Resolved Start date:2011-05-04
Priority:Should have Due date:
Assignee:Oliver Hader % Done:

100%

Category:-
Target version:-
TYPO3 Version:4.5 PHP Version:
Votes: 0

Description

Using T3 4.5.2 and no templavoila, i have the problem that the preview icon link is not correct.
I am in my workspace and in page module. I switch to another language via the dropdown in the top toolbar.

My link looks like this:

http://example.com/typo3/mod.php?id=14
&tx_workspaces_web_workspacesworkspaces[action]=index
&tx_workspaces_web_workspacesworkspaces[controller]=Tx_Workspaces_Controller_PreviewController
&tx_workspaces_web_workspacesworkspaces[controller]=Preview
&M=web_WorkspacesWorkspaces
&id=14

Well, id is included twice but no L parameter. SOMEHOW this works with templavoila, i have no idea why...


Related issues

related to Workspaces & Versioning - Bug #12970: Generate Workspace Preview Link should honor options.vie... Accepted 2011-02-11
related to Workspaces & Versioning - Bug #20852: Can create preview links only for the default language of... On Hold 2009-08-07

Associated revisions

Revision dc72d571
Added by Oliver Hader 5 months ago

[BUGFIX] Preview does not include L parameter on localization

The workspace module offers a way to preview accordant records
in the frontend. However, the L parameters is missing if dealing
with localized records.

The language needs to be determined from the version record, not
from the live record (which might be a placeholder as well).
Besides that, the L parameter needs to be provided as additional
GET parameter since it cannot be determined anymore later during
processing in t3lib_BEfunc::viewOnClick().

Change-Id: I97083cabce33c7f23a4f20687cfc81865cb8f68c
Fixes: #26612
Releases: 4.5, 4.6, 4.7, 6.0, 6.1
Reviewed-on: https://review.typo3.org/17278
Reviewed-by: Stefan Neufeind
Reviewed-by: Oliver Hader
Tested-by: Oliver Hader

Revision 429179ea
Added by Oliver Hader 5 months ago

[BUGFIX] Preview does not include L parameter on localization

The workspace module offers a way to preview accordant records
in the frontend. However, the L parameters is missing if dealing
with localized records.

The language needs to be determined from the version record, not
from the live record (which might be a placeholder as well).
Besides that, the L parameter needs to be provided as additional
GET parameter since it cannot be determined anymore later during
processing in t3lib_BEfunc::viewOnClick().

Change-Id: I97083cabce33c7f23a4f20687cfc81865cb8f68c
Fixes: #26612
Releases: 4.5, 4.6, 4.7, 6.0, 6.1
Reviewed-on: https://review.typo3.org/17347
Reviewed-by: Oliver Hader
Tested-by: Oliver Hader

Revision 8a550de3
Added by Oliver Hader 5 months ago

[BUGFIX] Preview does not include L parameter on localization

The workspace module offers a way to preview accordant records
in the frontend. However, the L parameters is missing if dealing
with localized records.

The language needs to be determined from the version record, not
from the live record (which might be a placeholder as well).
Besides that, the L parameter needs to be provided as additional
GET parameter since it cannot be determined anymore later during
processing in t3lib_BEfunc::viewOnClick().

Change-Id: I97083cabce33c7f23a4f20687cfc81865cb8f68c
Fixes: #26612
Releases: 4.5, 4.6, 4.7, 6.0, 6.1
Reviewed-on: https://review.typo3.org/17346
Reviewed-by: Oliver Hader
Tested-by: Oliver Hader

Revision 61f984ab
Added by Oliver Hader 5 months ago

[BUGFIX] Preview does not include L parameter on localization

The workspace module offers a way to preview accordant records
in the frontend. However, the L parameters is missing if dealing
with localized records.

The language needs to be determined from the version record, not
from the live record (which might be a placeholder as well).
Besides that, the L parameter needs to be provided as additional
GET parameter since it cannot be determined anymore later during
processing in t3lib_BEfunc::viewOnClick().

Change-Id: I97083cabce33c7f23a4f20687cfc81865cb8f68c
Fixes: #26612
Releases: 4.5, 4.6, 4.7, 6.0, 6.1
Reviewed-on: https://review.typo3.org/17277
Reviewed-by: Oliver Hader
Tested-by: Oliver Hader

Revision c6d19bc0
Added by Oliver Hader 5 months ago

[BUGFIX] Preview does not include L parameter on localization

The workspace module offers a way to preview accordant records
in the frontend. However, the L parameters is missing if dealing
with localized records.

The language needs to be determined from the version record, not
from the live record (which might be a placeholder as well).
Besides that, the L parameter needs to be provided as additional
GET parameter since it cannot be determined anymore later during
processing in t3lib_BEfunc::viewOnClick().

Change-Id: I97083cabce33c7f23a4f20687cfc81865cb8f68c
Fixes: #26612
Releases: 4.5, 4.6, 4.7, 6.0, 6.1
Reviewed-on: https://review.typo3.org/17278
Reviewed-by: Stefan Neufeind
Reviewed-by: Oliver Hader
Tested-by: Oliver Hader
Reviewed-on: https://review.typo3.org/17349

History

Updated by Oliver Hader about 2 years ago

  • Status changed from New to Accepted
  • Assignee set to Oliver Hader
  • TYPO3 Version set to 4.5

Updated by Stefan Neufeind over 1 year ago

code-path for further investigations:
Classes/Service/Workspaces.php, generateWorkspaceSplittedPreviewLink()
which calls the UriBuilder from Extbase:
Classes/MVC/Web/Routing/UriBuilder.php

It seems that the UriBuilder already generates the id=... at beginning of this link and we could avoid adding it later. Also the controller-parameter is generated in the first place and then manually added again (second parameter, probably overwriting the first one) in the URL mentioned.

The language-parameter is added in
t3lib/class.t3lib_befunc.php, viewOnClick()
But for some reason it doesn't add the L-parameter there ...

The $viewScript-parameter itself is created in the preProcess-hook called from viewOnClick() and implemented in the workspace-package.

Updated by Gerrit Code Review 5 months ago

  • Status changed from Accepted to Under Review

Patch set 1 for branch 4.5 has been pushed to the review server.
It is available at https://review.typo3.org/17277

Updated by Gerrit Code Review 5 months ago

Patch set 2 for branch 4.5 has been pushed to the review server.
It is available at https://review.typo3.org/17277

Updated by Gerrit Code Review 5 months ago

Patch set 3 for branch 4.5 has been pushed to the review server.
It is available at https://review.typo3.org/17277

Updated by Gerrit Code Review 5 months ago

Patch set 4 for branch 4.5 has been pushed to the review server.
It is available at https://review.typo3.org/17277

Updated by Gerrit Code Review 5 months ago

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

Updated by Gerrit Code Review 5 months ago

Patch set 1 for branch 4.6 has been pushed to the review server.
It is available at https://review.typo3.org/17346

Updated by Gerrit Code Review 5 months ago

Patch set 1 for branch workspaces_4-7 has been pushed to the review server.
It is available at https://review.typo3.org/17347

Updated by Gerrit Code Review 5 months ago

Patch set 1 for branch workspaces_6-0 has been pushed to the review server.
It is available at https://review.typo3.org/17349

Updated by Oliver Hader 5 months ago

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

Also available in: Atom PDF