Skip to content
GitLab
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in
  • Genesys Backend Genesys Backend
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 28
    • Issues 28
    • List
    • Boards
    • Service Desk
    • Milestones
  • Deployments
    • Deployments
    • Releases
  • Packages and registries
    • Packages and registries
    • Container Registry
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • Repository
  • Wiki
    • Wiki
  • Activity
  • Graph
  • Create a new issue
  • Commits
  • Issue Boards
Collapse sidebar
  • Genesys PGRGenesys PGR
  • Genesys BackendGenesys Backend
  • Issues
  • #211
Closed
Open
Issue created Oct 27, 2017 by Matija Obreza@mobrezaOwner

href and src without c:url

Some (new) JSPs have href and src attributes for links and images that do not use <c:url value="..." />. One example is a line from jsp/crop/list.jsp:

<img class="img-responsive icon" src="/html/1/images/<c:out value="${entry.key.shortName}"/>.png" alt="<c:out value="${entry.key.shortName}"/>"/>

Please scan the JSPs for all links and image references and ensure they are properly coded:

<img class="img-responsive icon" src="<c:url value='/html/1/images/${entry.key.shortName}.png' />" alt="<c:out value="${entry.key.shortName}"/>"/>

Using CDN

Genesys production and sandbox environments now use a Content Delivery Network (CDN).

For static resources (things in /html/) please add the ${cdnServers.next} as shown here:

<img src="<c:url value='${cdnServers.next}/html/1/images/${entry.key.shortName}.png' />" />
Assignee
Assign to
Time tracking