Uploaded image for project: 'Jenkins'
  1. Jenkins
  2. JENKINS-74283

[klocwork] Extract inline script blocks and event handlers in com/klocwork/kwjenkinsplugin/reporting/KlocworkResultsAction/summary.jelly

    • Icon: Task Task
    • Resolution: Unresolved
    • Icon: Minor Minor
    • klocwork-plugin

      Note

      While testing this plugin, evaluate whether the third-party libraries in src/main/webapp are compatible with CSP in restrictive mode. The plugin may need to be upgraded from jQuery 1.x to 3.x to fully function in CSP restrictive mode.

      Problems

      == Inline Script Block
      Line: 7
      ----
      <script>
              var klocworkResultsAction = <st:bind value="${it}"/>
          </script>
      ----
      
      == Inline Script Block
      Line: 124
      ----
      <script>
              Klocwork.showOrHideLogout();
          </script>
      ----
      
      == Inline Event Handler
      Line: 17
      ----
      <button class="authentication-details-logout" id="klocworkResultsAction_authenticationLogoutButton" onclick="Klocwork.deleteAuthenticationCookies()">
      ----
      
      == Inline Event Handler
      Line: 65
      ----
      <button class="authentication-save-control" id="klocworkResultsAction_authenticationSave" onclick="Klocwork.authenticate(${issueId})">
      ----
      
      == Inline Event Handler
      Line: 66
      ----
      <button class="authentication-save-control" id="klocworkResultsAction_authenticationCancel" onclick="Klocwork.cancelAuthentication()">
      ----
      
      == Inline Event Handler
      Line: 73
      ----
      <a class="link-style-none collapsible block ${initialCollapse}" onclick="Klocwork.toggle(this, 'newIssues')">
      ----
      
      == Inline Event Handler
      Line: 101
      ----
      <a class="link-style-none collapsible block ${initialCollapse}" onclick="Klocwork.toggle(this, 'fixedIssues')">
      ----
      

      Solutions

      https://www.jenkins.io/doc/developer/security/csp/#inline-javascript-blocks
      https://www.jenkins.io/doc/developer/security/csp/#inline-event-handlers

          [JENKINS-74283] [klocwork] Extract inline script blocks and event handlers in com/klocwork/kwjenkinsplugin/reporting/KlocworkResultsAction/summary.jelly

          Basil Crow created issue -
          Basil Crow made changes -
          Assignee Original: Jacob Lärfors [ jlarfors ]
          Basil Crow made changes -
          Description Original: h4. Problems

          {noformat}
          == Inline Event Handler
          Line: 17
          ----
          <button class="authentication-details-logout" id="klocworkResultsAction_authenticationLogoutButton" onclick="Klocwork.deleteAuthenticationCookies()">
          ----

          == Inline Event Handler
          Line: 65
          ----
          <button class="authentication-save-control" id="klocworkResultsAction_authenticationSave" onclick="Klocwork.authenticate(${issueId})">
          ----

          == Inline Event Handler
          Line: 66
          ----
          <button class="authentication-save-control" id="klocworkResultsAction_authenticationCancel" onclick="Klocwork.cancelAuthentication()">
          ----

          == Inline Event Handler
          Line: 73
          ----
          <a class="link-style-none collapsible block ${initialCollapse}" onclick="Klocwork.toggle(this, 'newIssues')">
          ----

          == Inline Event Handler
          Line: 101
          ----
          <a class="link-style-none collapsible block ${initialCollapse}" onclick="Klocwork.toggle(this, 'fixedIssues')">
          ----

          == Inline Script Block
          Line: 7
          ----
          <script>
                  var klocworkResultsAction = <st:bind value="${it}"/>
              </script>
          ----

          == Inline Script Block
          Line: 124
          ----
          <script>
                  Klocwork.showOrHideLogout();
              </script>
          ----

          == Inline Event Handler
          Line: 17
          ----
          <button class="authentication-details-logout" id="klocworkResultsAction_authenticationLogoutButton" onclick="Klocwork.deleteAuthenticationCookies()">
          ----

          == Inline Event Handler
          Line: 65
          ----
          <button class="authentication-save-control" id="klocworkResultsAction_authenticationSave" onclick="Klocwork.authenticate(${issueId})">
          ----

          == Inline Event Handler
          Line: 66
          ----
          <button class="authentication-save-control" id="klocworkResultsAction_authenticationCancel" onclick="Klocwork.cancelAuthentication()">
          ----

          == Inline Event Handler
          Line: 73
          ----
          <a class="link-style-none collapsible block ${initialCollapse}" onclick="Klocwork.toggle(this, 'newIssues')">
          ----

          == Inline Event Handler
          Line: 101
          ----
          <a class="link-style-none collapsible block ${initialCollapse}" onclick="Klocwork.toggle(this, 'fixedIssues')">
          ----

          == Inline Script Block
          Line: 7
          ----
          <script>
                  var klocworkResultsAction = <st:bind value="${it}"/>
              </script>
          ----

          == Inline Script Block
          Line: 124
          ----
          <script>
                  Klocwork.showOrHideLogout();
              </script>
          ----
          {noformat}

          h4. Solutions

          [https://www.jenkins.io/doc/developer/security/csp/#inline-javascript-blocks]
          [https://www.jenkins.io/doc/developer/security/csp/#inline-event-handlers]
          New: h4. Problems

          {noformat}
          == Inline Script Block
          Line: 7
          ----
          <script>
                  var klocworkResultsAction = <st:bind value="${it}"/>
              </script>
          ----

          == Inline Script Block
          Line: 124
          ----
          <script>
                  Klocwork.showOrHideLogout();
              </script>
          ----

          == Inline Event Handler
          Line: 17
          ----
          <button class="authentication-details-logout" id="klocworkResultsAction_authenticationLogoutButton" onclick="Klocwork.deleteAuthenticationCookies()">
          ----

          == Inline Event Handler
          Line: 65
          ----
          <button class="authentication-save-control" id="klocworkResultsAction_authenticationSave" onclick="Klocwork.authenticate(${issueId})">
          ----

          == Inline Event Handler
          Line: 66
          ----
          <button class="authentication-save-control" id="klocworkResultsAction_authenticationCancel" onclick="Klocwork.cancelAuthentication()">
          ----

          == Inline Event Handler
          Line: 73
          ----
          <a class="link-style-none collapsible block ${initialCollapse}" onclick="Klocwork.toggle(this, 'newIssues')">
          ----

          == Inline Event Handler
          Line: 101
          ----
          <a class="link-style-none collapsible block ${initialCollapse}" onclick="Klocwork.toggle(this, 'fixedIssues')">
          ----
          {noformat}

          h4. Solutions

          [https://www.jenkins.io/doc/developer/security/csp/#inline-javascript-blocks]
          [https://www.jenkins.io/doc/developer/security/csp/#inline-event-handlers]
          Basil Crow made changes -
          Description Original: h4. Problems

          {noformat}
          == Inline Script Block
          Line: 7
          ----
          <script>
                  var klocworkResultsAction = <st:bind value="${it}"/>
              </script>
          ----

          == Inline Script Block
          Line: 124
          ----
          <script>
                  Klocwork.showOrHideLogout();
              </script>
          ----

          == Inline Event Handler
          Line: 17
          ----
          <button class="authentication-details-logout" id="klocworkResultsAction_authenticationLogoutButton" onclick="Klocwork.deleteAuthenticationCookies()">
          ----

          == Inline Event Handler
          Line: 65
          ----
          <button class="authentication-save-control" id="klocworkResultsAction_authenticationSave" onclick="Klocwork.authenticate(${issueId})">
          ----

          == Inline Event Handler
          Line: 66
          ----
          <button class="authentication-save-control" id="klocworkResultsAction_authenticationCancel" onclick="Klocwork.cancelAuthentication()">
          ----

          == Inline Event Handler
          Line: 73
          ----
          <a class="link-style-none collapsible block ${initialCollapse}" onclick="Klocwork.toggle(this, 'newIssues')">
          ----

          == Inline Event Handler
          Line: 101
          ----
          <a class="link-style-none collapsible block ${initialCollapse}" onclick="Klocwork.toggle(this, 'fixedIssues')">
          ----
          {noformat}

          h4. Solutions

          [https://www.jenkins.io/doc/developer/security/csp/#inline-javascript-blocks]
          [https://www.jenkins.io/doc/developer/security/csp/#inline-event-handlers]
          New: h1. Note

          *While testing this plugin, evaluate whether the third-party libraries in {{src/main/webapp}} are compatible with CSP in restrictive mode. The plugin may need to be upgraded from jQuery 1.x to 3.x to fully function in CSP restrictive mode.*

          h4. Problems

          {noformat}
          == Inline Script Block
          Line: 7
          ----
          <script>
                  var klocworkResultsAction = <st:bind value="${it}"/>
              </script>
          ----

          == Inline Script Block
          Line: 124
          ----
          <script>
                  Klocwork.showOrHideLogout();
              </script>
          ----

          == Inline Event Handler
          Line: 17
          ----
          <button class="authentication-details-logout" id="klocworkResultsAction_authenticationLogoutButton" onclick="Klocwork.deleteAuthenticationCookies()">
          ----

          == Inline Event Handler
          Line: 65
          ----
          <button class="authentication-save-control" id="klocworkResultsAction_authenticationSave" onclick="Klocwork.authenticate(${issueId})">
          ----

          == Inline Event Handler
          Line: 66
          ----
          <button class="authentication-save-control" id="klocworkResultsAction_authenticationCancel" onclick="Klocwork.cancelAuthentication()">
          ----

          == Inline Event Handler
          Line: 73
          ----
          <a class="link-style-none collapsible block ${initialCollapse}" onclick="Klocwork.toggle(this, 'newIssues')">
          ----

          == Inline Event Handler
          Line: 101
          ----
          <a class="link-style-none collapsible block ${initialCollapse}" onclick="Klocwork.toggle(this, 'fixedIssues')">
          ----
          {noformat}

          h4. Solutions

          [https://www.jenkins.io/doc/developer/security/csp/#inline-javascript-blocks]
          [https://www.jenkins.io/doc/developer/security/csp/#inline-event-handlers]

            Unassigned Unassigned
            basil Basil Crow
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated: