Git Product home page Git Product logo

Comments (1)

1letter avatar 1letter commented on August 15, 2024 1

I think thats not the only problem

def replace_link_variables_by_paths(context, url):
    """Take an `url` and replace the variables "${navigation_root_url}" and
    "${portal_url}" by the corresponding paths. `context` is the acquisition
    context.
    """
    if not url:
        return url

    portal_state = context.restrictedTraverse("@@plone_portal_state")

    if "${navigation_root_url}" in url:
        url = _replace_variable_by_path(
            url, "${navigation_root_url}", portal_state.navigation_root()
        )

    if "${portal_url}" in url:
        url = _replace_variable_by_path(url, "${portal_url}", portal_state.portal())

    return url

def _replace_variable_by_path(url, variable, obj):
    path = "/".join(obj.getPhysicalPath())
    return url.replace(variable, path)

The transformation of

${portal_url}/resolveuid/94cac7372e294814a0d998ac631543d2

ends with

http://mysite.local/SITEID/resolveuid/94cac7372e294814a0d998ac631543d2

That is not correct it should be http://mysite.local/resolveuid/94cac7372e294814a0d998ac631543d2

the helper function _replace_variable_by_path return the full physical path, maybe a recalculation is needed.

The display_link method of the BrowserView LinkRedirectView does it correctly via UID resolve.

from plone.app.contenttypes.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.