Changes between Initial Version and Version 4 of Ticket #11014


Ignore:
Timestamp:
Jan 25, 2015, 11:51:17 PM (9 years ago)
Author:
Ryan J Ollos
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #11014

    • Property Status changed from new to closed
    • Property Resolution changed from to worksforme
  • Ticket #11014 – Description

    initial v4  
    1 The code in filter_stream(...) function is using hardcoded strings representing file paths which do not exist in the project structure, resulting in failure of certain ticket-related pages to load.
     1The code in `filter_stream(...)` function is using hardcoded strings representing file paths which do not exist in the project structure, resulting in failure of certain ticket-related pages to load.
     2
     3{{{
     4line 75: {{{add_script(req, 'fieldtooltip/jquerytools/jquery.tools.min.js')}}}
     5line 76: {{{add_script(req, 'fieldtooltip/jquerytools/enabler.js')}}}
     6line 77: {{{add_stylesheet(req, 'fieldtooltip/jquerytools/jquery_tools_tooltip.css')}}}
     7}}}
    28
    39
    4 line 75: {{{add_script(req, 'fieldtooltip/jquerytools/jquery.tools.min.js')}}}[[BR]]
    5 line 76: {{{add_script(req, 'fieldtooltip/jquerytools/enabler.js')}}}[[BR]]
    6 line 77: {{{add_stylesheet(req, 'fieldtooltip/jquerytools/jquery_tools_tooltip.css')}}}[[BR]]
    7 
    8 
    9 Current directory structure:[[BR]]
     10Current directory structure:
     11{{{
    10120.12
    1113|- fieldtooltit
     
    1618     |-dir3
    1719|- setup.py
     20}}}
    1821
    19 
    20 In summary, 'jquerytools' is missing.
     22In summary, `jquerytools` is missing.