diff --git a/bin/sarif-extract-multi b/bin/sarif-extract-multi index a9b0321..d6a6a01 100755 --- a/bin/sarif-extract-multi +++ b/bin/sarif-extract-multi @@ -59,33 +59,35 @@ typegraph.destructure(tgraph, signature_multi.start_node_2022_03_08, meta_struct # Form output tables # typegraph.attach_tables(tgraph) -# -# Form dataframes originally introduced by sarif-extract-tables + +# +# Dataframe / table collection # @dataclass class BaseTables: - kind_problem : pd.DataFrame - kind_pathproblem : pd.DataFrame - codeflows : pd.DataFrame - relatedLocations : pd.DataFrame - project : pd.DataFrame - rules : pd.DataFrame artifacts : pd.DataFrame + codeflows : pd.DataFrame + kind_pathproblem : pd.DataFrame + kind_problem : pd.DataFrame + project : pd.DataFrame + relatedLocations : pd.DataFrame + rules : pd.DataFrame def __init__(self): pass bt = BaseTables() - +# +# Add dataframes +# sf_2683 = tj.joins_for_sf_2683(tgraph) -bt.kind_problem = tj.joins_for_problem(tgraph, sf_2683) -bt.kind_pathproblem = tj.joins_for_path_problem(tgraph, sf_2683) -bt.codeflows = tj.joins_for_codeflows(tgraph, sf_2683) -bt.relatedLocations = tj.joins_for_relatedLocations(tgraph, sf_2683) -# -# Form the new dataframes -# -bt.project = tj.joins_for_project(tgraph) -bt.rules = tj.joins_for_rules(tgraph) +af_0350_location = tj.joins_for_af_0350_location(tgraph) bt.artifacts = tj.joins_for_artifacts(tgraph) +bt.codeflows = tj.joins_for_codeflows(tgraph, sf_2683) +bt.kind_pathproblem = tj.joins_for_path_problem(tgraph, af_0350_location) +bt.kind_problem = tj.joins_for_problem(tgraph, af_0350_location) +bt.project = tj.joins_for_project(tgraph) # multi-sarif only +bt.relatedLocations = tj.joins_for_relatedLocations(tgraph, sf_2683) +bt.rules = tj.joins_for_rules(tgraph) + # # Write output # @@ -93,12 +95,12 @@ p = pathlib.Path(args.outdir) p.mkdir(exist_ok=True) def write(path, frame): with p.joinpath(path + ".csv").open(mode='wb') as fh: - frame.to_csv(fh, index_label='index') -write('kind_problem', bt.kind_problem) -write('kind_pathproblem', bt.kind_pathproblem) -write('codeflows', bt.codeflows) -write('relatedLocations', bt.relatedLocations) -write('project', bt.project) -write('rules', bt.rules) + frame.to_csv(fh, index=False) write('artifacts', bt.artifacts) +write('codeflows', bt.codeflows) +write('kind_pathproblem', bt.kind_pathproblem) +write('kind_problem', bt.kind_problem) +write('project', bt.project) +write('relatedLocations', bt.relatedLocations) +write('rules', bt.rules) diff --git a/notes/typegraph-multi-with-tables.pdf b/notes/typegraph-multi-with-tables.pdf new file mode 100644 index 0000000..0ab9951 Binary files /dev/null and b/notes/typegraph-multi-with-tables.pdf differ diff --git a/sarif_cli/table_joins.py b/sarif_cli/table_joins.py index a3bc299..a133c60 100644 --- a/sarif_cli/table_joins.py +++ b/sarif_cli/table_joins.py @@ -6,8 +6,57 @@ provides those for the other tables. """ import pandas as pd +import re from .typegraph import tagged_array_columns, tagged_struct_columns +def joins_for_af_0350_location(tgraph): + """ + Join all the tables used by 0350's right side into one. + """ + # Access convenience functions + sf = lambda num: tgraph.dataframes['Struct' + str(num)] + af = lambda num: tgraph.dataframes['Array' + str(num)] + sft = lambda id: sf(id).rename(columns = tagged_struct_columns(tgraph, id)) + aft = lambda id: af(id).rename(columns = tagged_array_columns(tgraph, id)) + + af_0350_location = ( + aft('0350') + # + .merge(sft(2683), how="left", left_on='t0350_id_or_value_at_index', right_on='t2683_struct_id', + validate="1:m") + .drop(columns=['t0350_id_or_value_at_index', 't2683_struct_id', 't0350_type_at_index']) + # + .merge(sft(4963), how="left", left_on='t2683_physicalLocation', right_on='t4963_struct_id', + validate="1:m") + .drop(columns=['t2683_physicalLocation', 't4963_struct_id']) + # + .merge(sft(6299), how="left", left_on='t4963_region', right_on='t6299_struct_id', + validate="1:m") + .drop(columns=['t4963_region', 't6299_struct_id']) + # + .merge(sft(2685), how="left", left_on='t4963_artifactLocation', right_on='t2685_struct_id', + validate="1:m") + .drop(columns=['t4963_artifactLocation', 't2685_struct_id']) + # + .merge(sft(2774), how="left", left_on='t2683_message', right_on='t2774_struct_id', + validate="1:m") + .drop(columns=['t2683_message', 't2774_struct_id']) + # + .rename(columns={'t0350_array_id' : 'm0350_location_array_id', + 't0350_value_index' : 'm0350_location_array_index', + 't2683_id' : 'm0350_location_id', + 't6299_endColumn' : 'm0350_location_endColumn', + 't6299_endLine' : 'm0350_location_endLine', + 't6299_startColumn' : 'm0350_location_startColumn', + 't6299_startLine' : 'm0350_location_startLine', + 't2685_index' : 'm0350_location_index', + 't2685_uri' : 'm0350_location_uri', + 't2685_uriBaseId' : 'm0350_location_uriBaseId', + 't2774_text' : 'm0350_location_message', + }) + ) + return af_0350_location + def joins_for_sf_2683(tgraph): """ Join all the tables used by 2683's right side into one. @@ -39,45 +88,71 @@ def joins_for_sf_2683(tgraph): return sf_2683 -def joins_for_problem(tgraph, sf_2683): +def joins_for_problem(tgraph, af_0350_location): """ Return table providing the `problem` information. """ # Access convenience functions sf = lambda num: tgraph.dataframes['Struct' + str(num)] af = lambda num: tgraph.dataframes['Array' + str(num)] + sft = lambda id: sf(id).rename(columns = tagged_struct_columns(tgraph, id)) + aft = lambda id: af(id).rename(columns = tagged_array_columns(tgraph, id)) # # Form the message dataframe (@kind problem) via joins # + kind_problem_1 = ( - af(6343) - .rename(columns={"value_index": "results_idx_6343", "array_id": "result_id_6343"}) - .merge(sf(4055), how="inner", left_on='id_or_value_at_index', right_on='struct_id', + aft(6343) + .merge(sft(4055), how="inner", + left_on='t6343_id_or_value_at_index', right_on='t4055_struct_id', validate="1:m") - .drop(columns=['type_at_index', 'id_or_value_at_index', 'struct_id']) - .rename(columns={"message": "result_message_4055", - "relatedLocations": "relatedLocations_id"}) - # locations - .merge(af('0350'), how="left", left_on='locations', right_on='array_id', validate="1:m") - .drop(columns=['locations', 'array_id', 'type_at_index']) - # - .merge(sf_2683, how="left", left_on='id_or_value_at_index', right_on='struct_id_2683', validate="1:m") - .drop(columns=['id_or_value_at_index', 'struct_id_2683']) - # - .merge(sf(2774), how="left", left_on='result_message_4055', right_on='struct_id', validate="1:m") - .drop(columns=['struct_id', 'result_message_4055']) - .rename(columns={"text": "message_text_4055"}) - # - .merge(sf(4199), how="left", left_on='partialFingerprints', right_on='struct_id', validate="1:m") - .drop(columns=['struct_id', 'partialFingerprints']) + .drop(columns=['t6343_type_at_index', 't6343_id_or_value_at_index', + 't4055_struct_id']) # - .merge( - sf(3942).rename(columns={"id": "rule_id", "index": "rule_index"}), - how="left", left_on='rule', right_on='struct_id', validate="1:m") - .drop(columns=['struct_id', 'rule']) + .merge(af_0350_location, how="left", left_on='t4055_locations', + right_on='m0350_location_array_id', validate="1:m") + .drop(columns=['t4055_locations', 'm0350_location_array_id']) # + .merge(af_0350_location.rename(columns=lambda x: re.sub('m0350_location', + 'm0350_relatedLocation', + x)), + how="left", left_on='t4055_relatedLocations', + right_on='m0350_relatedLocation_array_id', validate="1:m") + .drop(columns=['t4055_relatedLocations', 'm0350_relatedLocation_array_id']) + # + .merge(sft(2774), how="left", left_on='t4055_message', right_on='t2774_struct_id') + .drop(columns=['t4055_message', 't2774_struct_id']) + .rename(columns={"t2774_text": "t4055_message_text"}) + # + .merge(sft(4199), how="left", left_on='t4055_partialFingerprints', + right_on='t4199_struct_id') + .drop(columns=['t4055_partialFingerprints', 't4199_struct_id']) + # + .merge(sft(3942), how="left", left_on='t4055_rule', + right_on='t3942_struct_id') + .drop(columns=['t4055_rule', 't3942_struct_id']) ) - return kind_problem_1 + + kind_problem_2 = ( + kind_problem_1 + .rename({ + 't6343_array_id' : 'results_array_id', + 't6343_value_index' : 'results_array_index', + 't4055_ruleId' : 'ruleId', + 't4055_ruleIndex' : 'ruleIndex', + 't4055_message_text' : 'message_text', + 't3942_id' : 'rule_id', + 't3942_index' : 'rule_index', + }, axis='columns') + # Strip type prefix for the rest + .rename(columns = lambda x: re.sub('m0350_|t4199_', '', x)) + ) + # # TODO potential cleanup + # # Remove dummy locations previously injected by signature.fillsig + # kind_problem_2 = kind_problem_1[kind_problem_1.uri != 'scli-dyys dummy value'] + # # + return kind_problem_2 + def joins_for_codeflows(tgraph, sf_2683): """ @@ -87,7 +162,7 @@ def joins_for_codeflows(tgraph, sf_2683): sf = lambda num: tgraph.dataframes['Struct' + str(num)] af = lambda num: tgraph.dataframes['Array' + str(num)] # - af_9799 = ( + codeflows = ( af(9799).rename(columns={"array_id": "t9799_array_id", "value_index": "t9799_idx"}) # .merge(sf(7122), how="left", left_on='id_or_value_at_index', right_on='struct_id', validate="1:m") @@ -111,66 +186,79 @@ def joins_for_codeflows(tgraph, sf_2683): .merge(sf_2683, how="left", left_on='location', right_on='struct_id_2683', validate="1:m") .drop(columns=['location', 'struct_id_2683']) ) - return af_9799 + codeflows_1 = ( + codeflows + .drop(columns=['id_2683']) + .rename({ + 't9799_array_id': 'codeflow_id', + 't9799_idx': 'codeflow_index', + 't1597_idx': 'threadflow_index', + 't1075_locations_idx': 'location_index', + 'location_index_2685': 'artifact_index', + 'message_text_2683': 'message', + }, axis='columns') + ) + return codeflows_1 -def joins_for_path_problem(tgraph, sf_2683): +def joins_for_path_problem(tgraph, af_0350_location): """ Return table providing the `path-problem` information. """ # Access convenience functions sf = lambda num: tgraph.dataframes['Struct' + str(num)] af = lambda num: tgraph.dataframes['Array' + str(num)] - # + sft = lambda id: sf(id).rename(columns = tagged_struct_columns(tgraph, id)) + aft = lambda id: af(id).rename(columns = tagged_array_columns(tgraph, id)) + kind_pathproblem_1 = ( - af(6343) - .rename(columns={"value_index": "t6343_result_idx", "array_id": "t6343_result_id"}) - .merge(sf(9699), how="inner", left_on='id_or_value_at_index', right_on='struct_id', + aft(6343) + .merge(sft(9699), how="inner", left_on='t6343_id_or_value_at_index', right_on='t9699_struct_id', validate="1:m") - .rename(columns={"codeFlows" : "t9699_codeFlows", - "locations" : "t9699_locations", - "message" : "t9699_message", - "partialFingerprints" : "t9699_partialFingerprints", - "relatedLocations" : "t9699_relatedLocations", - "rule" : "t9699_rule", - "ruleId" : "t9699_ruleId", - "ruleIndex" : "t9699_ruleIndex", - }) - .drop(columns=['id_or_value_at_index', 'struct_id', 'type_at_index']) - # 9699.locations - .merge(af('0350').rename(columns={"value_index": "t0350_location_idx"}), - how="left", left_on='t9699_locations', right_on='array_id', validate="1:m") - .drop(columns=['t9699_locations', 'array_id', 'type_at_index']) - # - .merge(sf_2683, how="left", left_on='id_or_value_at_index', right_on='struct_id_2683', validate="1:m") - .drop(columns=['id_or_value_at_index', 'struct_id_2683']) + .drop(columns=['t6343_id_or_value_at_index', 't9699_struct_id', 't6343_type_at_index']) # - # # TODO: merge or keep separate? - # # 9699.codeFlows - # .merge(af_9799, how="left", left_on='t9699_codeFlows', right_on='t9799_array_id', validate="1:m") + .merge(af_0350_location, how="left", left_on='t9699_locations', + right_on='m0350_location_array_id', validate="1:m") + .drop(columns=['t9699_locations', 'm0350_location_array_id']) # - # 9699.message - .merge(sf(2774), how="left", left_on='t9699_message', right_on='struct_id', validate="1:m") - .drop(columns=['struct_id', 't9699_message']) - .rename(columns={"text": "t9699_message_text"}) - # - # 9699.partialFingerprints - .merge(sf(4199), how="left", left_on='t9699_partialFingerprints', right_on='struct_id', validate="1:m") - .drop(columns=['struct_id', 't9699_partialFingerprints']) + .merge(af_0350_location.rename(columns=lambda x: re.sub('m0350_location', + 'm0350_relatedLocation', + x)), + how="left", left_on='t9699_relatedLocations', + right_on='m0350_relatedLocation_array_id', validate="1:m") + .drop(columns=['t9699_relatedLocations', 'm0350_relatedLocation_array_id']) # - # 9699.relatedLocations -- keep ids + .merge(sft(2774), how="left", left_on='t9699_message', right_on='t2774_struct_id') + .drop(columns=['t9699_message', 't2774_struct_id']) + .rename(columns={"t2774_text": "t9699_message_text"}) # - # 9699.rule - .merge( - sf(3942).rename(columns={"id": "t3942_rule_id", "index": "t3942_rule_idx"}), - how="left", left_on='t9699_rule', right_on='struct_id', validate="1:m") - .drop(columns=['struct_id', 't9699_rule']) + .merge(sft(4199), how="left", left_on='t9699_partialFingerprints', + right_on='t4199_struct_id') + .drop(columns=['t9699_partialFingerprints', 't4199_struct_id']) + # + .merge(sft(3942), how="left", left_on='t9699_rule', + right_on='t3942_struct_id') + .drop(columns=['t9699_rule', 't3942_struct_id']) ) + strip_colums = lambda x: re.sub('t9699_|m0350_|t4199_', '', x) + kind_pathproblem_2 = (kind_pathproblem_1 + .rename({ + 't6343_array_id' : 'results_array_id', + 't6343_value_index' : 'results_array_index', + 't9699_codeFlows' : 'codeFlows_id', + 't9699_ruleId' : 'ruleId', + 't9699_ruleIndex' : 'ruleIndex', + 't9699_message_text' : 'message_text', + 't3942_id' : 'rule_id', + 't3942_index' : 'rule_index', + }, axis='columns') + # Strip type prefix for the rest + .rename(columns = strip_colums)) # # TODO potential cleanup # # Remove dummy locations previously injected by signature.fillsig # kind_pathproblem_2 = kind_pathproblem_1[kind_pathproblem_1.uri != 'scli-dyys dummy value'] # # - return kind_pathproblem_1 + return kind_pathproblem_2 def joins_for_relatedLocations(tgraph, sf_2683): """ @@ -267,7 +355,18 @@ def joins_for_project(tgraph): .drop(columns=['id_or_value_at_index', 'struct_id']) # ) - return project_df + # Keep columns of interest + project_df_1 = ( + project_df + .drop(columns=['value_index_7481', 'versionControl_value_index_5511']) + .rename({ + 'version_6787': 'sarif_version', + 'value_index_0177': 'run_index', + 'driver_name_7820': 'driver_name', + 'driver_version_7820': 'driver_version', + }, axis='columns') + ) + return project_df_1 def joins_for_rules(tgraph): """ @@ -310,8 +409,19 @@ def joins_for_rules(tgraph): .merge(aft(7069), how="left", left_on='t7849_tags', right_on='t7069_array_id', validate="1:m") .drop(columns=['t7849_tags', 't7069_array_id', 't7069_type_at_index']) - ) - return rules_df + ) + rules_2 = ( + rules_df + .rename({ + 't8754_array_id' : 'rules_array_id', + 't8754_value_index' : 'rules_array_index', + 't7069_value_index' : 'tag_index', + 't7069_id_or_value_at_index' : 'tag_text', + }, axis='columns') + # Strip type prefix for the rest + .rename(columns = lambda x: re.sub('t6818_t2774_|t6818_|t8581_|t7849_', '', x)) + ) + return rules_2 def joins_for_artifacts(tgraph): """ @@ -330,7 +440,17 @@ def joins_for_artifacts(tgraph): # .merge(sf(2685), how="left", left_on='location', right_on='struct_id', validate="1:m") .drop(columns=['location', 'struct_id']) - .rename(columns={"index": "location_index_2685", "uri": "location_uri_2685", - "uriBaseId": "location_uriBaseId_2685"}) ) - return artifacts_df + # Keep columns of interest and rename + df_1 = ( + artifacts_df + .rename({ + 'array_id': 'artifacts_id', + 'artifact_index_4640': 'artifacts_array_index', + }, axis='columns') + ) + + if (df_1['artifacts_array_index'] == df_1['index']).all(): + df_1 = df_1.drop(columns=['artifacts_array_index']) + + return df_1 diff --git a/scripts/multi-table-overview.ipynb b/scripts/multi-table-overview.ipynb index 7675b8f..b97b20f 100644 --- a/scripts/multi-table-overview.ipynb +++ b/scripts/multi-table-overview.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "markdown", - "id": "57b3a80f", + "id": "e38c9b94", "metadata": {}, "source": [ "## Navigate and produce .csv tables" @@ -10,7 +10,7 @@ }, { "cell_type": "code", - "execution_count": 77, + "execution_count": 52, "id": "eab5a79a", "metadata": {}, "outputs": [ @@ -28,7 +28,7 @@ }, { "cell_type": "code", - "execution_count": 78, + "execution_count": 53, "id": "410f8af6", "metadata": {}, "outputs": [ @@ -36,9 +36,10 @@ "name": "stdout", "output_type": "stream", "text": [ - "\u001b[34m2021-12-09\u001b[m\u001b[m/ multi-sarif-01.json test_set_1.sarif\r\n", - "\u001b[34m2022-02-25\u001b[m\u001b[m/ multi-sarif-01.yaml test_set_1.yaml\r\n", - "\u001b[34mbase-tables\u001b[m\u001b[m/ \u001b[34mtest-01\u001b[m\u001b[m/ \u001b[34mtreeio\u001b[m\u001b[m/\r\n" + "\u001b[34m2021-12-09\u001b[m\u001b[m/ multi-sarif-01.yaml test_set_1.yaml\r\n", + "\u001b[34m2022-02-25\u001b[m\u001b[m/ \u001b[34mtest-01\u001b[m\u001b[m/ \u001b[34mtreeio\u001b[m\u001b[m/\r\n", + "\u001b[34mbase-tables\u001b[m\u001b[m/ \u001b[34mtest-multi-table\u001b[m\u001b[m/\r\n", + "multi-sarif-01.json test_set_1.sarif\r\n" ] } ], @@ -48,7 +49,7 @@ }, { "cell_type": "code", - "execution_count": 79, + "execution_count": 54, "id": "bbf85a1b", "metadata": {}, "outputs": [], @@ -58,7 +59,7 @@ }, { "cell_type": "code", - "execution_count": 80, + "execution_count": 55, "id": "c55e5253", "metadata": {}, "outputs": [ @@ -76,8 +77,8 @@ }, { "cell_type": "code", - "execution_count": 81, - "id": "1e04313e", + "execution_count": 56, + "id": "a0efff91", "metadata": {}, "outputs": [ { @@ -96,7 +97,7 @@ }, { "cell_type": "markdown", - "id": "3b2c22db", + "id": "3a2239e8", "metadata": {}, "source": [ "## Display adjustments" @@ -104,8 +105,8 @@ }, { "cell_type": "code", - "execution_count": 82, - "id": "42ac6ab0", + "execution_count": 57, + "id": "ca00fc10", "metadata": {}, "outputs": [ { @@ -160,7 +161,7 @@ }, { "cell_type": "markdown", - "id": "7c2dc5bd", + "id": "24a212e3", "metadata": {}, "source": [ "## Load tables" @@ -168,7 +169,7 @@ }, { "cell_type": "code", - "execution_count": 83, + "execution_count": 58, "id": "b26e87f9", "metadata": {}, "outputs": [], @@ -180,8 +181,8 @@ }, { "cell_type": "code", - "execution_count": 84, - "id": "d2f7b1db", + "execution_count": 59, + "id": "05074a76", "metadata": {}, "outputs": [], "source": [ @@ -191,8 +192,8 @@ }, { "cell_type": "code", - "execution_count": 85, - "id": "2e086f42", + "execution_count": 60, + "id": "3fd47187", "metadata": {}, "outputs": [], "source": [ @@ -203,7 +204,7 @@ }, { "cell_type": "markdown", - "id": "82ede97f", + "id": "9955acec", "metadata": {}, "source": [ "## ... and display all column names" @@ -211,7 +212,7 @@ }, { "cell_type": "code", - "execution_count": 86, + "execution_count": 61, "id": "0bf54f6a", "metadata": { "scrolled": true @@ -221,329 +222,359 @@ "data": { "text/html": [ "\n", - "
| \n", - " | codeflows.csv | \n", - "artifacts.csv | \n", - "project.csv | \n", - "relatedLocations.csv | \n", - "kind_pathproblem.csv | \n", - "rules.csv | \n", - "kind_problem.csv | \n", + "artifacts.csv | \n", + "codeflows.csv | \n", + "kind_pathproblem.csv | \n", + "kind_problem.csv | \n", + "project.csv | \n", + "relatedLocations.csv | \n", + "rules.csv | \n", "|
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | \n", - "index | \n", - "index | \n", - "index | \n", - "index | \n", - "index | \n", - "index | \n", - "index | \n", + "0 | \n", + "artifacts_id | \n", + "codeflow_id | \n", + "results_array_id | \n", + "results_array_id | \n", + "creation_date | \n", + "struct_id | \n", + "rules_array_id | \n", "
| 1 | \n", - "t9799_array_id | \n", - "array_id | \n", - "value_index_7481 | \n", - "struct_id | \n", - "t6343_result_id | \n", - "t8754_array_id | \n", - "result_id_6343 | \n", + "1 | \n", + "index | \n", + "codeflow_index | \n", + "results_array_index | \n", + "results_array_index | \n", + "primary_language | \n", + "uri | \n", + "rules_array_index | \n", "
| 2 | \n", - "t9799_idx | \n", - "artifact_index_4640 | \n", - "creation_date | \n", - "uri | \n", - "t6343_result_idx | \n", - "t8754_value_index | \n", - "results_idx_6343 | \n", + "2 | \n", + "uri | \n", + "threadflow_index | \n", + "codeFlows_id | \n", + "ruleId | \n", + "project_name | \n", + "startLine | \n", + "id | \n", "
| 3 | \n", - "t1597_idx | \n", - "location_index_2685 | \n", - "primary_language | \n", - "startLine | \n", - "t9699_codeFlows | \n", - "t6818_id | \n", - "relatedLocations_id | \n", + "3 | \n", + "uriBaseId | \n", + "location_index | \n", + "ruleId | \n", + "ruleIndex | \n", + "query_commit_id | \n", + "startColumn | \n", + "name | \n", "
| 4 | \n", - "t1075_locations_idx | \n", - "location_uri_2685 | \n", - "project_name | \n", - "startColumn | \n", - "t9699_relatedLocations | \n", - "t6818_name | \n", - "ruleId | \n", + "4 | \n", + "\n", + " | endColumn | \n", + "ruleIndex | \n", + "location_array_index | \n", + "sarif_file_name | \n", + "endLine | \n", + "enabled | \n", "
| 5 | \n", - "id_2683 | \n", - "location_uriBaseId_2685 | \n", - "query_commit_id | \n", - "endLine | \n", - "t9699_ruleId | \n", - "t8581_enabled | \n", - "ruleIndex | \n", + "5 | \n", + "\n", + " | endLine | \n", + "location_array_index | \n", + "location_id | \n", + "scan_id | \n", + "endColumn | \n", + "level | \n", "
| 6 | \n", - "endColumn | \n", - "\n", - " | sarif_file_name | \n", - "endColumn | \n", - "t9699_ruleIndex | \n", - "t8581_level | \n", - "value_index | \n", + "6 | \n", + "\n", + " | startColumn | \n", + "location_id | \n", + "location_endColumn | \n", + "scan_start_date | \n", + "message | \n", + "fullDescription | \n", "
| 7 | \n", - "endLine | \n", - "\n", - " | scan_id | \n", - "message | \n", - "t0350_location_idx | \n", - "t6818_t2774_fullDescription | \n", - "id_2683 | \n", + "7 | \n", + "\n", + " | startLine | \n", + "location_endColumn | \n", + "location_endLine | \n", + "scan_stop_date | \n", + "\n", + " | shortDescription | \n", "
| 8 | \n", - "startColumn | \n", - "\n", - " | scan_start_date | \n", - "\n", - " | id_2683 | \n", - "t6818_t2774_shortDescription | \n", - "endColumn | \n", + "8 | \n", + "\n", + " | artifact_index | \n", + "location_endLine | \n", + "location_startColumn | \n", + "tool_name | \n", + "\n", + " | kind | \n", "
| 9 | \n", - "startLine | \n", - "\n", - " | scan_stop_date | \n", - "\n", - " | endColumn | \n", - "t7849_kind | \n", - "endLine | \n", + "9 | \n", + "\n", + " | uri | \n", + "location_startColumn | \n", + "location_startLine | \n", + "tool_version | \n", + "\n", + " | precision | \n", "
| 10 | \n", - "location_index_2685 | \n", - "\n", - " | tool_name | \n", - "\n", - " | endLine | \n", - "t7849_precision | \n", - "startColumn | \n", + "10 | \n", + "\n", + " | uriBaseId | \n", + "location_startLine | \n", + "location_index | \n", + "$schema | \n", + "\n", + " | security-severity | \n", "
| 11 | \n", - "uri | \n", - "\n", - " | tool_version | \n", - "\n", - " | startColumn | \n", - "t7849_security-severity | \n", - "startLine | \n", + "11 | \n", + "\n", + " | message | \n", + "location_index | \n", + "location_uri | \n", + "sarif_version | \n", + "\n", + " | severity | \n", "
| 12 | \n", - "uriBaseId | \n", - "\n", - " | $schema | \n", - "\n", - " | startLine | \n", - "t7849_severity | \n", - "location_index_2685 | \n", + "12 | \n", + "\n", + " | \n", + " | location_uri | \n", + "location_uriBaseId | \n", + "run_index | \n", + "\n", + " | sub-severity | \n", "
| 13 | \n", - "message_text_2683 | \n", - "\n", - " | version_6787 | \n", - "\n", - " | location_index_2685 | \n", - "t7849_sub-severity | \n", - "uri | \n", + "13 | \n", + "\n", + " | \n", + " | location_uriBaseId | \n", + "location_message | \n", + "artifacts | \n", + "\n", + " | tag_index | \n", "
| 14 | \n", - "\n", - " | \n", - " | value_index_0177 | \n", - "\n", - " | uri | \n", - "t7069_value_index | \n", - "uriBaseId | \n", + "14 | \n", + "\n", + " | \n", + " | location_message | \n", + "relatedLocation_array_index | \n", + "columnKind | \n", + "\n", + " | tag_text | \n", "
| 15 | \n", - "\n", - " | \n", - " | artifacts | \n", - "\n", - " | uriBaseId | \n", - "t7069_id_or_value_at_index | \n", - "message_text_2683 | \n", + "15 | \n", + "\n", + " | \n", + " | relatedLocation_array_index | \n", + "relatedLocation_id | \n", + "results | \n", + "\n", + " | \n", " |
| 16 | \n", - "\n", - " | \n", - " | columnKind | \n", - "\n", - " | message_text_2683 | \n", - "\n", - " | message_text_4055 | \n", + "16 | \n", + "\n", + " | \n", + " | relatedLocation_id | \n", + "relatedLocation_endColumn | \n", + "semmle.formatSpecifier | \n", + "\n", + " | \n", " |
| 17 | \n", - "\n", - " | \n", - " | results | \n", - "\n", - " | t9699_message_text | \n", - "\n", - " | primaryLocationLineHash | \n", + "17 | \n", + "\n", + " | \n", + " | relatedLocation_endColumn | \n", + "relatedLocation_endLine | \n", + "semmle.sourceLanguage | \n", + "\n", + " | \n", " |
| 18 | \n", - "\n", - " | \n", - " | semmle.formatSpecifier | \n", - "\n", - " | primaryLocationLineHash | \n", - "\n", - " | primaryLocationStartColumnFingerprint | \n", + "18 | \n", + "\n", + " | \n", + " | relatedLocation_endLine | \n", + "relatedLocation_startColumn | \n", + "driver_name | \n", + "\n", + " | \n", " |
| 19 | \n", - "\n", - " | \n", - " | semmle.sourceLanguage | \n", - "\n", - " | primaryLocationStartColumnFingerprint | \n", - "\n", - " | rule_id | \n", + "19 | \n", + "\n", + " | \n", + " | relatedLocation_startColumn | \n", + "relatedLocation_startLine | \n", + "organization | \n", + "\n", + " | \n", " |
| 20 | \n", - "\n", - " | \n", - " | driver_name_7820 | \n", - "\n", - " | t3942_rule_id | \n", - "\n", - " | rule_index | \n", + "20 | \n", + "\n", + " | \n", + " | relatedLocation_startLine | \n", + "relatedLocation_index | \n", + "rules | \n", + "\n", + " | \n", " |
| 21 | \n", - "\n", - " | \n", - " | organization | \n", - "\n", - " | t3942_rule_idx | \n", - "\n", - " | \n", + " | 21 | \n", + "\n", + " | \n", + " | relatedLocation_index | \n", + "relatedLocation_uri | \n", + "driver_version | \n", + "\n", + " | \n", " |
| 22 | \n", - "\n", - " | \n", - " | rules | \n", - "\n", - " | \n", - " | \n", - " | \n", + " | 22 | \n", + "\n", + " | \n", + " | relatedLocation_uri | \n", + "relatedLocation_uriBaseId | \n", + "repositoryUri | \n", + "\n", + " | \n", " |
| 23 | \n", - "\n", - " | \n", - " | driver_version_7820 | \n", - "\n", - " | \n", - " | \n", - " | \n", + " | 23 | \n", + "\n", + " | \n", + " | relatedLocation_uriBaseId | \n", + "relatedLocation_message | \n", + "revisionId | \n", + "\n", + " | \n", " |
| 24 | \n", - "\n", - " | \n", - " | versionControl_value_index_5511 | \n", - "\n", - " | \n", - " | \n", - " | \n", + " | 24 | \n", + "\n", + " | \n", + " | relatedLocation_message | \n", + "message_text | \n", + "\n", + " | \n", + " | \n", " |
| 25 | \n", - "\n", - " | \n", - " | repositoryUri | \n", - "\n", - " | \n", - " | \n", - " | \n", + " | 25 | \n", + "\n", + " | \n", + " | message_text | \n", + "primaryLocationLineHash | \n", + "\n", + " | \n", + " | \n", " |
| 26 | \n", - "\n", - " | \n", - " | revisionId | \n", - "\n", - " | \n", - " | \n", - " | \n", + " | 26 | \n", + "\n", + " | \n", + " | primaryLocationLineHash | \n", + "primaryLocationStartColumnFingerprint | \n", + "\n", + " | \n", + " | \n", + " |
| 27 | \n", + "\n", + " | \n", + " | primaryLocationStartColumnFingerprint | \n", + "rule_id | \n", + "\n", + " | \n", + " | \n", + " | ||||||||
| 28 | \n", + "\n", + " | \n", + " | rule_id | \n", + "rule_index | \n", + "\n", + " | \n", + " | \n", + " | ||||||||
| 29 | \n", + "\n", + " | \n", + " | rule_index | \n", + "\n", + " | \n", + " | \n", + " | \n", " |
| \n", + " | 0 | \n", + "1 | \n", + "2 | \n", + "3 | \n", + "4 | \n", + "5 | \n", + "6 | \n", + "7 | \n", + "8 | \n", + "9 | \n", + "... | \n", + "353 | \n", + "354 | \n", + "355 | \n", + "356 | \n", + "357 | \n", + "358 | \n", + "359 | \n", + "360 | \n", + "361 | \n", + "362 | \n", + "
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| artifacts_id | \n", + "4811936640 | \n", + "4811936640 | \n", + "4811936640 | \n", + "4811936640 | \n", + "4811936640 | \n", + "4811936640 | \n", + "4811936640 | \n", + "4811936640 | \n", + "4811936640 | \n", + "4811936640 | \n", + "... | \n", + "4817296320 | \n", + "4817296320 | \n", + "4817296320 | \n", + "4817296320 | \n", + "4817296320 | \n", + "4817296320 | \n", + "4817296320 | \n", + "4817296320 | \n", + "4817296320 | \n", + "4817296320 | \n", + "
| index | \n", + "0 | \n", + "1 | \n", + "2 | \n", + "3 | \n", + "4 | \n", + "5 | \n", + "6 | \n", + "7 | \n", + "8 | \n", + "9 | \n", + "... | \n", + "66 | \n", + "67 | \n", + "68 | \n", + "69 | \n", + "70 | \n", + "71 | \n", + "72 | \n", + "73 | \n", + "74 | \n", + "75 | \n", + "
| uri | \n", + "static/js/fileuploader.js | \n", + "static/js/hardtree.js | \n", + "static/js/jquery-ui-1.10.3/demos/accordion/hov... | \n", + "static/js/jquery.ganttView.js | \n", + "static/js/tinymce/jscripts/tiny_mce/plugins/ad... | \n", + "static/js/tinymce/jscripts/tiny_mce/plugins/ad... | \n", + "static/js/tinymce/jscripts/tiny_mce/plugins/co... | \n", + "static/js/tinymce/jscripts/tiny_mce/plugins/em... | \n", + "static/js/tinymce/jscripts/tiny_mce/plugins/fu... | \n", + "static/js/tinymce/jscripts/tiny_mce/plugins/fu... | \n", + "... | \n", + "static/js/jquery.ba-serializeobject.js | \n", + "static/js/jquery-ui-1.10.3/ui/jquery.ui.button.js | \n", + "static/js/jquery-ui-1.10.3/ui/jquery.ui.tabs.js | \n", + "static/js/jquery-ui-1.10.3/ui/jquery.ui.sortab... | \n", + "static/js/jquery-ui-1.10.3/ui/jquery.ui.droppa... | \n", + "static/js/jquery-ui-1.10.3/ui/jquery-ui.js | \n", + "static/js/jquery-ui-custom.js | \n", + "static/js/jquery-ui-1.10.3/ui/jquery.ui.positi... | \n", + "static/js/jquery-ui-1.10.3/demos/droppable/pho... | \n", + "static/js/jquery-ui-1.10.3/demos/tabs/manipula... | \n", + "
| uriBaseId | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "... | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "
4 rows × 363 columns
\n", + "| \n", + " | 0 | \n", + "1 | \n", + "2 | \n", + "3 | \n", + "4 | \n", + "5 | \n", + "6 | \n", + "7 | \n", + "8 | \n", + "9 | \n", + "... | \n", + "336 | \n", + "337 | \n", + "338 | \n", + "339 | \n", + "340 | \n", + "341 | \n", + "342 | \n", + "343 | \n", + "344 | \n", + "345 | \n", + "
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| codeflow_id | \n", + "4814103296 | \n", + "4814103296 | \n", + "4814103296 | \n", + "4814103296 | \n", + "4814103296 | \n", + "4814103296 | \n", + "4814103296 | \n", + "4814103296 | \n", + "4814103296 | \n", + "4814103296 | \n", + "... | \n", + "4819155264 | \n", + "4819155264 | \n", + "4819155264 | \n", + "4819155264 | \n", + "4819155264 | \n", + "4819155264 | \n", + "4819155264 | \n", + "4819155264 | \n", + "4819155264 | \n", + "4819155264 | \n", + "
| codeflow_index | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "1 | \n", + "... | \n", + "5 | \n", + "5 | \n", + "5 | \n", + "5 | \n", + "5 | \n", + "5 | \n", + "5 | \n", + "5 | \n", + "5 | \n", + "5 | \n", + "
| threadflow_index | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "... | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "
| location_index | \n", + "0 | \n", + "1 | \n", + "2 | \n", + "3 | \n", + "4 | \n", + "5 | \n", + "6 | \n", + "7 | \n", + "8 | \n", + "0 | \n", + "... | \n", + "0 | \n", + "1 | \n", + "2 | \n", + "3 | \n", + "4 | \n", + "5 | \n", + "6 | \n", + "7 | \n", + "8 | \n", + "9 | \n", + "
| endColumn | \n", + "35 | \n", + "48 | \n", + "46 | \n", + "40 | \n", + "46 | \n", + "47 | \n", + "42 | \n", + "42 | \n", + "14 | \n", + "35 | \n", + "... | \n", + "11 | \n", + "155 | \n", + "46 | \n", + "40 | \n", + "46 | \n", + "30 | \n", + "47 | \n", + "46 | \n", + "46 | \n", + "75 | \n", + "
| endLine | \n", + "9598 | \n", + "9629 | \n", + "139 | \n", + "148 | \n", + "148 | \n", + "148 | \n", + "1021 | \n", + "1021 | \n", + "1027 | \n", + "9598 | \n", + "... | \n", + "541 | \n", + "542 | \n", + "139 | \n", + "148 | \n", + "148 | \n", + "148 | \n", + "148 | \n", + "189 | \n", + "189 | \n", + "196 | \n", + "
| startColumn | \n", + "28 | \n", + "41 | \n", + "38 | \n", + "32 | \n", + "32 | \n", + "19 | \n", + "15 | \n", + "4 | \n", + "6 | \n", + "28 | \n", + "... | \n", + "10 | \n", + "154 | \n", + "38 | \n", + "32 | \n", + "32 | \n", + "28 | \n", + "19 | \n", + "17 | \n", + "4 | \n", + "65 | \n", + "
| startLine | \n", + "9598 | \n", + "9629 | \n", + "139 | \n", + "148 | \n", + "148 | \n", + "148 | \n", + "1021 | \n", + "1021 | \n", + "1027 | \n", + "9598 | \n", + "... | \n", + "541 | \n", + "542 | \n", + "139 | \n", + "148 | \n", + "148 | \n", + "148 | \n", + "148 | \n", + "189 | \n", + "189 | \n", + "196 | \n", + "
| artifact_index | \n", + "72 | \n", + "72 | \n", + "61 | \n", + "61 | \n", + "61 | \n", + "61 | \n", + "61 | \n", + "61 | \n", + "61 | \n", + "72 | \n", + "... | \n", + "72 | \n", + "72 | \n", + "60 | \n", + "60 | \n", + "60 | \n", + "60 | \n", + "60 | \n", + "60 | \n", + "60 | \n", + "60 | \n", + "
| uri | \n", + "static/js/jquery-ui-1.10.3/ui/jquery-ui.js | \n", + "static/js/jquery-ui-1.10.3/ui/jquery-ui.js | \n", + "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepi... | \n", + "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepi... | \n", + "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepi... | \n", + "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepi... | \n", + "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepi... | \n", + "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepi... | \n", + "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepi... | \n", + "static/js/jquery-ui-1.10.3/ui/jquery-ui.js | \n", + "... | \n", + "static/js/jquery-ui-custom.js | \n", + "static/js/jquery-ui-custom.js | \n", + "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepi... | \n", + "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepi... | \n", + "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepi... | \n", + "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepi... | \n", + "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepi... | \n", + "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepi... | \n", + "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepi... | \n", + "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepi... | \n", + "
| uriBaseId | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "... | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "
| message | \n", + "options | \n", + "options | \n", + "settings | \n", + "settings | \n", + "settings || {} | \n", + "$.exten ... || {}) | \n", + "this._g ... Field\") | \n", + "altField | \n", + "altField | \n", + "options | \n", + "... | \n", + "a | \n", + "a | \n", + "settings | \n", + "settings | \n", + "settings || {} | \n", + "{} | \n", + "$.exten ... || {}) | \n", + "this._g ... dText\") | \n", + "appendText | \n", + "appendText | \n", + "
12 rows × 346 columns
\n", + "| \n", - " | index | \n", - "array_id | \n", - "artifact_index_4640 | \n", - "location_index_2685 | \n", - "location_uri_2685 | \n", - "location_uriBaseId_2685 | \n", + "0 | \n", + "1 | \n", + "2 | \n", + "3 | \n", + "4 | \n", + "5 | \n", + "6 | \n", + "7 | \n", + "8 | \n", + "9 | \n", + "10 | \n", + "11 | \n", + "12 | \n", + "13 | \n", + "14 | \n", + "15 | \n", + "16 | \n", + "17 | \n", + "18 | \n", + "19 | \n", + "20 | \n", + "21 | \n", + "22 | \n", + "23 | \n", + "24 | \n", + "25 | \n", + "26 | \n", + "27 | \n", + "28 | \n", + "29 | \n", + "30 | \n", + "31 | \n", + "32 | \n", + "33 | \n", + "34 | \n", + "35 | \n", + "36 | \n", + "37 | \n", + "38 | \n", + "39 | \n", + "40 | \n", + "41 | \n", + "42 | \n", + "43 | \n", "|
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | \n", - "0 | \n", - "4884865856 | \n", - "0 | \n", - "0 | \n", - "static/js/fileuploader.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 1 | \n", - "1 | \n", - "4884865856 | \n", - "1 | \n", - "1 | \n", - "static/js/hardtree.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 2 | \n", - "2 | \n", - "4884865856 | \n", - "2 | \n", - "2 | \n", - "static/js/jquery-ui-1.10.3/demos/accordion/hoverintent.html | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 3 | \n", - "3 | \n", - "4884865856 | \n", - "3 | \n", - "3 | \n", - "static/js/jquery.ganttView.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 4 | \n", - "4 | \n", - "4884865856 | \n", - "4 | \n", - "4 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/advimage/js/image.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 5 | \n", - "5 | \n", - "4884865856 | \n", - "5 | \n", - "5 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/advlink/js/advlink.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 6 | \n", - "6 | \n", - "4884865856 | \n", - "6 | \n", - "6 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/contextmenu/editor_plugin_src.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 7 | \n", - "7 | \n", - "4884865856 | \n", - "7 | \n", - "7 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/emotions/js/emotions.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 8 | \n", - "8 | \n", - "4884865856 | \n", - "8 | \n", - "8 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/fullpage/editor_plugin_src.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 9 | \n", - "9 | \n", - "4884865856 | \n", - "9 | \n", - "9 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/fullscreen/editor_plugin_src.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 10 | \n", - "10 | \n", - "4884865856 | \n", - "10 | \n", - "10 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/fullscreen/fullscreen.htm | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 11 | \n", - "11 | \n", - "4884865856 | \n", - "11 | \n", - "11 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin_src.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 12 | \n", - "12 | \n", - "4884865856 | \n", - "12 | \n", - "12 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/layer/editor_plugin_src.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 13 | \n", - "13 | \n", - "4884865856 | \n", - "13 | \n", - "13 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/legacyoutput/editor_plugin_src.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 14 | \n", - "14 | \n", - "4884865856 | \n", - "14 | \n", - "14 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/lists/editor_plugin_src.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 15 | \n", - "15 | \n", - "4884865856 | \n", - "15 | \n", - "15 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 16 | \n", - "16 | \n", - "4884865856 | \n", - "16 | \n", - "16 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/media/js/media.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 17 | \n", - "17 | \n", - "4884865856 | \n", - "17 | \n", - "17 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin_src.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 18 | \n", - "18 | \n", - "4884865856 | \n", - "18 | \n", - "18 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/save/editor_plugin_src.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 19 | \n", - "19 | \n", - "4884865856 | \n", - "19 | \n", - "19 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/searchreplace/js/searchreplace.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 20 | \n", - "20 | \n", - "4884865856 | \n", - "20 | \n", - "20 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/spellchecker/editor_plugin_src.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 21 | \n", - "21 | \n", - "4884865856 | \n", - "21 | \n", - "21 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/style/js/props.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 22 | \n", - "22 | \n", - "4884865856 | \n", - "22 | \n", - "22 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/tabfocus/editor_plugin_src.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 23 | \n", - "23 | \n", - "4884865856 | \n", - "23 | \n", - "23 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin_src.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 24 | \n", - "24 | \n", - "4884865856 | \n", - "24 | \n", - "24 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/table/js/cell.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 25 | \n", - "25 | \n", - "4884865856 | \n", - "25 | \n", - "25 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/template/js/template.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 26 | \n", - "26 | \n", - "4884865856 | \n", - "26 | \n", - "26 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin_src.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 27 | \n", - "27 | \n", - "4884865856 | \n", - "27 | \n", - "27 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/element_common.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 28 | \n", - "28 | \n", - "4884865856 | \n", - "28 | \n", - "28 | \n", - "static/js/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 29 | \n", - "29 | \n", - "4884865856 | \n", - "29 | \n", - "29 | \n", - "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/anchor.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 30 | \n", - "30 | \n", - "4884865856 | \n", - "30 | \n", - "30 | \n", - "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/charmap.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 31 | \n", - "31 | \n", - "4884865856 | \n", - "31 | \n", - "31 | \n", - "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 32 | \n", - "32 | \n", - "4884865856 | \n", - "32 | \n", - "32 | \n", - "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/image.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 33 | \n", - "33 | \n", - "4884865856 | \n", - "33 | \n", - "33 | \n", - "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/link.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 34 | \n", - "34 | \n", - "4884865856 | \n", - "34 | \n", - "34 | \n", - "static/js/tinymce/jscripts/tiny_mce/tiny_mce_src.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 35 | \n", - "35 | \n", - "4884865856 | \n", - "35 | \n", - "35 | \n", - "static/js/tinymce/jscripts/tiny_mce/utils/editable_selects.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 36 | \n", - "36 | \n", - "4884865856 | \n", - "36 | \n", - "36 | \n", - "static/js/tinymce/jscripts/tiny_mce/utils/mctabs.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 37 | \n", - "37 | \n", - "4884865856 | \n", - "37 | \n", - "37 | \n", - "static/js/tinymce/jscripts/tiny_mce/utils/validate.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 38 | \n", - "38 | \n", - "4884865856 | \n", - "38 | \n", - "38 | \n", - "static/mobile/jquery.mobile.scrollview.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 39 | \n", - "39 | \n", - "4884865856 | \n", - "39 | \n", - "39 | \n", - "templates/html/core/billing/upgrade.html | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 40 | \n", - "40 | \n", - "4884865856 | \n", - "40 | \n", - "40 | \n", - "static/js/12o_super_mini.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 41 | \n", - "41 | \n", - "4884865856 | \n", - "41 | \n", - "41 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin_src.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 42 | \n", - "42 | \n", - "4884865856 | \n", - "42 | \n", - "42 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/wordcount/editor_plugin_src.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 43 | \n", - "43 | \n", - "4884865856 | \n", - "43 | \n", - "43 | \n", - "static/js/chat.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 44 | \n", - "44 | \n", - "4884865856 | \n", - "44 | \n", - "44 | \n", - "static/js/jquery-ui-1.10.3/demos/effect/easing.html | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 45 | \n", - "45 | \n", - "4884865856 | \n", - "45 | \n", - "45 | \n", - "static/js/jquery.gritter.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 46 | \n", - "46 | \n", - "4884865856 | \n", - "46 | \n", - "46 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/style/editor_plugin_src.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 47 | \n", - "47 | \n", - "4884865856 | \n", - "47 | \n", - "47 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/table/js/table.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 48 | \n", - "48 | \n", - "4884865856 | \n", - "48 | \n", - "48 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/template/editor_plugin_src.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 49 | \n", - "49 | \n", - "4884865856 | \n", - "49 | \n", - "49 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/attributes.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 50 | \n", - "50 | \n", - "4884865856 | \n", - "50 | \n", - "50 | \n", - "static/js/tinymce/jscripts/tiny_mce/utils/form_utils.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 51 | \n", - "51 | \n", - "4884865856 | \n", - "51 | \n", - "51 | \n", - "static/mobile/jquery.mobile.forms.ajaxform.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 52 | \n", - "52 | \n", - "4884865856 | \n", - "52 | \n", - "52 | \n", - "static/js/colorbox/example1/index.html | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 53 | \n", - "53 | \n", - "4884865856 | \n", - "53 | \n", - "53 | \n", - "static/js/colorbox/example2/index.html | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 54 | \n", - "54 | \n", - "4884865856 | \n", - "54 | \n", - "54 | \n", - "static/js/colorbox/example3/index.html | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 55 | \n", - "55 | \n", - "4884865856 | \n", - "55 | \n", - "55 | \n", - "static/js/colorbox/example4/index.html | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 56 | \n", - "56 | \n", - "4884865856 | \n", - "56 | \n", - "56 | \n", - "static/js/colorbox/example5/index.html | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 57 | \n", - "57 | \n", - "4884865856 | \n", - "57 | \n", - "57 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/media/js/embed.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 58 | \n", - "58 | \n", - "4884865856 | \n", - "58 | \n", - "58 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/preview/jscripts/embed.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 59 | \n", - "59 | \n", - "4884865856 | \n", - "59 | \n", - "59 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/preview/preview.html | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 60 | \n", - "60 | \n", - "4884865856 | \n", - "60 | \n", - "60 | \n", - "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 61 | \n", - "61 | \n", - "4884865856 | \n", - "61 | \n", - "61 | \n", - "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 62 | \n", - "62 | \n", - "4884865856 | \n", - "62 | \n", - "62 | \n", - "static/js/jquery-ui-1.10.3/ui/jquery.ui.resizable.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 63 | \n", - "63 | \n", - "4884865856 | \n", - "63 | \n", - "63 | \n", - "static/js/jquery-ui-1.10.3/ui/jquery.ui.slider.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 64 | \n", - "64 | \n", - "4884865856 | \n", - "64 | \n", - "64 | \n", - "static/js/tinymce/jscripts/tiny_mce/themes/simple/editor_template_src.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 65 | \n", - "65 | \n", - "4884865856 | \n", - "65 | \n", - "65 | \n", - "templates/html/core/administration/settings_view.html | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 66 | \n", - "66 | \n", - "4884865856 | \n", - "66 | \n", - "66 | \n", - "templates/html/core/database_setup.html | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 67 | \n", - "67 | \n", - "4884865856 | \n", - "67 | \n", - "67 | \n", - "static/js/jquery.ba-serializeobject.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 68 | \n", - "68 | \n", - "4884865856 | \n", - "68 | \n", - "68 | \n", - "static/js/jquery-ui-1.10.3/ui/jquery.ui.button.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 69 | \n", - "69 | \n", - "4884865856 | \n", - "69 | \n", - "69 | \n", - "static/js/jquery-ui-1.10.3/ui/jquery.ui.tabs.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 70 | \n", - "70 | \n", - "4884865856 | \n", - "70 | \n", - "70 | \n", - "static/js/jquery-ui-1.10.3/ui/jquery.ui.sortable.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 71 | \n", - "71 | \n", - "4884865856 | \n", - "71 | \n", - "71 | \n", - "static/js/jquery-ui-1.10.3/ui/jquery.ui.droppable.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 72 | \n", - "72 | \n", - "4884865856 | \n", - "72 | \n", - "72 | \n", - "static/js/jquery-ui-1.10.3/ui/jquery-ui.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 73 | \n", - "73 | \n", - "4884865856 | \n", - "73 | \n", - "73 | \n", - "static/js/jquery-ui-custom.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 74 | \n", - "74 | \n", - "4884865856 | \n", - "74 | \n", - "74 | \n", - "static/js/jquery-ui-1.10.3/ui/jquery.ui.position.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 75 | \n", - "75 | \n", - "4884865856 | \n", - "75 | \n", - "75 | \n", - "static/js/jquery-ui-1.10.3/demos/droppable/photo-manager.html | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 76 | \n", - "76 | \n", - "4884865856 | \n", - "76 | \n", - "76 | \n", - "static/js/jquery-ui-1.10.3/demos/tabs/manipulation.html | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 77 | \n", - "77 | \n", - "4887304320 | \n", - "0 | \n", - "0 | \n", - "treeio/core/middleware/chat.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 78 | \n", - "78 | \n", - "4887304320 | \n", - "1 | \n", - "1 | \n", - "treeio/core/search/views.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 79 | \n", - "79 | \n", - "4887304320 | \n", - "2 | \n", - "2 | \n", - "treeio/sales/views.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 80 | \n", - "80 | \n", - "4887304320 | \n", - "3 | \n", - "3 | \n", - "treeio_project/settings.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 81 | \n", - "81 | \n", - "4887304320 | \n", - "4 | \n", - "4 | \n", - "treeio/core/administration/api/handlers.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 82 | \n", - "82 | \n", - "4887304320 | \n", - "5 | \n", - "5 | \n", - "treeio/core/administration/forms.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 83 | \n", - "83 | \n", - "4887304320 | \n", - "6 | \n", - "6 | \n", - "treeio/identities/api/handlers.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 84 | \n", - "84 | \n", - "4887304320 | \n", - "7 | \n", - "7 | \n", - "treeio/infrastructure/api/handlers.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 85 | \n", - "85 | \n", - "4887304320 | \n", - "8 | \n", - "8 | \n", - "treeio/core/db/__init__.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 86 | \n", - "86 | \n", - "4887304320 | \n", - "9 | \n", - "9 | \n", - "treeio/core/db/db.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 87 | \n", - "87 | \n", - "4887304320 | \n", - "10 | \n", - "10 | \n", - "treeio/core/south_migrations/0002_auto__del_notification__add_comment__add_tag__add_revisionfield__add_r.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 88 | \n", - "88 | \n", - "4887304320 | \n", - "11 | \n", - "11 | \n", - "treeio/core/south_migrations/0005_auto__del_field_group_id__chg_field_group_accessentity_ptr__del_field_.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 89 | \n", - "89 | \n", - "4887304320 | \n", - "12 | \n", - "12 | \n", - "treeio/messaging/south_migrations/0002_auto__add_mailinglist__add_template__add_field_message_mlist__chg_fiel.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 90 | \n", - "90 | \n", - "4887304320 | \n", - "13 | \n", - "13 | \n", - "treeio/services/south_migrations/0004_auto__del_field_ticketrecord_record_type__del_field_ticketrecord_detai.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 91 | \n", - "91 | \n", - "4887304320 | \n", - "14 | \n", - "14 | \n", - "treeio/account/south_migrations/0001_initial.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 92 | \n", - "92 | \n", - "4887304320 | \n", - "15 | \n", - "15 | \n", - "treeio/changes/south_migrations/0001_initial.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 93 | \n", - "93 | \n", - "4887304320 | \n", - "16 | \n", - "16 | \n", - "treeio/core/ajax/converter.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 94 | \n", - "94 | \n", - "4887304320 | \n", - "17 | \n", - "17 | \n", - "treeio/core/api/south_migrations/0001_initial.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 95 | \n", - "95 | \n", - "4887304320 | \n", - "18 | \n", - "18 | \n", - "treeio/core/api/south_migrations/0002_auto__add_field_consumer_owner.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 96 | \n", - "96 | \n", - "4887304320 | \n", - "19 | \n", - "19 | \n", - "treeio/core/management/commands/installdb.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 97 | \n", - "97 | \n", - "4887304320 | \n", - "20 | \n", - "20 | \n", - "treeio/core/middleware/user.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 98 | \n", - "98 | \n", - "4887304320 | \n", - "21 | \n", - "21 | \n", - "treeio/core/south_migrations/0003_treeiocore.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 99 | \n", - "99 | \n", - "4887304320 | \n", - "22 | \n", - "22 | \n", - "treeio/core/south_migrations/0004_auto__del_field_object_user.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 100 | \n", - "100 | \n", - "4887304320 | \n", - "23 | \n", - "23 | \n", - "treeio/core/south_migrations/0006_auto__add_configsetting.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 101 | \n", - "101 | \n", - "4887304320 | \n", - "24 | \n", - "24 | \n", - "treeio/core/south_migrations/0007_auto__add_attachment.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 102 | \n", - "102 | \n", - "4887304320 | \n", - "25 | \n", - "25 | \n", - "treeio/core/south_migrations/0008_auto__add_field_attachment_filename.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 103 | \n", - "103 | \n", - "4887304320 | \n", - "26 | \n", - "26 | \n", - "treeio/documents/south_migrations/0001_initial.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 104 | \n", - "104 | \n", - "4887304320 | \n", - "27 | \n", - "27 | \n", - "treeio/events/south_migrations/0001_initial.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 105 | \n", - "105 | \n", - "4887304320 | \n", - "28 | \n", - "28 | \n", - "treeio/finance/south_migrations/0001_initial.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 106 | \n", - "106 | \n", - "4887304320 | \n", - "29 | \n", - "29 | \n", - "treeio/finance/south_migrations/0002_auto__add_currency__add_tax__add_field_liability_value_currency__add_f.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 107 | \n", - "107 | \n", - "4887304320 | \n", - "30 | \n", - "30 | \n", - "treeio/finance/south_migrations/0003_treeiocurrency.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 108 | \n", - "108 | \n", - "4887304320 | \n", - "31 | \n", - "31 | \n", - "treeio/identities/south_migrations/0001_initial.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 109 | \n", - "109 | \n", - "4887304320 | \n", - "32 | \n", - "32 | \n", - "treeio/identities/south_migrations/0002_auto__chg_field_contact_related_user.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 110 | \n", - "110 | \n", - "4887304320 | \n", - "33 | \n", - "33 | \n", - "treeio/identities/south_migrations/0003_related_accessentity.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 111 | \n", - "111 | \n", - "4887304320 | \n", - "34 | \n", - "34 | \n", - "treeio/identities/south_migrations/0004_auto__del_field_contact_related_group.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 112 | \n", - "112 | \n", - "4887304320 | \n", - "35 | \n", - "35 | \n", - "treeio/infrastructure/south_migrations/0001_initial.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 113 | \n", - "113 | \n", - "4887304320 | \n", - "36 | \n", - "36 | \n", - "treeio/knowledge/south_migrations/0001_initial.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 114 | \n", - "114 | \n", - "4887304320 | \n", - "37 | \n", - "37 | \n", - "treeio/messaging/south_migrations/0001_initial.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 115 | \n", - "115 | \n", - "4887304320 | \n", - "38 | \n", - "38 | \n", - "treeio/messaging/south_migrations/0003_merge_emailbox_stream.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 116 | \n", - "116 | \n", - "4887304320 | \n", - "39 | \n", - "39 | \n", - "treeio/messaging/south_migrations/0004_auto__del_emailbox__del_field_messagestream_email_outgoing__del_field_.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 117 | \n", - "117 | \n", - "4887304320 | \n", - "40 | \n", - "40 | \n", - "treeio/news/south_migrations/0001_initial.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 118 | \n", - "118 | \n", - "4887304320 | \n", - "41 | \n", - "41 | \n", - "treeio/projects/south_migrations/0001_initial.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 119 | \n", - "119 | \n", - "4887304320 | \n", - "42 | \n", - "42 | \n", - "treeio/projects/south_migrations/0002_updaterecords.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 120 | \n", - "120 | \n", - "4887304320 | \n", - "43 | \n", - "43 | \n", - "treeio/projects/south_migrations/0003_auto__add_field_tasktimeslot_user.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 121 | \n", - "121 | \n", - "4887304320 | \n", - "44 | \n", - "44 | \n", - "treeio/projects/south_migrations/0004_timeslots.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 122 | \n", - "122 | \n", - "4887304320 | \n", - "45 | \n", - "45 | \n", - "treeio/projects/south_migrations/0005_auto__del_taskrecord.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 123 | \n", - "123 | \n", - "4887304320 | \n", - "46 | \n", - "46 | \n", - "treeio/projects/south_migrations/0006_auto__add_field_task_depends.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 124 | \n", - "124 | \n", - "4887304320 | \n", - "47 | \n", - "47 | \n", - "treeio/reports/south_migrations/0001_initial.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 125 | \n", - "125 | \n", - "4887304320 | \n", - "48 | \n", - "48 | \n", - "treeio/reports/south_migrations/0002_auto__del_template__add_chart__del_field_report_template__add_field_re.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 126 | \n", - "126 | \n", - "4887304320 | \n", - "49 | \n", - "49 | \n", - "treeio/reports/south_migrations/0003_delete_old.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 127 | \n", - "127 | \n", - "4887304320 | \n", - "50 | \n", - "50 | \n", - "treeio/sales/south_migrations/0002_auto__del_updaterecord__add_field_orderedproduct_tax__add_field_ordere.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 128 | \n", - "128 | \n", - "4887304320 | \n", - "51 | \n", - "51 | \n", - "treeio/sales/south_migrations/0003_treeiocurrency.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 129 | \n", - "129 | \n", - "4887304320 | \n", - "52 | \n", - "52 | \n", - "treeio/sales/south_migrations/0004_auto__chg_field_orderedproduct_quantity.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 130 | \n", - "130 | \n", - "4887304320 | \n", - "53 | \n", - "53 | \n", - "treeio/services/south_migrations/0001_initial.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 131 | \n", - "131 | \n", - "4887304320 | \n", - "54 | \n", - "54 | \n", - "treeio/services/south_migrations/0002_auto__add_field_ticketrecord_updaterecord_ptr.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 132 | \n", - "132 | \n", - "4887304320 | \n", - "55 | \n", - "55 | \n", - "treeio/services/south_migrations/0003_updaterecords.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 133 | \n", - "133 | \n", - "4887304320 | \n", - "56 | \n", - "56 | \n", - "treeio/account/ajax.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 134 | \n", - "134 | \n", - "4887304320 | \n", - "57 | \n", - "57 | \n", - "treeio/account/cron.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 135 | \n", - "135 | \n", - "4887304320 | \n", - "58 | \n", - "58 | \n", - "treeio/account/forms.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 136 | \n", - "136 | \n", - "4887304320 | \n", - "59 | \n", - "59 | \n", - "treeio/account/views.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 137 | \n", - "137 | \n", - "4887304320 | \n", - "60 | \n", - "60 | \n", - "treeio/core/administration/views.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 138 | \n", - "138 | \n", - "4887304320 | \n", - "61 | \n", - "61 | \n", - "treeio/core/api/doc.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 139 | \n", - "139 | \n", - "4887304320 | \n", - "62 | \n", - "62 | \n", - "treeio/core/auth.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 140 | \n", - "140 | \n", - "4887304320 | \n", - "63 | \n", - "63 | \n", - "treeio/core/contrib/messages/storage/cache.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 141 | \n", - "141 | \n", - "4887304320 | \n", - "64 | \n", - "64 | \n", - "treeio/core/dashboard/views.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 142 | \n", - "142 | \n", - "4887304320 | \n", - "65 | \n", - "65 | \n", - "treeio/core/db/creation.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 143 | \n", - "143 | \n", - "4887304320 | \n", - "66 | \n", - "66 | \n", - "treeio/core/forms.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 144 | \n", - "144 | \n", - "4887304320 | \n", - "67 | \n", - "67 | \n", - "treeio/core/mail.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 145 | \n", - "145 | \n", - "4887304320 | \n", - "68 | \n", - "68 | \n", - "treeio/core/management/commands/runcron.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 146 | \n", - "146 | \n", - "4887304320 | \n", - "69 | \n", - "69 | \n", - "treeio/core/models.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 147 | \n", - "147 | \n", - "4887304320 | \n", - "70 | \n", - "70 | \n", - "treeio/core/rendering.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 148 | \n", - "148 | \n", - "4887304320 | \n", - "71 | \n", - "71 | \n", - "treeio/core/rss.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 149 | \n", - "149 | \n", - "4887304320 | \n", - "72 | \n", - "72 | \n", - "treeio/core/search/models.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 150 | \n", - "150 | \n", - "4887304320 | \n", - "73 | \n", - "73 | \n", - "treeio/core/templatetags/modules.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 151 | \n", - "151 | \n", - "4887304320 | \n", - "74 | \n", - "74 | \n", - "treeio/core/templatetags/user.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 152 | \n", - "152 | \n", - "4887304320 | \n", - "75 | \n", - "75 | \n", - "treeio/core/trash/views.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 153 | \n", - "153 | \n", - "4887304320 | \n", - "76 | \n", - "76 | \n", - "treeio/core/views.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 154 | \n", - "154 | \n", - "4887304320 | \n", - "77 | \n", - "77 | \n", - "treeio/documents/forms.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 155 | \n", - "155 | \n", - "4887304320 | \n", - "78 | \n", - "78 | \n", - "treeio/events/forms.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 156 | \n", - "156 | \n", - "4887304320 | \n", - "79 | \n", - "79 | \n", - "treeio/events/rendering.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 157 | \n", - "157 | \n", - "4887304320 | \n", - "80 | \n", - "80 | \n", - "treeio/finance/api/handlers.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 158 | \n", - "158 | \n", - "4887304320 | \n", - "81 | \n", - "81 | \n", - "treeio/finance/forms.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 159 | \n", - "159 | \n", - "4887304320 | \n", - "82 | \n", - "82 | \n", - "treeio/finance/models.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 160 | \n", - "160 | \n", - "4887304320 | \n", - "83 | \n", - "83 | \n", - "treeio/finance/views.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 161 | \n", - "161 | \n", - "4887304320 | \n", - "84 | \n", - "84 | \n", - "treeio/identities/integration.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 162 | \n", - "162 | \n", - "4887304320 | \n", - "85 | \n", - "85 | \n", - "treeio/identities/models.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 163 | \n", - "163 | \n", - "4887304320 | \n", - "86 | \n", - "86 | \n", - "treeio/identities/objects.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 164 | \n", - "164 | \n", - "4887304320 | \n", - "87 | \n", - "87 | \n", - "treeio/messaging/api/handlers.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 165 | \n", - "165 | \n", - "4887304320 | \n", - "88 | \n", - "88 | \n", - "treeio/messaging/emails.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 166 | \n", - "166 | \n", - "4887304320 | \n", - "89 | \n", - "89 | \n", - "treeio/messaging/forms.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 167 | \n", - "167 | \n", - "4887304320 | \n", - "90 | \n", - "90 | \n", - "treeio/messaging/views.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 168 | \n", - "168 | \n", - "4887304320 | \n", - "91 | \n", - "91 | \n", - "treeio/news/forms.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 169 | \n", - "169 | \n", - "4887304320 | \n", - "92 | \n", - "92 | \n", - "treeio/projects/ajax.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 170 | \n", - "170 | \n", - "4887304320 | \n", - "93 | \n", - "93 | \n", - "treeio/projects/identities.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 171 | \n", - "171 | \n", - "4887304320 | \n", - "94 | \n", - "94 | \n", - "treeio/reports/templatetags/reports.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 172 | \n", - "172 | \n", - "4887304320 | \n", - "95 | \n", - "95 | \n", - "treeio/sales/forms.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 173 | \n", - "173 | \n", - "4887304320 | \n", - "96 | \n", - "96 | \n", - "treeio/sales/models.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 174 | \n", - "174 | \n", - "4887304320 | \n", - "97 | \n", - "97 | \n", - "treeio/services/api/handlers.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 175 | \n", - "175 | \n", - "4887304320 | \n", - "98 | \n", - "98 | \n", - "treeio/services/forms.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 176 | \n", - "176 | \n", - "4887304320 | \n", - "99 | \n", - "99 | \n", - "treeio/services/identities.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 177 | \n", - "177 | \n", - "4887304320 | \n", - "100 | \n", - "100 | \n", - "treeio/services/models.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 178 | \n", - "178 | \n", - "4887304320 | \n", - "101 | \n", - "101 | \n", - "treeio/services/views.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 179 | \n", - "179 | \n", - "4887304320 | \n", - "102 | \n", - "102 | \n", - "treeio/core/api/utils.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 180 | \n", - "180 | \n", - "4887304320 | \n", - "103 | \n", - "103 | \n", - "treeio/projects/views.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 181 | \n", - "181 | \n", - "4887304320 | \n", - "104 | \n", - "104 | \n", - "treeio/core/sanitizer.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 182 | \n", - "182 | \n", - "4888795840 | \n", - "0 | \n", - "0 | \n", - "treeio/core/middleware/chat.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 183 | \n", - "183 | \n", - "4888795840 | \n", - "1 | \n", - "1 | \n", - "treeio/core/search/views.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 184 | \n", - "184 | \n", - "4888795840 | \n", - "2 | \n", - "2 | \n", - "treeio/sales/views.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 185 | \n", - "185 | \n", - "4888795840 | \n", - "3 | \n", - "3 | \n", - "treeio_project/settings.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 186 | \n", - "186 | \n", - "4888795840 | \n", - "4 | \n", - "4 | \n", - "treeio/core/administration/api/handlers.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 187 | \n", - "187 | \n", - "4888795840 | \n", - "5 | \n", - "5 | \n", - "treeio/core/administration/forms.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 188 | \n", - "188 | \n", - "4888795840 | \n", - "6 | \n", - "6 | \n", - "treeio/identities/api/handlers.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 189 | \n", - "189 | \n", - "4888795840 | \n", - "7 | \n", - "7 | \n", - "treeio/infrastructure/api/handlers.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 190 | \n", - "190 | \n", - "4888795840 | \n", - "8 | \n", - "8 | \n", - "treeio/core/db/__init__.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 191 | \n", - "191 | \n", - "4888795840 | \n", - "9 | \n", - "9 | \n", - "treeio/core/db/db.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 192 | \n", - "192 | \n", - "4888795840 | \n", - "10 | \n", - "10 | \n", - "treeio/core/south_migrations/0002_auto__del_notification__add_comment__add_tag__add_revisionfield__add_r.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 193 | \n", - "193 | \n", - "4888795840 | \n", - "11 | \n", - "11 | \n", - "treeio/core/south_migrations/0005_auto__del_field_group_id__chg_field_group_accessentity_ptr__del_field_.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 194 | \n", - "194 | \n", - "4888795840 | \n", - "12 | \n", - "12 | \n", - "treeio/messaging/south_migrations/0002_auto__add_mailinglist__add_template__add_field_message_mlist__chg_fiel.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 195 | \n", - "195 | \n", - "4888795840 | \n", - "13 | \n", - "13 | \n", - "treeio/services/south_migrations/0004_auto__del_field_ticketrecord_record_type__del_field_ticketrecord_detai.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 196 | \n", - "196 | \n", - "4888795840 | \n", - "14 | \n", - "14 | \n", - "treeio/account/south_migrations/0001_initial.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 197 | \n", - "197 | \n", - "4888795840 | \n", - "15 | \n", - "15 | \n", - "treeio/changes/south_migrations/0001_initial.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 198 | \n", - "198 | \n", - "4888795840 | \n", - "16 | \n", - "16 | \n", - "treeio/core/ajax/converter.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 199 | \n", - "199 | \n", - "4888795840 | \n", - "17 | \n", - "17 | \n", - "treeio/core/api/south_migrations/0001_initial.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 200 | \n", - "200 | \n", - "4888795840 | \n", - "18 | \n", - "18 | \n", - "treeio/core/api/south_migrations/0002_auto__add_field_consumer_owner.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 201 | \n", - "201 | \n", - "4888795840 | \n", - "19 | \n", - "19 | \n", - "treeio/core/management/commands/installdb.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 202 | \n", - "202 | \n", - "4888795840 | \n", - "20 | \n", - "20 | \n", - "treeio/core/middleware/user.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 203 | \n", - "203 | \n", - "4888795840 | \n", - "21 | \n", - "21 | \n", - "treeio/core/south_migrations/0003_treeiocore.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 204 | \n", - "204 | \n", - "4888795840 | \n", - "22 | \n", - "22 | \n", - "treeio/core/south_migrations/0004_auto__del_field_object_user.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 205 | \n", - "205 | \n", - "4888795840 | \n", - "23 | \n", - "23 | \n", - "treeio/core/south_migrations/0006_auto__add_configsetting.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 206 | \n", - "206 | \n", - "4888795840 | \n", - "24 | \n", - "24 | \n", - "treeio/core/south_migrations/0007_auto__add_attachment.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 207 | \n", - "207 | \n", - "4888795840 | \n", - "25 | \n", - "25 | \n", - "treeio/core/south_migrations/0008_auto__add_field_attachment_filename.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 208 | \n", - "208 | \n", - "4888795840 | \n", - "26 | \n", - "26 | \n", - "treeio/documents/south_migrations/0001_initial.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 209 | \n", - "209 | \n", - "4888795840 | \n", - "27 | \n", - "27 | \n", - "treeio/events/south_migrations/0001_initial.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 210 | \n", - "210 | \n", - "4888795840 | \n", - "28 | \n", - "28 | \n", - "treeio/finance/south_migrations/0001_initial.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 211 | \n", - "211 | \n", - "4888795840 | \n", - "29 | \n", - "29 | \n", - "treeio/finance/south_migrations/0002_auto__add_currency__add_tax__add_field_liability_value_currency__add_f.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 212 | \n", - "212 | \n", - "4888795840 | \n", - "30 | \n", - "30 | \n", - "treeio/finance/south_migrations/0003_treeiocurrency.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 213 | \n", - "213 | \n", - "4888795840 | \n", - "31 | \n", - "31 | \n", - "treeio/identities/south_migrations/0001_initial.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 214 | \n", - "214 | \n", - "4888795840 | \n", - "32 | \n", - "32 | \n", - "treeio/identities/south_migrations/0002_auto__chg_field_contact_related_user.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 215 | \n", - "215 | \n", - "4888795840 | \n", - "33 | \n", - "33 | \n", - "treeio/identities/south_migrations/0003_related_accessentity.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 216 | \n", - "216 | \n", - "4888795840 | \n", - "34 | \n", - "34 | \n", - "treeio/identities/south_migrations/0004_auto__del_field_contact_related_group.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 217 | \n", - "217 | \n", - "4888795840 | \n", - "35 | \n", - "35 | \n", - "treeio/infrastructure/south_migrations/0001_initial.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 218 | \n", - "218 | \n", - "4888795840 | \n", - "36 | \n", - "36 | \n", - "treeio/knowledge/south_migrations/0001_initial.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 219 | \n", - "219 | \n", - "4888795840 | \n", - "37 | \n", - "37 | \n", - "treeio/messaging/south_migrations/0001_initial.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 220 | \n", - "220 | \n", - "4888795840 | \n", - "38 | \n", - "38 | \n", - "treeio/messaging/south_migrations/0003_merge_emailbox_stream.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 221 | \n", - "221 | \n", - "4888795840 | \n", - "39 | \n", - "39 | \n", - "treeio/messaging/south_migrations/0004_auto__del_emailbox__del_field_messagestream_email_outgoing__del_field_.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 222 | \n", - "222 | \n", - "4888795840 | \n", - "40 | \n", - "40 | \n", - "treeio/news/south_migrations/0001_initial.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 223 | \n", - "223 | \n", - "4888795840 | \n", - "41 | \n", - "41 | \n", - "treeio/projects/south_migrations/0001_initial.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 224 | \n", - "224 | \n", - "4888795840 | \n", - "42 | \n", - "42 | \n", - "treeio/projects/south_migrations/0002_updaterecords.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 225 | \n", - "225 | \n", - "4888795840 | \n", - "43 | \n", - "43 | \n", - "treeio/projects/south_migrations/0003_auto__add_field_tasktimeslot_user.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 226 | \n", - "226 | \n", - "4888795840 | \n", - "44 | \n", - "44 | \n", - "treeio/projects/south_migrations/0004_timeslots.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 227 | \n", - "227 | \n", - "4888795840 | \n", - "45 | \n", - "45 | \n", - "treeio/projects/south_migrations/0005_auto__del_taskrecord.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 228 | \n", - "228 | \n", - "4888795840 | \n", - "46 | \n", - "46 | \n", - "treeio/projects/south_migrations/0006_auto__add_field_task_depends.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 229 | \n", - "229 | \n", - "4888795840 | \n", - "47 | \n", - "47 | \n", - "treeio/reports/south_migrations/0001_initial.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 230 | \n", - "230 | \n", - "4888795840 | \n", - "48 | \n", - "48 | \n", - "treeio/reports/south_migrations/0002_auto__del_template__add_chart__del_field_report_template__add_field_re.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 231 | \n", - "231 | \n", - "4888795840 | \n", - "49 | \n", - "49 | \n", - "treeio/reports/south_migrations/0003_delete_old.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 232 | \n", - "232 | \n", - "4888795840 | \n", - "50 | \n", - "50 | \n", - "treeio/sales/south_migrations/0002_auto__del_updaterecord__add_field_orderedproduct_tax__add_field_ordere.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 233 | \n", - "233 | \n", - "4888795840 | \n", - "51 | \n", - "51 | \n", - "treeio/sales/south_migrations/0003_treeiocurrency.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 234 | \n", - "234 | \n", - "4888795840 | \n", - "52 | \n", - "52 | \n", - "treeio/sales/south_migrations/0004_auto__chg_field_orderedproduct_quantity.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 235 | \n", - "235 | \n", - "4888795840 | \n", - "53 | \n", - "53 | \n", - "treeio/services/south_migrations/0001_initial.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 236 | \n", - "236 | \n", - "4888795840 | \n", - "54 | \n", - "54 | \n", - "treeio/services/south_migrations/0002_auto__add_field_ticketrecord_updaterecord_ptr.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 237 | \n", - "237 | \n", - "4888795840 | \n", - "55 | \n", - "55 | \n", - "treeio/services/south_migrations/0003_updaterecords.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 238 | \n", - "238 | \n", - "4888795840 | \n", - "56 | \n", - "56 | \n", - "treeio/account/ajax.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 239 | \n", - "239 | \n", - "4888795840 | \n", - "57 | \n", - "57 | \n", - "treeio/account/cron.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 240 | \n", - "240 | \n", - "4888795840 | \n", - "58 | \n", - "58 | \n", - "treeio/account/forms.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 241 | \n", - "241 | \n", - "4888795840 | \n", - "59 | \n", - "59 | \n", - "treeio/account/views.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 242 | \n", - "242 | \n", - "4888795840 | \n", - "60 | \n", - "60 | \n", - "treeio/core/administration/views.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 243 | \n", - "243 | \n", - "4888795840 | \n", - "61 | \n", - "61 | \n", - "treeio/core/api/doc.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 244 | \n", - "244 | \n", - "4888795840 | \n", - "62 | \n", - "62 | \n", - "treeio/core/auth.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 245 | \n", - "245 | \n", - "4888795840 | \n", - "63 | \n", - "63 | \n", - "treeio/core/contrib/messages/storage/cache.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 246 | \n", - "246 | \n", - "4888795840 | \n", - "64 | \n", - "64 | \n", - "treeio/core/dashboard/views.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 247 | \n", - "247 | \n", - "4888795840 | \n", - "65 | \n", - "65 | \n", - "treeio/core/db/creation.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 248 | \n", - "248 | \n", - "4888795840 | \n", - "66 | \n", - "66 | \n", - "treeio/core/forms.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 249 | \n", - "249 | \n", - "4888795840 | \n", - "67 | \n", - "67 | \n", - "treeio/core/mail.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 250 | \n", - "250 | \n", - "4888795840 | \n", - "68 | \n", - "68 | \n", - "treeio/core/management/commands/runcron.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 251 | \n", - "251 | \n", - "4888795840 | \n", - "69 | \n", - "69 | \n", - "treeio/core/models.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 252 | \n", - "252 | \n", - "4888795840 | \n", - "70 | \n", - "70 | \n", - "treeio/core/rendering.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 253 | \n", - "253 | \n", - "4888795840 | \n", - "71 | \n", - "71 | \n", - "treeio/core/rss.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 254 | \n", - "254 | \n", - "4888795840 | \n", - "72 | \n", - "72 | \n", - "treeio/core/search/models.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 255 | \n", - "255 | \n", - "4888795840 | \n", - "73 | \n", - "73 | \n", - "treeio/core/templatetags/modules.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 256 | \n", - "256 | \n", - "4888795840 | \n", - "74 | \n", - "74 | \n", - "treeio/core/templatetags/user.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 257 | \n", - "257 | \n", - "4888795840 | \n", - "75 | \n", - "75 | \n", - "treeio/core/trash/views.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 258 | \n", - "258 | \n", - "4888795840 | \n", - "76 | \n", - "76 | \n", - "treeio/core/views.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 259 | \n", - "259 | \n", - "4888795840 | \n", - "77 | \n", - "77 | \n", - "treeio/documents/forms.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 260 | \n", - "260 | \n", - "4888795840 | \n", - "78 | \n", - "78 | \n", - "treeio/events/forms.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 261 | \n", - "261 | \n", - "4888795840 | \n", - "79 | \n", - "79 | \n", - "treeio/events/rendering.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 262 | \n", - "262 | \n", - "4888795840 | \n", - "80 | \n", - "80 | \n", - "treeio/finance/api/handlers.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 263 | \n", - "263 | \n", - "4888795840 | \n", - "81 | \n", - "81 | \n", - "treeio/finance/forms.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 264 | \n", - "264 | \n", - "4888795840 | \n", - "82 | \n", - "82 | \n", - "treeio/finance/models.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 265 | \n", - "265 | \n", - "4888795840 | \n", - "83 | \n", - "83 | \n", - "treeio/finance/views.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 266 | \n", - "266 | \n", - "4888795840 | \n", - "84 | \n", - "84 | \n", - "treeio/identities/integration.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 267 | \n", - "267 | \n", - "4888795840 | \n", - "85 | \n", - "85 | \n", - "treeio/identities/models.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 268 | \n", - "268 | \n", - "4888795840 | \n", - "86 | \n", - "86 | \n", - "treeio/identities/objects.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 269 | \n", - "269 | \n", - "4888795840 | \n", - "87 | \n", - "87 | \n", - "treeio/messaging/api/handlers.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 270 | \n", - "270 | \n", - "4888795840 | \n", - "88 | \n", - "88 | \n", - "treeio/messaging/emails.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 271 | \n", - "271 | \n", - "4888795840 | \n", - "89 | \n", - "89 | \n", - "treeio/messaging/forms.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 272 | \n", - "272 | \n", - "4888795840 | \n", - "90 | \n", - "90 | \n", - "treeio/messaging/views.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 273 | \n", - "273 | \n", - "4888795840 | \n", - "91 | \n", - "91 | \n", - "treeio/news/forms.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 274 | \n", - "274 | \n", - "4888795840 | \n", - "92 | \n", - "92 | \n", - "treeio/projects/ajax.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 275 | \n", - "275 | \n", - "4888795840 | \n", - "93 | \n", - "93 | \n", - "treeio/projects/identities.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 276 | \n", - "276 | \n", - "4888795840 | \n", - "94 | \n", - "94 | \n", - "treeio/reports/templatetags/reports.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 277 | \n", - "277 | \n", - "4888795840 | \n", - "95 | \n", - "95 | \n", - "treeio/sales/forms.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 278 | \n", - "278 | \n", - "4888795840 | \n", - "96 | \n", - "96 | \n", - "treeio/sales/models.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 279 | \n", - "279 | \n", - "4888795840 | \n", - "97 | \n", - "97 | \n", - "treeio/services/api/handlers.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 280 | \n", - "280 | \n", - "4888795840 | \n", - "98 | \n", - "98 | \n", - "treeio/services/forms.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 281 | \n", - "281 | \n", - "4888795840 | \n", - "99 | \n", - "99 | \n", - "treeio/services/identities.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 282 | \n", - "282 | \n", - "4888795840 | \n", - "100 | \n", - "100 | \n", - "treeio/services/models.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 283 | \n", - "283 | \n", - "4888795840 | \n", - "101 | \n", - "101 | \n", - "treeio/services/views.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 284 | \n", - "284 | \n", - "4888795840 | \n", - "102 | \n", - "102 | \n", - "treeio/core/api/utils.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 285 | \n", - "285 | \n", - "4888795840 | \n", - "103 | \n", - "103 | \n", - "treeio/projects/views.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 286 | \n", - "286 | \n", - "4888795840 | \n", - "104 | \n", - "104 | \n", - "treeio/core/sanitizer.py | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 287 | \n", - "287 | \n", - "4890225536 | \n", - "0 | \n", - "0 | \n", - "static/js/fileuploader.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 288 | \n", - "288 | \n", - "4890225536 | \n", - "1 | \n", - "1 | \n", - "static/js/hardtree.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 289 | \n", - "289 | \n", - "4890225536 | \n", - "2 | \n", - "2 | \n", - "static/js/jquery-ui-1.10.3/demos/accordion/hoverintent.html | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 290 | \n", - "290 | \n", - "4890225536 | \n", - "3 | \n", - "3 | \n", - "static/js/jquery.ganttView.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 291 | \n", - "291 | \n", - "4890225536 | \n", - "4 | \n", - "4 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/advimage/js/image.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 292 | \n", - "292 | \n", - "4890225536 | \n", - "5 | \n", - "5 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/advlink/js/advlink.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 293 | \n", - "293 | \n", - "4890225536 | \n", - "6 | \n", - "6 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/contextmenu/editor_plugin_src.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 294 | \n", - "294 | \n", - "4890225536 | \n", - "7 | \n", - "7 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/emotions/js/emotions.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 295 | \n", - "295 | \n", - "4890225536 | \n", - "8 | \n", - "8 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/fullpage/editor_plugin_src.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 296 | \n", - "296 | \n", - "4890225536 | \n", - "9 | \n", - "9 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/fullscreen/editor_plugin_src.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 297 | \n", - "297 | \n", - "4890225536 | \n", - "10 | \n", - "10 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/fullscreen/fullscreen.htm | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 298 | \n", - "298 | \n", - "4890225536 | \n", - "11 | \n", - "11 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin_src.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 299 | \n", - "299 | \n", - "4890225536 | \n", - "12 | \n", - "12 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/layer/editor_plugin_src.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 300 | \n", - "300 | \n", - "4890225536 | \n", - "13 | \n", - "13 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/legacyoutput/editor_plugin_src.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 301 | \n", - "301 | \n", - "4890225536 | \n", - "14 | \n", - "14 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/lists/editor_plugin_src.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 302 | \n", - "302 | \n", - "4890225536 | \n", - "15 | \n", - "15 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 303 | \n", - "303 | \n", - "4890225536 | \n", - "16 | \n", - "16 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/media/js/media.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 304 | \n", - "304 | \n", - "4890225536 | \n", - "17 | \n", - "17 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin_src.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 305 | \n", - "305 | \n", - "4890225536 | \n", - "18 | \n", - "18 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/save/editor_plugin_src.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 306 | \n", - "306 | \n", - "4890225536 | \n", - "19 | \n", - "19 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/searchreplace/js/searchreplace.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 307 | \n", - "307 | \n", - "4890225536 | \n", - "20 | \n", - "20 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/spellchecker/editor_plugin_src.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 308 | \n", - "308 | \n", - "4890225536 | \n", - "21 | \n", - "21 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/style/js/props.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 309 | \n", - "309 | \n", - "4890225536 | \n", - "22 | \n", - "22 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/tabfocus/editor_plugin_src.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 310 | \n", - "310 | \n", - "4890225536 | \n", - "23 | \n", - "23 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin_src.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 311 | \n", - "311 | \n", - "4890225536 | \n", - "24 | \n", - "24 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/table/js/cell.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 312 | \n", - "312 | \n", - "4890225536 | \n", - "25 | \n", - "25 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/template/js/template.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 313 | \n", - "313 | \n", - "4890225536 | \n", - "26 | \n", - "26 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin_src.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 314 | \n", - "314 | \n", - "4890225536 | \n", - "27 | \n", - "27 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/element_common.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 315 | \n", - "315 | \n", - "4890225536 | \n", - "28 | \n", - "28 | \n", - "static/js/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 316 | \n", - "316 | \n", - "4890225536 | \n", - "29 | \n", - "29 | \n", - "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/anchor.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 317 | \n", - "317 | \n", - "4890225536 | \n", - "30 | \n", - "30 | \n", - "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/charmap.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 318 | \n", - "318 | \n", - "4890225536 | \n", - "31 | \n", - "31 | \n", - "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 319 | \n", - "319 | \n", - "4890225536 | \n", - "32 | \n", - "32 | \n", - "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/image.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 320 | \n", - "320 | \n", - "4890225536 | \n", - "33 | \n", - "33 | \n", - "static/js/tinymce/jscripts/tiny_mce/themes/advanced/js/link.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 321 | \n", - "321 | \n", - "4890225536 | \n", - "34 | \n", - "34 | \n", - "static/js/tinymce/jscripts/tiny_mce/utils/editable_selects.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 322 | \n", - "322 | \n", - "4890225536 | \n", - "35 | \n", - "35 | \n", - "static/js/tinymce/jscripts/tiny_mce/utils/mctabs.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 323 | \n", - "323 | \n", - "4890225536 | \n", - "36 | \n", - "36 | \n", - "static/js/tinymce/jscripts/tiny_mce/utils/validate.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 324 | \n", - "324 | \n", - "4890225536 | \n", - "37 | \n", - "37 | \n", - "static/mobile/jquery.mobile.scrollview.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 325 | \n", - "325 | \n", - "4890225536 | \n", - "38 | \n", - "38 | \n", - "templates/html/core/billing/upgrade.html | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 326 | \n", - "326 | \n", - "4890225536 | \n", - "39 | \n", - "39 | \n", - "static/js/12o_super_mini.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 327 | \n", - "327 | \n", - "4890225536 | \n", - "40 | \n", - "40 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin_src.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 328 | \n", - "328 | \n", - "4890225536 | \n", - "41 | \n", - "41 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/wordcount/editor_plugin_src.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 329 | \n", - "329 | \n", - "4890225536 | \n", - "42 | \n", - "42 | \n", - "static/js/chat.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 330 | \n", - "330 | \n", - "4890225536 | \n", - "43 | \n", - "43 | \n", - "static/js/jquery-ui-1.10.3/demos/effect/easing.html | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 331 | \n", - "331 | \n", - "4890225536 | \n", - "44 | \n", - "44 | \n", - "static/js/jquery.gritter.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 332 | \n", - "332 | \n", - "4890225536 | \n", - "45 | \n", - "45 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/style/editor_plugin_src.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 333 | \n", - "333 | \n", - "4890225536 | \n", - "46 | \n", - "46 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/table/js/table.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 334 | \n", - "334 | \n", - "4890225536 | \n", - "47 | \n", - "47 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/template/editor_plugin_src.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 335 | \n", - "335 | \n", - "4890225536 | \n", - "48 | \n", - "48 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/attributes.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 336 | \n", - "336 | \n", - "4890225536 | \n", - "49 | \n", - "49 | \n", - "static/js/tinymce/jscripts/tiny_mce/utils/form_utils.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 337 | \n", - "337 | \n", - "4890225536 | \n", - "50 | \n", - "50 | \n", - "static/mobile/jquery.mobile.forms.ajaxform.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 338 | \n", - "338 | \n", - "4890225536 | \n", - "51 | \n", - "51 | \n", - "static/js/colorbox/example1/index.html | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 339 | \n", - "339 | \n", - "4890225536 | \n", - "52 | \n", - "52 | \n", - "static/js/colorbox/example2/index.html | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 340 | \n", - "340 | \n", - "4890225536 | \n", - "53 | \n", - "53 | \n", - "static/js/colorbox/example3/index.html | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 341 | \n", - "341 | \n", - "4890225536 | \n", - "54 | \n", - "54 | \n", - "static/js/colorbox/example4/index.html | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 342 | \n", - "342 | \n", - "4890225536 | \n", - "55 | \n", - "55 | \n", - "static/js/colorbox/example5/index.html | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 343 | \n", - "343 | \n", - "4890225536 | \n", - "56 | \n", - "56 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/media/js/embed.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 344 | \n", - "344 | \n", - "4890225536 | \n", - "57 | \n", - "57 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/preview/jscripts/embed.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 345 | \n", - "345 | \n", - "4890225536 | \n", - "58 | \n", - "58 | \n", - "static/js/tinymce/jscripts/tiny_mce/plugins/preview/preview.html | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 346 | \n", - "346 | \n", - "4890225536 | \n", - "59 | \n", - "59 | \n", - "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 347 | \n", - "347 | \n", - "4890225536 | \n", - "60 | \n", - "60 | \n", - "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 348 | \n", - "348 | \n", - "4890225536 | \n", - "61 | \n", - "61 | \n", - "static/js/jquery-ui-1.10.3/ui/jquery.ui.resizable.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 349 | \n", - "349 | \n", - "4890225536 | \n", - "62 | \n", - "62 | \n", - "static/js/jquery-ui-1.10.3/ui/jquery.ui.slider.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 350 | \n", - "350 | \n", - "4890225536 | \n", - "63 | \n", - "63 | \n", - "static/js/tinymce/jscripts/tiny_mce/themes/simple/editor_template_src.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 351 | \n", - "351 | \n", - "4890225536 | \n", - "64 | \n", - "64 | \n", - "templates/html/core/administration/settings_view.html | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 352 | \n", - "352 | \n", - "4890225536 | \n", - "65 | \n", - "65 | \n", - "templates/html/core/database_setup.html | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 353 | \n", - "353 | \n", - "4890225536 | \n", - "66 | \n", - "66 | \n", - "static/js/jquery.ba-serializeobject.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 354 | \n", - "354 | \n", - "4890225536 | \n", - "67 | \n", - "67 | \n", - "static/js/jquery-ui-1.10.3/ui/jquery.ui.button.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 355 | \n", - "355 | \n", - "4890225536 | \n", - "68 | \n", - "68 | \n", - "static/js/jquery-ui-1.10.3/ui/jquery.ui.tabs.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 356 | \n", - "356 | \n", - "4890225536 | \n", - "69 | \n", - "69 | \n", - "static/js/jquery-ui-1.10.3/ui/jquery.ui.sortable.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 357 | \n", - "357 | \n", - "4890225536 | \n", - "70 | \n", - "70 | \n", - "static/js/jquery-ui-1.10.3/ui/jquery.ui.droppable.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 358 | \n", - "358 | \n", - "4890225536 | \n", - "71 | \n", - "71 | \n", - "static/js/jquery-ui-1.10.3/ui/jquery-ui.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 359 | \n", - "359 | \n", - "4890225536 | \n", - "72 | \n", - "72 | \n", - "static/js/jquery-ui-custom.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 360 | \n", - "360 | \n", - "4890225536 | \n", - "73 | \n", - "73 | \n", - "static/js/jquery-ui-1.10.3/ui/jquery.ui.position.js | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 361 | \n", - "361 | \n", - "4890225536 | \n", - "74 | \n", - "74 | \n", - "static/js/jquery-ui-1.10.3/demos/droppable/photo-manager.html | \n", - "%SRCROOT% | \n", - "|||||||||||||||||||||||||||||||||||||||||||||
| 362 | \n", - "362 | \n", - "4890225536 | \n", - "75 | \n", - "75 | \n", - "static/js/jquery-ui-1.10.3/demos/tabs/manipulation.html | \n", - "%SRCROOT% | \n", + "results_array_id | \n", + "4811936896 | \n", + "4811936896 | \n", + "4811936896 | \n", + "4811936896 | \n", + "4811936896 | \n", + "4811936896 | \n", + "4811936896 | \n", + "4811936896 | \n", + "4811936896 | \n", + "4811936896 | \n", + "4811936896 | \n", + "4811936896 | \n", + "4811936896 | \n", + "4811936896 | \n", + "4811936896 | \n", + "4811936896 | \n", + "4811936896 | \n", + "4811936896 | \n", + "4811936896 | \n", + "4814398336 | \n", + "4814398336 | \n", + "4814398336 | \n", + "4815880320 | \n", + "4815880320 | \n", + "4815880320 | \n", + "4817297216 | \n", + "4817297216 | \n", + "4817297216 | \n", + "4817297216 | \n", + "4817297216 | \n", + "4817297216 | \n", + "4817297216 | \n", + "4817297216 | \n", + "4817297216 | \n", + "4817297216 | \n", + "4817297216 | \n", + "4817297216 | \n", + "4817297216 | \n", + "4817297216 | \n", + "4817297216 | \n", + "4817297216 | \n", + "4817297216 | \n", + "4817297216 | \n", + "4817297216 | \n", + "
| results_array_index | \n", + "564 | \n", + "564 | \n", + "564 | \n", + "565 | \n", + "566 | \n", + "567 | \n", + "568 | \n", + "569 | \n", + "570 | \n", + "570 | \n", + "570 | \n", + "571 | \n", + "572 | \n", + "573 | \n", + "576 | \n", + "576 | \n", + "576 | \n", + "576 | \n", + "576 | \n", + "347 | \n", + "348 | \n", + "349 | \n", + "347 | \n", + "348 | \n", + "349 | \n", + "428 | \n", + "428 | \n", + "428 | \n", + "429 | \n", + "430 | \n", + "431 | \n", + "432 | \n", + "433 | \n", + "434 | \n", + "434 | \n", + "434 | \n", + "435 | \n", + "436 | \n", + "437 | \n", + "439 | \n", + "439 | \n", + "439 | \n", + "439 | \n", + "439 | \n", + "|||||||
| codeFlows_id | \n", + "4814103296 | \n", + "4814103296 | \n", + "4814103296 | \n", + "4814165952 | \n", + "4814195776 | \n", + "4814211008 | \n", + "4814225472 | \n", + "4814227584 | \n", + "4814237952 | \n", + "4814237952 | \n", + "4814237952 | \n", + "4814241472 | \n", + "4814253120 | \n", + "4814264256 | \n", + "4814296320 | \n", + "4814296320 | \n", + "4814296320 | \n", + "4814296320 | \n", + "4814296320 | \n", + "4815798784 | \n", + "4815800512 | \n", + "4815822080 | \n", + "4817233600 | \n", + "4817235328 | \n", + "4817240576 | \n", + "4818978240 | \n", + "4818978240 | \n", + "4818978240 | \n", + "4819040896 | \n", + "4819070720 | \n", + "4819085952 | \n", + "4819075840 | \n", + "4819077952 | \n", + "4819112896 | \n", + "4819112896 | \n", + "4819112896 | \n", + "4819124672 | \n", + "4819128064 | \n", + "4819143296 | \n", + "4819155264 | \n", + "4819155264 | \n", + "4819155264 | \n", + "4819155264 | \n", + "4819155264 | \n", + "|||||||
| ruleId | \n", + "com.lgtm/javascript-queries:js/unsafe-jquery-plugin | \n", + "com.lgtm/javascript-queries:js/unsafe-jquery-plugin | \n", + "com.lgtm/javascript-queries:js/unsafe-jquery-plugin | \n", + "com.lgtm/javascript-queries:js/unsafe-jquery-plugin | \n", + "com.lgtm/javascript-queries:js/xss-through-dom | \n", + "com.lgtm/javascript-queries:js/xss-through-dom | \n", + "com.lgtm/javascript-queries:js/xss-through-dom | \n", + "com.lgtm/javascript-queries:js/xss-through-dom | \n", + "com.lgtm/javascript-queries:js/xss-through-dom | \n", + "com.lgtm/javascript-queries:js/xss-through-dom | \n", + "com.lgtm/javascript-queries:js/xss-through-dom | \n", + "com.lgtm/javascript-queries:js/xss-through-dom | \n", + "com.lgtm/javascript-queries:js/xss-through-dom | \n", + "com.lgtm/javascript-queries:js/xss-through-dom | \n", + "com.lgtm/javascript-queries:js/html-constructed-from-input | \n", + "com.lgtm/javascript-queries:js/html-constructed-from-input | \n", + "com.lgtm/javascript-queries:js/html-constructed-from-input | \n", + "com.lgtm/javascript-queries:js/html-constructed-from-input | \n", + "com.lgtm/javascript-queries:js/html-constructed-from-input | \n", + "com.lgtm/python-queries:py/stack-trace-exposure | \n", + "com.lgtm/python-queries:py/stack-trace-exposure | \n", + "com.lgtm/python-queries:py/stack-trace-exposure | \n", + "com.lgtm/python-queries:py/stack-trace-exposure | \n", + "com.lgtm/python-queries:py/stack-trace-exposure | \n", + "com.lgtm/python-queries:py/stack-trace-exposure | \n", + "com.lgtm/javascript-queries:js/unsafe-jquery-plugin | \n", + "com.lgtm/javascript-queries:js/unsafe-jquery-plugin | \n", + "com.lgtm/javascript-queries:js/unsafe-jquery-plugin | \n", + "com.lgtm/javascript-queries:js/unsafe-jquery-plugin | \n", + "com.lgtm/javascript-queries:js/xss-through-dom | \n", + "com.lgtm/javascript-queries:js/xss-through-dom | \n", + "com.lgtm/javascript-queries:js/xss-through-dom | \n", + "com.lgtm/javascript-queries:js/xss-through-dom | \n", + "com.lgtm/javascript-queries:js/xss-through-dom | \n", + "com.lgtm/javascript-queries:js/xss-through-dom | \n", + "com.lgtm/javascript-queries:js/xss-through-dom | \n", + "com.lgtm/javascript-queries:js/xss-through-dom | \n", + "com.lgtm/javascript-queries:js/xss-through-dom | \n", + "com.lgtm/javascript-queries:js/xss-through-dom | \n", + "com.lgtm/javascript-queries:js/html-constructed-from-input | \n", + "com.lgtm/javascript-queries:js/html-constructed-from-input | \n", + "com.lgtm/javascript-queries:js/html-constructed-from-input | \n", + "com.lgtm/javascript-queries:js/html-constructed-from-input | \n", + "com.lgtm/javascript-queries:js/html-constructed-from-input | \n", + "|||||||
| ruleIndex | \n", + "31 | \n", + "31 | \n", + "31 | \n", + "31 | \n", + "32 | \n", + "32 | \n", + "32 | \n", + "32 | \n", + "32 | \n", + "32 | \n", + "32 | \n", + "32 | \n", + "32 | \n", + "32 | \n", + "34 | \n", + "34 | \n", + "34 | \n", + "34 | \n", + "34 | \n", + "11 | \n", + "11 | \n", + "11 | \n", + "11 | \n", + "11 | \n", + "11 | \n", + "28 | \n", + "28 | \n", + "28 | \n", + "28 | \n", + "29 | \n", + "29 | \n", + "29 | \n", + "29 | \n", + "29 | \n", + "29 | \n", + "29 | \n", + "29 | \n", + "29 | \n", + "29 | \n", + "31 | \n", + "31 | \n", + "31 | \n", + "31 | \n", + "31 | \n", + "|||||||
| location_array_index | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "|||||||
| location_id | \n", + "-1 | \n", + "-1 | \n", + "-1 | \n", + "-1 | \n", + "-1 | \n", + "-1 | \n", + "-1 | \n", + "-1 | \n", + "-1 | \n", + "-1 | \n", + "-1 | \n", + "-1 | \n", + "-1 | \n", + "-1 | \n", + "-1 | \n", + "-1 | \n", + "-1 | \n", + "-1 | \n", + "-1 | \n", + "-1 | \n", + "-1 | \n", + "-1 | \n", + "-1 | \n", + "-1 | \n", + "-1 | \n", + "-1 | \n", + "-1 | \n", + "-1 | \n", + "-1 | \n", + "-1 | \n", + "-1 | \n", + "-1 | \n", + "-1 | \n", + "-1 | \n", + "-1 | \n", + "-1 | \n", + "-1 | \n", + "-1 | \n", + "-1 | \n", + "-1 | \n", + "-1 | \n", + "-1 | \n", + "-1 | \n", + "-1 | \n", + "|||||||
| location_endColumn | \n", + "14 | \n", + "14 | \n", + "14 | \n", + "25 | \n", + "118 | \n", + "50 | \n", + "47 | \n", + "125 | \n", + "14 | \n", + "14 | \n", + "14 | \n", + "109 | \n", + "90 | \n", + "75 | \n", + "75 | \n", + "75 | \n", + "75 | \n", + "75 | \n", + "75 | \n", + "33 | \n", + "33 | \n", + "33 | \n", + "33 | \n", + "33 | \n", + "33 | \n", + "14 | \n", + "14 | \n", + "14 | \n", + "25 | \n", + "118 | \n", + "50 | \n", + "47 | \n", + "125 | \n", + "14 | \n", + "14 | \n", + "14 | \n", + "109 | \n", + "90 | \n", + "75 | \n", + "75 | \n", + "75 | \n", + "75 | \n", + "75 | \n", + "75 | \n", + "|||||||
| location_endLine | \n", + "1027 | \n", + "1027 | \n", + "1027 | \n", + "126 | \n", + "4666 | \n", + "6128 | \n", + "547 | \n", + "494 | \n", + "93 | \n", + "93 | \n", + "93 | \n", + "109 | \n", + "61 | \n", + "65 | \n", + "196 | \n", + "196 | \n", + "196 | \n", + "196 | \n", + "196 | \n", + "395 | \n", + "429 | \n", + "466 | \n", + "395 | \n", + "429 | \n", + "466 | \n", + "1027 | \n", + "1027 | \n", + "1027 | \n", + "126 | \n", + "4666 | \n", + "6128 | \n", + "547 | \n", + "494 | \n", + "93 | \n", + "93 | \n", + "93 | \n", + "109 | \n", + "61 | \n", + "65 | \n", + "196 | \n", + "196 | \n", + "196 | \n", + "196 | \n", + "196 | \n", + "|||||||
| location_startColumn | \n", + "6 | \n", + "6 | \n", + "6 | \n", + "15 | \n", + "24 | \n", + "36 | \n", + "33 | \n", + "31 | \n", + "35 | \n", + "35 | \n", + "35 | \n", + "18 | \n", + "13 | \n", + "17 | \n", + "65 | \n", + "65 | \n", + "65 | \n", + "65 | \n", + "65 | \n", + "29 | \n", + "29 | \n", + "29 | \n", + "29 | \n", + "29 | \n", + "29 | \n", + "6 | \n", + "6 | \n", + "6 | \n", + "15 | \n", + "24 | \n", + "36 | \n", + "33 | \n", + "31 | \n", + "35 | \n", + "35 | \n", + "35 | \n", + "18 | \n", + "13 | \n", + "17 | \n", + "65 | \n", + "65 | \n", + "65 | \n", + "65 | \n", + "65 | \n", + "|||||||
| location_startLine | \n", + "1027 | \n", + "1027 | \n", + "1027 | \n", + "126 | \n", + "4666 | \n", + "6128 | \n", + "547 | \n", + "494 | \n", + "89 | \n", + "89 | \n", + "89 | \n", + "109 | \n", + "61 | \n", + "65 | \n", + "196 | \n", + "196 | \n", + "196 | \n", + "196 | \n", + "196 | \n", + "395 | \n", + "429 | \n", + "466 | \n", + "395 | \n", + "429 | \n", + "466 | \n", + "1027 | \n", + "1027 | \n", + "1027 | \n", + "126 | \n", + "4666 | \n", + "6128 | \n", + "547 | \n", + "494 | \n", + "89 | \n", + "89 | \n", + "89 | \n", + "109 | \n", + "61 | \n", + "65 | \n", + "196 | \n", + "196 | \n", + "196 | \n", + "196 | \n", + "196 | \n", + "|||||||
| location_index | \n", + "61 | \n", + "61 | \n", + "61 | \n", + "74 | \n", + "40 | \n", + "40 | \n", + "43 | \n", + "1 | \n", + "60 | \n", + "60 | \n", + "60 | \n", + "75 | \n", + "76 | \n", + "76 | \n", + "61 | \n", + "61 | \n", + "61 | \n", + "61 | \n", + "61 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "60 | \n", + "60 | \n", + "60 | \n", + "73 | \n", + "39 | \n", + "39 | \n", + "42 | \n", + "1 | \n", + "59 | \n", + "59 | \n", + "59 | \n", + "74 | \n", + "75 | \n", + "75 | \n", + "60 | \n", + "60 | \n", + "60 | \n", + "60 | \n", + "60 | \n", + "|||||||
| location_uri | \n", + "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js | \n", + "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js | \n", + "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js | \n", + "static/js/jquery-ui-1.10.3/ui/jquery.ui.position.js | \n", + "static/js/12o_super_mini.js | \n", + "static/js/12o_super_mini.js | \n", + "static/js/chat.js | \n", + "static/js/hardtree.js | \n", + "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html | \n", + "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html | \n", + "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html | \n", + "static/js/jquery-ui-1.10.3/demos/droppable/photo-manager.html | \n", + "static/js/jquery-ui-1.10.3/demos/tabs/manipulation.html | \n", + "static/js/jquery-ui-1.10.3/demos/tabs/manipulation.html | \n", + "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js | \n", + "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js | \n", + "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js | \n", + "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js | \n", + "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js | \n", + "treeio/core/middleware/chat.py | \n", + "treeio/core/middleware/chat.py | \n", + "treeio/core/middleware/chat.py | \n", + "treeio/core/middleware/chat.py | \n", + "treeio/core/middleware/chat.py | \n", + "treeio/core/middleware/chat.py | \n", + "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js | \n", + "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js | \n", + "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js | \n", + "static/js/jquery-ui-1.10.3/ui/jquery.ui.position.js | \n", + "static/js/12o_super_mini.js | \n", + "static/js/12o_super_mini.js | \n", + "static/js/chat.js | \n", + "static/js/hardtree.js | \n", + "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html | \n", + "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html | \n", + "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html | \n", + "static/js/jquery-ui-1.10.3/demos/droppable/photo-manager.html | \n", + "static/js/jquery-ui-1.10.3/demos/tabs/manipulation.html | \n", + "static/js/jquery-ui-1.10.3/demos/tabs/manipulation.html | \n", + "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js | \n", + "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js | \n", + "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js | \n", + "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js | \n", + "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js | \n", + "|||||||
| location_uriBaseId | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "|||||||
| location_message | \n", + "scli-dyys dummy value | \n", + "scli-dyys dummy value | \n", + "scli-dyys dummy value | \n", + "scli-dyys dummy value | \n", + "scli-dyys dummy value | \n", + "scli-dyys dummy value | \n", + "scli-dyys dummy value | \n", + "scli-dyys dummy value | \n", + "scli-dyys dummy value | \n", + "scli-dyys dummy value | \n", + "scli-dyys dummy value | \n", + "scli-dyys dummy value | \n", + "scli-dyys dummy value | \n", + "scli-dyys dummy value | \n", + "scli-dyys dummy value | \n", + "scli-dyys dummy value | \n", + "scli-dyys dummy value | \n", + "scli-dyys dummy value | \n", + "scli-dyys dummy value | \n", + "scli-dyys dummy value | \n", + "scli-dyys dummy value | \n", + "scli-dyys dummy value | \n", + "scli-dyys dummy value | \n", + "scli-dyys dummy value | \n", + "scli-dyys dummy value | \n", + "scli-dyys dummy value | \n", + "scli-dyys dummy value | \n", + "scli-dyys dummy value | \n", + "scli-dyys dummy value | \n", + "scli-dyys dummy value | \n", + "scli-dyys dummy value | \n", + "scli-dyys dummy value | \n", + "scli-dyys dummy value | \n", + "scli-dyys dummy value | \n", + "scli-dyys dummy value | \n", + "scli-dyys dummy value | \n", + "scli-dyys dummy value | \n", + "scli-dyys dummy value | \n", + "scli-dyys dummy value | \n", + "scli-dyys dummy value | \n", + "scli-dyys dummy value | \n", + "scli-dyys dummy value | \n", + "scli-dyys dummy value | \n", + "scli-dyys dummy value | \n", + "|||||||
| relatedLocation_array_index | \n", + "0 | \n", + "1 | \n", + "2 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "1 | \n", + "2 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "1 | \n", + "2 | \n", + "3 | \n", + "4 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "1 | \n", + "2 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "1 | \n", + "2 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "1 | \n", + "2 | \n", + "3 | \n", + "4 | \n", + "|||||||
| relatedLocation_id | \n", + "1 | \n", + "2 | \n", + "3 | \n", + "1 | \n", + "1 | \n", + "1 | \n", + "1 | \n", + "1 | \n", + "1 | \n", + "2 | \n", + "3 | \n", + "1 | \n", + "1 | \n", + "1 | \n", + "1 | \n", + "2 | \n", + "3 | \n", + "4 | \n", + "5 | \n", + "1 | \n", + "1 | \n", + "1 | \n", + "1 | \n", + "1 | \n", + "1 | \n", + "1 | \n", + "2 | \n", + "3 | \n", + "1 | \n", + "1 | \n", + "1 | \n", + "1 | \n", + "1 | \n", + "1 | \n", + "2 | \n", + "3 | \n", + "1 | \n", + "1 | \n", + "1 | \n", + "1 | \n", + "2 | \n", + "3 | \n", + "4 | \n", + "5 | \n", + "|||||||
| relatedLocation_endColumn | \n", + "2 | \n", + "2 | \n", + "159 | \n", + "2 | \n", + "68 | \n", + "50 | \n", + "47 | \n", + "75 | \n", + "27 | \n", + "28 | \n", + "31 | \n", + "50 | \n", + "30 | \n", + "38 | \n", + "75 | \n", + "35 | \n", + "87 | \n", + "35 | \n", + "11 | \n", + "64 | \n", + "64 | \n", + "64 | \n", + "64 | \n", + "64 | \n", + "64 | \n", + "2 | \n", + "2 | \n", + "159 | \n", + "2 | \n", + "68 | \n", + "50 | \n", + "47 | \n", + "75 | \n", + "27 | \n", + "28 | \n", + "31 | \n", + "50 | \n", + "30 | \n", + "38 | \n", + "75 | \n", + "35 | \n", + "87 | \n", + "35 | \n", + "11 | \n", + "|||||||
| relatedLocation_endLine | \n", + "9631 | \n", + "2031 | \n", + "542 | \n", + "295 | \n", + "4666 | \n", + "6128 | \n", + "547 | \n", + "494 | \n", + "90 | \n", + "91 | \n", + "92 | \n", + "103 | \n", + "59 | \n", + "62 | \n", + "196 | \n", + "9598 | \n", + "196 | \n", + "1998 | \n", + "541 | \n", + "394 | \n", + "428 | \n", + "465 | \n", + "394 | \n", + "428 | \n", + "465 | \n", + "9631 | \n", + "2031 | \n", + "542 | \n", + "295 | \n", + "4666 | \n", + "6128 | \n", + "547 | \n", + "494 | \n", + "90 | \n", + "91 | \n", + "92 | \n", + "103 | \n", + "59 | \n", + "62 | \n", + "196 | \n", + "9598 | \n", + "196 | \n", + "1998 | \n", + "541 | \n", + "|||||||
| relatedLocation_startColumn | \n", + "19 | \n", + "19 | \n", + "1 | \n", + "17 | \n", + "54 | \n", + "36 | \n", + "33 | \n", + "61 | \n", + "17 | \n", + "17 | \n", + "17 | \n", + "13 | \n", + "16 | \n", + "22 | \n", + "65 | \n", + "28 | \n", + "20 | \n", + "28 | \n", + "10 | \n", + "50 | \n", + "50 | \n", + "50 | \n", + "50 | \n", + "50 | \n", + "50 | \n", + "19 | \n", + "19 | \n", + "1 | \n", + "17 | \n", + "54 | \n", + "36 | \n", + "33 | \n", + "61 | \n", + "17 | \n", + "17 | \n", + "17 | \n", + "13 | \n", + "16 | \n", + "22 | \n", + "65 | \n", + "28 | \n", + "20 | \n", + "28 | \n", + "10 | \n", + "|||||||
| relatedLocation_startLine | \n", + "9598 | \n", + "1998 | \n", + "541 | \n", + "117 | \n", + "4666 | \n", + "6128 | \n", + "547 | \n", + "494 | \n", + "90 | \n", + "91 | \n", + "92 | \n", + "103 | \n", + "59 | \n", + "62 | \n", + "196 | \n", + "9598 | \n", + "196 | \n", + "1998 | \n", + "541 | \n", + "394 | \n", + "428 | \n", + "465 | \n", + "394 | \n", + "428 | \n", + "465 | \n", + "9598 | \n", + "1998 | \n", + "541 | \n", + "117 | \n", + "4666 | \n", + "6128 | \n", + "547 | \n", + "494 | \n", + "90 | \n", + "91 | \n", + "92 | \n", + "103 | \n", + "59 | \n", + "62 | \n", + "196 | \n", + "9598 | \n", + "196 | \n", + "1998 | \n", + "541 | \n", + "|||||||
| relatedLocation_index | \n", + "72 | \n", + "61 | \n", + "73 | \n", + "74 | \n", + "40 | \n", + "40 | \n", + "43 | \n", + "1 | \n", + "60 | \n", + "60 | \n", + "60 | \n", + "75 | \n", + "76 | \n", + "76 | \n", + "61 | \n", + "72 | \n", + "61 | \n", + "61 | \n", + "73 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "0 | \n", + "71 | \n", + "60 | \n", + "72 | \n", + "73 | \n", + "39 | \n", + "39 | \n", + "42 | \n", + "1 | \n", + "59 | \n", + "59 | \n", + "59 | \n", + "74 | \n", + "75 | \n", + "75 | \n", + "60 | \n", + "71 | \n", + "60 | \n", + "60 | \n", + "72 | \n", + "|||||||
| relatedLocation_uri | \n", + "static/js/jquery-ui-1.10.3/ui/jquery-ui.js | \n", + "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js | \n", + "static/js/jquery-ui-custom.js | \n", + "static/js/jquery-ui-1.10.3/ui/jquery.ui.position.js | \n", + "static/js/12o_super_mini.js | \n", + "static/js/12o_super_mini.js | \n", + "static/js/chat.js | \n", + "static/js/hardtree.js | \n", + "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html | \n", + "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html | \n", + "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html | \n", + "static/js/jquery-ui-1.10.3/demos/droppable/photo-manager.html | \n", + "static/js/jquery-ui-1.10.3/demos/tabs/manipulation.html | \n", + "static/js/jquery-ui-1.10.3/demos/tabs/manipulation.html | \n", + "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js | \n", + "static/js/jquery-ui-1.10.3/ui/jquery-ui.js | \n", + "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js | \n", + "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js | \n", + "static/js/jquery-ui-custom.js | \n", + "treeio/core/middleware/chat.py | \n", + "treeio/core/middleware/chat.py | \n", + "treeio/core/middleware/chat.py | \n", + "treeio/core/middleware/chat.py | \n", + "treeio/core/middleware/chat.py | \n", + "treeio/core/middleware/chat.py | \n", + "static/js/jquery-ui-1.10.3/ui/jquery-ui.js | \n", + "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js | \n", + "static/js/jquery-ui-custom.js | \n", + "static/js/jquery-ui-1.10.3/ui/jquery.ui.position.js | \n", + "static/js/12o_super_mini.js | \n", + "static/js/12o_super_mini.js | \n", + "static/js/chat.js | \n", + "static/js/hardtree.js | \n", + "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html | \n", + "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html | \n", + "static/js/jquery-ui-1.10.3/demos/dialog/modal-form.html | \n", + "static/js/jquery-ui-1.10.3/demos/droppable/photo-manager.html | \n", + "static/js/jquery-ui-1.10.3/demos/tabs/manipulation.html | \n", + "static/js/jquery-ui-1.10.3/demos/tabs/manipulation.html | \n", + "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js | \n", + "static/js/jquery-ui-1.10.3/ui/jquery-ui.js | \n", + "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js | \n", + "static/js/jquery-ui-1.10.3/ui/jquery.ui.datepicker.js | \n", + "static/js/jquery-ui-custom.js | \n", + "|||||||
| relatedLocation_uriBaseId | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "%SRCROOT% | \n", + "|||||||
| relatedLocation_message | \n", + "'$.fn.datepicker' plugin | \n", + "'$.fn.datepicker' plugin | \n", + "'$.fn.datepicker' plugin | \n", + "'$.fn.position' plugin | \n", + "DOM text | \n", + "DOM text | \n", + "DOM text | \n", + "DOM text | \n", + "DOM text | \n", + "DOM text | \n", + "DOM text | \n", + "DOM text | \n", + "DOM text | \n", + "DOM text | \n", + "HTML construction | \n", + "library input | \n", + "cross-site scripting | \n", + "library input | \n", + "library input | \n", + "Error information | \n", + "Error information | \n", + "Error information | \n", + "Error information | \n", + "Error information | \n", + "Error information | \n", + "'$.fn.datepicker' plugin | \n", + "'$.fn.datepicker' plugin | \n", + "'$.fn.datepicker' plugin | \n", + "'$.fn.position' plugin | \n", + "DOM text | \n", + "DOM text | \n", + "DOM text | \n", + "DOM text | \n", + "DOM text | \n", + "DOM text | \n", + "DOM text | \n", + "DOM text | \n", + "DOM text | \n", + "DOM text | \n", + "HTML construction | \n", + "library input | \n", + "cross-site scripting | \n", + "library input | \n", + "library input | \n", + "|||||||
| message_text | \n", + "Potential XSS vulnerability in the ['$.fn.datepicker' plugin](1).\n", + "Potential XSS vulnerability in the ['$.fn.datepicker' plugin](2).\n", + "Potential XSS vulnerability in the ['$.fn.datepicker' plugin](3). | \n", + "Potential XSS vulnerability in the ['$.fn.datepicker' plugin](1).\n", + "Potential XSS vulnerability in the ['$.fn.datepicker' plugin](2).\n", + "Potential XSS vulnerability in the ['$.fn.datepicker' plugin](3). | \n", + "Potential XSS vulnerability in the ['$.fn.datepicker' plugin](1).\n", + "Potential XSS vulnerability in the ['$.fn.datepicker' plugin](2).\n", + "Potential XSS vulnerability in the ['$.fn.datepicker' plugin](3). | \n", + "Potential XSS vulnerability in the ['$.fn.position' plugin](1). | \n", + "[DOM text](1) is reinterpreted as HTML without escaping meta-characters. | \n", + "[DOM text](1) is reinterpreted as HTML without escaping meta-characters. | \n", + "[DOM text](1) is reinterpreted as HTML without escaping meta-characters. | \n", + "[DOM text](1) is reinterpreted as HTML without escaping meta-characters. | \n", + "[DOM text](1) is reinterpreted as HTML without escaping meta-characters.\n", + "[DOM text](2) is reinterpreted as HTML without escaping meta-characters.\n", + "[DOM text](3) is reinterpreted as HTML without escaping meta-characters. | \n", + "[DOM text](1) is reinterpreted as HTML without escaping meta-characters.\n", + "[DOM text](2) is reinterpreted as HTML without escaping meta-characters.\n", + "[DOM text](3) is reinterpreted as HTML without escaping meta-characters. | \n", + "[DOM text](1) is reinterpreted as HTML without escaping meta-characters.\n", + "[DOM text](2) is reinterpreted as HTML without escaping meta-characters.\n", + "[DOM text](3) is reinterpreted as HTML without escaping meta-characters. | \n", + "[DOM text](1) is reinterpreted as HTML without escaping meta-characters. | \n", + "[DOM text](1) is reinterpreted as HTML without escaping meta-characters. | \n", + "[DOM text](1) is reinterpreted as HTML without escaping meta-characters. | \n", + "[HTML construction](1) based on [library input](2) might later cause [cross-site scripting](3).\n", + "[HTML construction](1) based on [library input](4) might later cause [cross-site scripting](3).\n", + "[HTML construction](1) based on [library input](5) might later cause [cross-site scripting](3). | \n", + "[HTML construction](1) based on [library input](2) might later cause [cross-site scripting](3).\n", + "[HTML construction](1) based on [library input](4) might later cause [cross-site scripting](3).\n", + "[HTML construction](1) based on [library input](5) might later cause [cross-site scripting](3). | \n", + "[HTML construction](1) based on [library input](2) might later cause [cross-site scripting](3).\n", + "[HTML construction](1) based on [library input](4) might later cause [cross-site scripting](3).\n", + "[HTML construction](1) based on [library input](5) might later cause [cross-site scripting](3). | \n", + "[HTML construction](1) based on [library input](2) might later cause [cross-site scripting](3).\n", + "[HTML construction](1) based on [library input](4) might later cause [cross-site scripting](3).\n", + "[HTML construction](1) based on [library input](5) might later cause [cross-site scripting](3). | \n", + "[HTML construction](1) based on [library input](2) might later cause [cross-site scripting](3).\n", + "[HTML construction](1) based on [library input](4) might later cause [cross-site scripting](3).\n", + "[HTML construction](1) based on [library input](5) might later cause [cross-site scripting](3). | \n", + "[Error information](1) may be exposed to an external user | \n", + "[Error information](1) may be exposed to an external user | \n", + "[Error information](1) may be exposed to an external user | \n", + "[Error information](1) may be exposed to an external user | \n", + "[Error information](1) may be exposed to an external user | \n", + "[Error information](1) may be exposed to an external user | \n", + "Potential XSS vulnerability in the ['$.fn.datepicker' plugin](1).\n", + "Potential XSS vulnerability in the ['$.fn.datepicker' plugin](2).\n", + "Potential XSS vulnerability in the ['$.fn.datepicker' plugin](3). | \n", + "Potential XSS vulnerability in the ['$.fn.datepicker' plugin](1).\n", + "Potential XSS vulnerability in the ['$.fn.datepicker' plugin](2).\n", + "Potential XSS vulnerability in the ['$.fn.datepicker' plugin](3). | \n", + "Potential XSS vulnerability in the ['$.fn.datepicker' plugin](1).\n", + "Potential XSS vulnerability in the ['$.fn.datepicker' plugin](2).\n", + "Potential XSS vulnerability in the ['$.fn.datepicker' plugin](3). | \n", + "Potential XSS vulnerability in the ['$.fn.position' plugin](1). | \n", + "[DOM text](1) is reinterpreted as HTML without escaping meta-characters. | \n", + "[DOM text](1) is reinterpreted as HTML without escaping meta-characters. | \n", + "[DOM text](1) is reinterpreted as HTML without escaping meta-characters. | \n", + "[DOM text](1) is reinterpreted as HTML without escaping meta-characters. | \n", + "[DOM text](1) is reinterpreted as HTML without escaping meta-characters.\n", + "[DOM text](2) is reinterpreted as HTML without escaping meta-characters.\n", + "[DOM text](3) is reinterpreted as HTML without escaping meta-characters. | \n", + "[DOM text](1) is reinterpreted as HTML without escaping meta-characters.\n", + "[DOM text](2) is reinterpreted as HTML without escaping meta-characters.\n", + "[DOM text](3) is reinterpreted as HTML without escaping meta-characters. | \n", + "[DOM text](1) is reinterpreted as HTML without escaping meta-characters.\n", + "[DOM text](2) is reinterpreted as HTML without escaping meta-characters.\n", + "[DOM text](3) is reinterpreted as HTML without escaping meta-characters. | \n", + "[DOM text](1) is reinterpreted as HTML without escaping meta-characters. | \n", + "[DOM text](1) is reinterpreted as HTML without escaping meta-characters. | \n", + "[DOM text](1) is reinterpreted as HTML without escaping meta-characters. | \n", + "[HTML construction](1) based on [library input](2) might later cause [cross-site scripting](3).\n", + "[HTML construction](1) based on [library input](4) might later cause [cross-site scripting](3).\n", + "[HTML construction](1) based on [library input](5) might later cause [cross-site scripting](3). | \n", + "[HTML construction](1) based on [library input](2) might later cause [cross-site scripting](3).\n", + "[HTML construction](1) based on [library input](4) might later cause [cross-site scripting](3).\n", + "[HTML construction](1) based on [library input](5) might later cause [cross-site scripting](3). | \n", + "[HTML construction](1) based on [library input](2) might later cause [cross-site scripting](3).\n", + "[HTML construction](1) based on [library input](4) might later cause [cross-site scripting](3).\n", + "[HTML construction](1) based on [library input](5) might later cause [cross-site scripting](3). | \n", + "[HTML construction](1) based on [library input](2) might later cause [cross-site scripting](3).\n", + "[HTML construction](1) based on [library input](4) might later cause [cross-site scripting](3).\n", + "[HTML construction](1) based on [library input](5) might later cause [cross-site scripting](3). | \n", + "[HTML construction](1) based on [library input](2) might later cause [cross-site scripting](3).\n", + "[HTML construction](1) based on [library input](4) might later cause [cross-site scripting](3).\n", + "[HTML construction](1) based on [library input](5) might later cause [cross-site scripting](3). | \n", + "|||||||
| primaryLocationLineHash | \n", + "862d0932c3f65e9c:1 | \n", + "862d0932c3f65e9c:1 | \n", + "862d0932c3f65e9c:1 | \n", + "cdbebfebc041366e:1 | \n", + "4a980240eec311bb:1 | \n", + "703eafa65a81eae4:1 | \n", + "50c5e6da4202e956:1 | \n", + "4a980240eec311bb:1 | \n", + "b3f0d76a66d54a16:1 | \n", + "b3f0d76a66d54a16:1 | \n", + "b3f0d76a66d54a16:1 | \n", + "68541733ad36bd2:1 | \n", + "51698d300613832:1 | \n", + "dbf55bee3d3f647b:1 | \n", + "6f2940a7ef085545:1 | \n", + "6f2940a7ef085545:1 | \n", + "6f2940a7ef085545:1 | \n", + "6f2940a7ef085545:1 | \n", + "6f2940a7ef085545:1 | \n", + "fe0bcea7958de1b6:1 | \n", + "e79fc11e0cc97a5e:1 | \n", + "ff56eb44533e630c:1 | \n", + "fe0bcea7958de1b6:1 | \n", + "e79fc11e0cc97a5e:1 | \n", + "ff56eb44533e630c:1 | \n", + "862d0932c3f65e9c:1 | \n", + "862d0932c3f65e9c:1 | \n", + "862d0932c3f65e9c:1 | \n", + "cdbebfebc041366e:1 | \n", + "4a980240eec311bb:1 | \n", + "703eafa65a81eae4:1 | \n", + "50c5e6da4202e956:1 | \n", + "4a980240eec311bb:1 | \n", + "b3f0d76a66d54a16:1 | \n", + "b3f0d76a66d54a16:1 | \n", + "b3f0d76a66d54a16:1 | \n", + "68541733ad36bd2:1 | \n", + "51698d300613832:1 | \n", + "dbf55bee3d3f647b:1 | \n", + "6f2940a7ef085545:1 | \n", + "6f2940a7ef085545:1 | \n", + "6f2940a7ef085545:1 | \n", + "6f2940a7ef085545:1 | \n", + "6f2940a7ef085545:1 | \n", + "|||||||
| primaryLocationStartColumnFingerprint | \n", + "2 | \n", + "2 | \n", + "2 | \n", + "12 | \n", + "20 | \n", + "31 | \n", + "8 | \n", + "20 | \n", + "28 | \n", + "28 | \n", + "28 | \n", + "13 | \n", + "8 | \n", + "13 | \n", + "61 | \n", + "61 | \n", + "61 | \n", + "61 | \n", + "61 | \n", + "20 | \n", + "20 | \n", + "20 | \n", + "20 | \n", + "20 | \n", + "20 | \n", + "2 | \n", + "2 | \n", + "2 | \n", + "12 | \n", + "20 | \n", + "31 | \n", + "8 | \n", + "20 | \n", + "28 | \n", + "28 | \n", + "28 | \n", + "13 | \n", + "8 | \n", + "13 | \n", + "61 | \n", + "61 | \n", + "61 | \n", + "61 | \n", + "61 | \n", + "|||||||
| rule_id | \n", + "com.lgtm/javascript-queries:js/unsafe-jquery-plugin | \n", + "com.lgtm/javascript-queries:js/unsafe-jquery-plugin | \n", + "com.lgtm/javascript-queries:js/unsafe-jquery-plugin | \n", + "com.lgtm/javascript-queries:js/unsafe-jquery-plugin | \n", + "com.lgtm/javascript-queries:js/xss-through-dom | \n", + "com.lgtm/javascript-queries:js/xss-through-dom | \n", + "com.lgtm/javascript-queries:js/xss-through-dom | \n", + "com.lgtm/javascript-queries:js/xss-through-dom | \n", + "com.lgtm/javascript-queries:js/xss-through-dom | \n", + "com.lgtm/javascript-queries:js/xss-through-dom | \n", + "com.lgtm/javascript-queries:js/xss-through-dom | \n", + "com.lgtm/javascript-queries:js/xss-through-dom | \n", + "com.lgtm/javascript-queries:js/xss-through-dom | \n", + "com.lgtm/javascript-queries:js/xss-through-dom | \n", + "com.lgtm/javascript-queries:js/html-constructed-from-input | \n", + "com.lgtm/javascript-queries:js/html-constructed-from-input | \n", + "com.lgtm/javascript-queries:js/html-constructed-from-input | \n", + "com.lgtm/javascript-queries:js/html-constructed-from-input | \n", + "com.lgtm/javascript-queries:js/html-constructed-from-input | \n", + "com.lgtm/python-queries:py/stack-trace-exposure | \n", + "com.lgtm/python-queries:py/stack-trace-exposure | \n", + "com.lgtm/python-queries:py/stack-trace-exposure | \n", + "com.lgtm/python-queries:py/stack-trace-exposure | \n", + "com.lgtm/python-queries:py/stack-trace-exposure | \n", + "com.lgtm/python-queries:py/stack-trace-exposure | \n", + "com.lgtm/javascript-queries:js/unsafe-jquery-plugin | \n", + "com.lgtm/javascript-queries:js/unsafe-jquery-plugin | \n", + "com.lgtm/javascript-queries:js/unsafe-jquery-plugin | \n", + "com.lgtm/javascript-queries:js/unsafe-jquery-plugin | \n", + "com.lgtm/javascript-queries:js/xss-through-dom | \n", + "com.lgtm/javascript-queries:js/xss-through-dom | \n", + "com.lgtm/javascript-queries:js/xss-through-dom | \n", + "com.lgtm/javascript-queries:js/xss-through-dom | \n", + "com.lgtm/javascript-queries:js/xss-through-dom | \n", + "com.lgtm/javascript-queries:js/xss-through-dom | \n", + "com.lgtm/javascript-queries:js/xss-through-dom | \n", + "com.lgtm/javascript-queries:js/xss-through-dom | \n", + "com.lgtm/javascript-queries:js/xss-through-dom | \n", + "com.lgtm/javascript-queries:js/xss-through-dom | \n", + "com.lgtm/javascript-queries:js/html-constructed-from-input | \n", + "com.lgtm/javascript-queries:js/html-constructed-from-input | \n", + "com.lgtm/javascript-queries:js/html-constructed-from-input | \n", + "com.lgtm/javascript-queries:js/html-constructed-from-input | \n", + "com.lgtm/javascript-queries:js/html-constructed-from-input | \n", + "|||||||
| rule_index | \n", + "31 | \n", + "31 | \n", + "31 | \n", + "31 | \n", + "32 | \n", + "32 | \n", + "32 | \n", + "32 | \n", + "32 | \n", + "32 | \n", + "32 | \n", + "32 | \n", + "32 | \n", + "32 | \n", + "34 | \n", + "34 | \n", + "34 | \n", + "34 | \n", + "34 | \n", + "11 | \n", + "11 | \n", + "11 | \n", + "11 | \n", + "11 | \n", + "11 | \n", + "28 | \n", + "28 | \n", + "28 | \n", + "28 | \n", + "29 | \n", + "29 | \n", + "29 | \n", + "29 | \n", + "29 | \n", + "29 | \n", + "29 | \n", + "29 | \n", + "29 | \n", + "29 | \n", + "31 | \n", + "31 | \n", + "31 | \n", + "31 | \n", + "31 | \n", "
29 rows × 1727 columns
\n", "" ], "text/plain": [ - " 0 \\\n", - "index 0 \n", - "value_index_7481 0 \n", - "creation_date 2021-12-09 \n", - "primary_language javascript \n", - "project_name treeio/treeio \n", - "query_commit_id fa9571646c \n", - "sarif_file_name 2021-12-09/results.sarif \n", - "scan_id 123456 \n", - "scan_start_date 2021-12-09 \n", - "scan_stop_date 2021-12-10 \n", - "tool_name codeql \n", - "tool_version v1.27 \n", - "$schema https://raw.githubusercontent.com/oasis-tcs/sa... \n", - "version_6787 2.1.0 \n", - "value_index_0177 0 \n", - "artifacts 4884865856 \n", - "columnKind utf16CodeUnits \n", - "results 4884866112 \n", - "semmle.formatSpecifier 2.1.0 \n", - "semmle.sourceLanguage javascript \n", - "driver_name_7820 LGTM.com \n", - "organization Semmle \n", - "rules 4887304640 \n", - "driver_version_7820 1.29.0-SNAPSHOT \n", - "versionControl_value_index_5511 0 \n", - "repositoryUri https://github.com/treeio/treeio.git \n", - "revisionId bae3115f4015aad2cbc5ab45572232ceec990495 \n", + " 0 \\\n", + "results_array_id 4811936896 \n", + "results_array_index 0 \n", + "ruleId com.lgtm/javascript-queries:js/unused-local-va... \n", + "ruleIndex 0 \n", + "location_array_index 0 \n", + "location_id -1 \n", + "location_endColumn 17 \n", + "location_endLine 1214 \n", + "location_startColumn 13 \n", + "location_startLine 1214 \n", + "location_index 0 \n", + "location_uri static/js/fileuploader.js \n", + "location_uriBaseId %SRCROOT% \n", + "location_message scli-dyys dummy value \n", + "relatedLocation_array_index 0 \n", + "relatedLocation_id -1 \n", + "relatedLocation_endColumn -1 \n", + "relatedLocation_endLine -1 \n", + "relatedLocation_startColumn 1 \n", + "relatedLocation_startLine -1 \n", + "relatedLocation_index -1 \n", + "relatedLocation_uri scli-dyys dummy value \n", + "relatedLocation_uriBaseId scli-dyys dummy value \n", + "relatedLocation_message scli-dyys dummy value \n", + "message_text Unused variable size. \n", + "primaryLocationLineHash e4aa64838c776437:1 \n", + "primaryLocationStartColumnFingerprint 0 \n", + "rule_id com.lgtm/javascript-queries:js/unused-local-va... \n", + "rule_index 0 \n", "\n", - " 1 \\\n", - "index 1 \n", - "value_index_7481 0 \n", - "creation_date 2021-12-09 \n", - "primary_language javascript \n", - "project_name treeio/treeio \n", - "query_commit_id fa9571646c \n", - "sarif_file_name 2021-12-09/results.sarif \n", - "scan_id 123456 \n", - "scan_start_date 2021-12-09 \n", - "scan_stop_date 2021-12-10 \n", - "tool_name codeql \n", - "tool_version v1.27 \n", - "$schema https://raw.githubusercontent.com/oasis-tcs/sa... \n", - "version_6787 2.1.0 \n", - "value_index_0177 1 \n", - "artifacts 4887304320 \n", - "columnKind unicodeCodePoints \n", - "results 4887335744 \n", - "semmle.formatSpecifier 2.1.0 \n", - "semmle.sourceLanguage python \n", - "driver_name_7820 LGTM.com \n", - "organization Semmle \n", - "rules 4888795328 \n", - "driver_version_7820 1.29.0-SNAPSHOT \n", - "versionControl_value_index_5511 0 \n", - "repositoryUri https://github.com/treeio/treeio.git \n", - "revisionId bae3115f4015aad2cbc5ab45572232ceec990495 \n", + " 1 \\\n", + "results_array_id 4811936896 \n", + "results_array_index 1 \n", + "ruleId com.lgtm/javascript-queries:js/unused-local-va... \n", + "ruleIndex 0 \n", + "location_array_index 0 \n", + "location_id -1 \n", + "location_endColumn 30 \n", + "location_endLine 847 \n", + "location_startColumn 17 \n", + "location_startLine 847 \n", + "location_index 1 \n", + "location_uri static/js/hardtree.js \n", + "location_uriBaseId %SRCROOT% \n", + "location_message scli-dyys dummy value \n", + "relatedLocation_array_index 0 \n", + "relatedLocation_id -1 \n", + "relatedLocation_endColumn -1 \n", + "relatedLocation_endLine -1 \n", + "relatedLocation_startColumn 1 \n", + "relatedLocation_startLine -1 \n", + "relatedLocation_index -1 \n", + "relatedLocation_uri scli-dyys dummy value \n", + "relatedLocation_uriBaseId scli-dyys dummy value \n", + "relatedLocation_message scli-dyys dummy value \n", + "message_text Unused variable file_uploader. \n", + "primaryLocationLineHash 2d69a7ff25c11755:1 \n", + "primaryLocationStartColumnFingerprint 4 \n", + "rule_id com.lgtm/javascript-queries:js/unused-local-va... \n", + "rule_index 0 \n", "\n", - " 2 \\\n", - "index 2 \n", - "value_index_7481 1 \n", - "creation_date 2022-02-25 \n", - "primary_language javascript \n", - "project_name treeio/treeio \n", - "query_commit_id fa9571646c \n", - "sarif_file_name 2022-02-25/results.sarif \n", - "scan_id 123457 \n", - "scan_start_date 2022-02-25 \n", - "scan_stop_date 2022-02-26 \n", - "tool_name codeql \n", - "tool_version v1.29 \n", - "$schema https://json.schemastore.org/sarif-2.1.0.json \n", - "version_6787 2.1.0 \n", - "value_index_0177 0 \n", - "artifacts 4888795840 \n", - "columnKind unicodeCodePoints \n", - "results 4888830016 \n", - "semmle.formatSpecifier 2.1.0 \n", - "semmle.sourceLanguage python \n", - "driver_name_7820 LGTM.com \n", - "organization Semmle \n", - "rules 4890226048 \n", - "driver_version_7820 1.31.0-SNAPSHOT \n", - "versionControl_value_index_5511 0 \n", - "repositoryUri https://github.com/treeio/treeio.git \n", - "revisionId bae3115f4015aad2cbc5ab45572232ceec990495 \n", + " 2 \\\n", + "results_array_id 4811936896 \n", + "results_array_index 2 \n", + "ruleId com.lgtm/javascript-queries:js/unused-local-va... \n", + "ruleIndex 0 \n", + "location_array_index 0 \n", + "location_id -1 \n", + "location_endColumn 30 \n", + "location_endLine 869 \n", + "location_startColumn 17 \n", + "location_startLine 869 \n", + "location_index 1 \n", + "location_uri static/js/hardtree.js \n", + "location_uriBaseId %SRCROOT% \n", + "location_message scli-dyys dummy value \n", + "relatedLocation_array_index 0 \n", + "relatedLocation_id -1 \n", + "relatedLocation_endColumn -1 \n", + "relatedLocation_endLine -1 \n", + "relatedLocation_startColumn 1 \n", + "relatedLocation_startLine -1 \n", + "relatedLocation_index -1 \n", + "relatedLocation_uri scli-dyys dummy value \n", + "relatedLocation_uriBaseId scli-dyys dummy value \n", + "relatedLocation_message scli-dyys dummy value \n", + "message_text Unused variable file_uploader. \n", + "primaryLocationLineHash 2d69a7ff25c11755:2 \n", + "primaryLocationStartColumnFingerprint 4 \n", + "rule_id com.lgtm/javascript-queries:js/unused-local-va... \n", + "rule_index 0 \n", "\n", - " 3 \n", - "index 3 \n", - "value_index_7481 1 \n", - "creation_date 2022-02-25 \n", - "primary_language javascript \n", - "project_name treeio/treeio \n", - "query_commit_id fa9571646c \n", - "sarif_file_name 2022-02-25/results.sarif \n", - "scan_id 123457 \n", - "scan_start_date 2022-02-25 \n", - "scan_stop_date 2022-02-26 \n", - "tool_name codeql \n", - "tool_version v1.29 \n", - "$schema https://json.schemastore.org/sarif-2.1.0.json \n", - "version_6787 2.1.0 \n", - "value_index_0177 1 \n", - "artifacts 4890225536 \n", - "columnKind utf16CodeUnits \n", - "results 4890226432 \n", - "semmle.formatSpecifier 2.1.0 \n", - "semmle.sourceLanguage javascript \n", - "driver_name_7820 LGTM.com \n", - "organization Semmle \n", - "rules 4892162432 \n", - "driver_version_7820 1.31.0-SNAPSHOT \n", - "versionControl_value_index_5511 0 \n", - "repositoryUri https://github.com/treeio/treeio.git \n", - "revisionId bae3115f4015aad2cbc5ab45572232ceec990495 " + " 3 \\\n", + "results_array_id 4811936896 \n", + "results_array_index 3 \n", + "ruleId com.lgtm/javascript-queries:js/unused-local-va... \n", + "ruleIndex 0 \n", + "location_array_index 0 \n", + "location_id -1 \n", + "location_endColumn 16 \n", + "location_endLine 932 \n", + "location_startColumn 10 \n", + "location_startLine 932 \n", + "location_index 1 \n", + "location_uri static/js/hardtree.js \n", + "location_uriBaseId %SRCROOT% \n", + "location_message scli-dyys dummy value \n", + "relatedLocation_array_index 0 \n", + "relatedLocation_id -1 \n", + "relatedLocation_endColumn -1 \n", + "relatedLocation_endLine -1 \n", + "relatedLocation_startColumn 1 \n", + "relatedLocation_startLine -1 \n", + "relatedLocation_index -1 \n", + "relatedLocation_uri scli-dyys dummy value \n", + "relatedLocation_uriBaseId scli-dyys dummy value \n", + "relatedLocation_message scli-dyys dummy value \n", + "message_text Unused variable target. \n", + "primaryLocationLineHash f53acefb9d43eca1:1 \n", + "primaryLocationStartColumnFingerprint 4 \n", + "rule_id com.lgtm/javascript-queries:js/unused-local-va... \n", + "rule_index 0 \n", + "\n", + " 4 \\\n", + "results_array_id 4811936896 \n", + "results_array_index 4 \n", + "ruleId com.lgtm/javascript-queries:js/unused-local-va... \n", + "ruleIndex 0 \n", + "location_array_index 0 \n", + "location_id -1 \n", + "location_endColumn 9 \n", + "location_endLine 33 \n", + "location_startColumn 5 \n", + "location_startLine 33 \n", + "location_index 2 \n", + "location_uri static/js/jquery-ui-1.10.3/demos/accordion/hov... \n", + "location_uriBaseId %SRCROOT% \n", + "location_message scli-dyys dummy value \n", + "relatedLocation_array_index 0 \n", + "relatedLocation_id -1 \n", + "relatedLocation_endColumn -1 \n", + "relatedLocation_endLine -1 \n", + "relatedLocation_startColumn 1 \n", + "relatedLocation_startLine -1 \n", + "relatedLocation_index -1 \n", + "relatedLocation_uri scli-dyys dummy value \n", + "relatedLocation_uriBaseId scli-dyys dummy value \n", + "relatedLocation_message scli-dyys dummy value \n", + "message_text Unused variable args. \n", + "primaryLocationLineHash c700eb701f79d0d0:1 \n", + "primaryLocationStartColumnFingerprint 0 \n", + "rule_id com.lgtm/javascript-queries:js/unused-local-va... \n", + "rule_index 0 \n", + "\n", + " 5 \\\n", + "results_array_id 4811936896 \n", + "results_array_index 5 \n", + "ruleId com.lgtm/javascript-queries:js/unused-local-va... \n", + "ruleIndex 0 \n", + "location_array_index 0 \n", + "location_id -1 \n", + "location_endColumn 16 \n", + "location_endLine 94 \n", + "location_startColumn 8 \n", + "location_startLine 94 \n", + "location_index 3 \n", + "location_uri static/js/jquery.ganttView.js \n", + "location_uriBaseId %SRCROOT% \n", + "location_message scli-dyys dummy value \n", + "relatedLocation_array_index 0 \n", + "relatedLocation_id -1 \n", + "relatedLocation_endColumn -1 \n", + "relatedLocation_endLine -1 \n", + "relatedLocation_startColumn 1 \n", + "relatedLocation_startLine -1 \n", + "relatedLocation_index -1 \n", + "relatedLocation_uri scli-dyys dummy value \n", + "relatedLocation_uriBaseId scli-dyys dummy value \n", + "relatedLocation_message scli-dyys dummy value \n", + "message_text Unused variable divchart. \n", + "primaryLocationLineHash ae729c9a998d74ca:1 \n", + "primaryLocationStartColumnFingerprint 4 \n", + "rule_id com.lgtm/javascript-queries:js/unused-local-va... \n", + "rule_index 0 \n", + "\n", + " 6 \\\n", + "results_array_id 4811936896 \n", + "results_array_index 6 \n", + "ruleId com.lgtm/javascript-queries:js/unused-local-va... \n", + "ruleIndex 0 \n", + "location_array_index 0 \n", + "location_id -1 \n", + "location_endColumn 19 \n", + "location_endLine 394 \n", + "location_startColumn 9 \n", + "location_startLine 394 \n", + "location_index 3 \n", + "location_uri static/js/jquery.ganttView.js \n", + "location_uriBaseId %SRCROOT% \n", + "location_message scli-dyys dummy value \n", + "relatedLocation_array_index 0 \n", + "relatedLocation_id -1 \n", + "relatedLocation_endColumn -1 \n", + "relatedLocation_endLine -1 \n", + "relatedLocation_startColumn 1 \n", + "relatedLocation_startLine -1 \n", + "relatedLocation_index -1 \n", + "relatedLocation_uri scli-dyys dummy value \n", + "relatedLocation_uriBaseId scli-dyys dummy value \n", + "relatedLocation_message scli-dyys dummy value \n", + "message_text Unused variable ArrayUtils. \n", + "primaryLocationLineHash 141267900b8cd48b:1 \n", + "primaryLocationStartColumnFingerprint 4 \n", + "rule_id com.lgtm/javascript-queries:js/unused-local-va... \n", + "rule_index 0 \n", + "\n", + " 7 \\\n", + "results_array_id 4811936896 \n", + "results_array_index 7 \n", + "ruleId com.lgtm/javascript-queries:js/unused-local-va... \n", + "ruleIndex 0 \n", + "location_array_index 0 \n", + "location_id -1 \n", + "location_endColumn 74 \n", + "location_endLine 119 \n", + "location_startColumn 73 \n", + "location_startLine 119 \n", + "location_index 4 \n", + "location_uri static/js/tinymce/jscripts/tiny_mce/plugins/ad... \n", + "location_uriBaseId %SRCROOT% \n", + "location_message scli-dyys dummy value \n", + "relatedLocation_array_index 0 \n", + "relatedLocation_id -1 \n", + "relatedLocation_endColumn -1 \n", + "relatedLocation_endLine -1 \n", + "relatedLocation_startColumn 1 \n", + "relatedLocation_startLine -1 \n", + "relatedLocation_index -1 \n", + "relatedLocation_uri scli-dyys dummy value \n", + "relatedLocation_uriBaseId scli-dyys dummy value \n", + "relatedLocation_message scli-dyys dummy value \n", + "message_text Unused variable v. \n", + "primaryLocationLineHash ff892574fa9e85eb:1 \n", + "primaryLocationStartColumnFingerprint 70 \n", + "rule_id com.lgtm/javascript-queries:js/unused-local-va... \n", + "rule_index 0 \n", + "\n", + " 8 \\\n", + "results_array_id 4811936896 \n", + "results_array_index 8 \n", + "ruleId com.lgtm/javascript-queries:js/unused-local-va... \n", + "ruleIndex 0 \n", + "location_array_index 0 \n", + "location_id -1 \n", + "location_endColumn 51 \n", + "location_endLine 292 \n", + "location_startColumn 50 \n", + "location_startLine 292 \n", + "location_index 4 \n", + "location_uri static/js/tinymce/jscripts/tiny_mce/plugins/ad... \n", + "location_uriBaseId %SRCROOT% \n", + "location_message scli-dyys dummy value \n", + "relatedLocation_array_index 0 \n", + "relatedLocation_id -1 \n", + "relatedLocation_endColumn -1 \n", + "relatedLocation_endLine -1 \n", + "relatedLocation_startColumn 1 \n", + "relatedLocation_startLine -1 \n", + "relatedLocation_index -1 \n", + "relatedLocation_uri scli-dyys dummy value \n", + "relatedLocation_uriBaseId scli-dyys dummy value \n", + "relatedLocation_message scli-dyys dummy value \n", + "message_text Unused variable v. \n", + "primaryLocationLineHash 2f7867eeb9bf356b:1 \n", + "primaryLocationStartColumnFingerprint 47 \n", + "rule_id com.lgtm/javascript-queries:js/unused-local-va... \n", + "rule_index 0 \n", + "\n", + " 9 \\\n", + "results_array_id 4811936896 \n", + "results_array_index 9 \n", + "ruleId com.lgtm/javascript-queries:js/unused-local-va... \n", + "ruleIndex 0 \n", + "location_array_index 0 \n", + "location_id -1 \n", + "location_endColumn 55 \n", + "location_endLine 292 \n", + "location_startColumn 53 \n", + "location_startLine 292 \n", + "location_index 4 \n", + "location_uri static/js/tinymce/jscripts/tiny_mce/plugins/ad... \n", + "location_uriBaseId %SRCROOT% \n", + "location_message scli-dyys dummy value \n", + "relatedLocation_array_index 0 \n", + "relatedLocation_id -1 \n", + "relatedLocation_endColumn -1 \n", + "relatedLocation_endLine -1 \n", + "relatedLocation_startColumn 1 \n", + "relatedLocation_startLine -1 \n", + "relatedLocation_index -1 \n", + "relatedLocation_uri scli-dyys dummy value \n", + "relatedLocation_uriBaseId scli-dyys dummy value \n", + "relatedLocation_message scli-dyys dummy value \n", + "message_text Unused variable cl. \n", + "primaryLocationLineHash 2f7867eeb9bf356b:1 \n", + "primaryLocationStartColumnFingerprint 50 \n", + "rule_id com.lgtm/javascript-queries:js/unused-local-va... \n", + "rule_index 0 \n", + "\n", + " ... \\\n", + "results_array_id ... \n", + "results_array_index ... \n", + "ruleId ... \n", + "ruleIndex ... \n", + "location_array_index ... \n", + "location_id ... \n", + "location_endColumn ... \n", + "location_endLine ... \n", + "location_startColumn ... \n", + "location_startLine ... \n", + "location_index ... \n", + "location_uri ... \n", + "location_uriBaseId ... \n", + "location_message ... \n", + "relatedLocation_array_index ... \n", + "relatedLocation_id ... \n", + "relatedLocation_endColumn ... \n", + "relatedLocation_endLine ... \n", + "relatedLocation_startColumn ... \n", + "relatedLocation_startLine ... \n", + "relatedLocation_index ... \n", + "relatedLocation_uri ... \n", + "relatedLocation_uriBaseId ... \n", + "relatedLocation_message ... \n", + "message_text ... \n", + "primaryLocationLineHash ... \n", + "primaryLocationStartColumnFingerprint ... \n", + "rule_id ... \n", + "rule_index ... \n", + "\n", + " 1717 \\\n", + "results_array_id 4817297216 \n", + "results_array_index 419 \n", + "ruleId com.lgtm/javascript-queries:js/incomplete-host... \n", + "ruleIndex 25 \n", + "location_array_index 0 \n", + "location_id -1 \n", + "location_endColumn 249 \n", + "location_endLine 20 \n", + "location_startColumn 161 \n", + "location_startLine 20 \n", + "location_index 15 \n", + "location_uri static/js/tinymce/jscripts/tiny_mce/plugins/me... \n", + "location_uriBaseId %SRCROOT% \n", + "location_message scli-dyys dummy value \n", + "relatedLocation_array_index 0 \n", + "relatedLocation_id 1 \n", + "relatedLocation_endColumn 72 \n", + "relatedLocation_endLine 114 \n", + "relatedLocation_startColumn 30 \n", + "relatedLocation_startLine 114 \n", + "relatedLocation_index 15 \n", + "relatedLocation_uri static/js/tinymce/jscripts/tiny_mce/plugins/me... \n", + "relatedLocation_uriBaseId %SRCROOT% \n", + "relatedLocation_message here \n", + "message_text This string, which is used as a regular expres... \n", + "primaryLocationLineHash 3fece0909814abf2:1 \n", + "primaryLocationStartColumnFingerprint 158 \n", + "rule_id com.lgtm/javascript-queries:js/incomplete-host... \n", + "rule_index 25 \n", + "\n", + " 1718 \\\n", + "results_array_id 4817297216 \n", + "results_array_index 420 \n", + "ruleId com.lgtm/javascript-queries:js/incomplete-host... \n", + "ruleIndex 25 \n", + "location_array_index 0 \n", + "location_id -1 \n", + "location_endColumn 136 \n", + "location_endLine 21 \n", + "location_startColumn 77 \n", + "location_startLine 21 \n", + "location_index 15 \n", + "location_uri static/js/tinymce/jscripts/tiny_mce/plugins/me... \n", + "location_uriBaseId %SRCROOT% \n", + "location_message scli-dyys dummy value \n", + "relatedLocation_array_index 0 \n", + "relatedLocation_id 1 \n", + "relatedLocation_endColumn 72 \n", + "relatedLocation_endLine 114 \n", + "relatedLocation_startColumn 30 \n", + "relatedLocation_startLine 114 \n", + "relatedLocation_index 15 \n", + "relatedLocation_uri static/js/tinymce/jscripts/tiny_mce/plugins/me... \n", + "relatedLocation_uriBaseId %SRCROOT% \n", + "relatedLocation_message here \n", + "message_text This string, which is used as a regular expres... \n", + "primaryLocationLineHash baa83464899c850f:1 \n", + "primaryLocationStartColumnFingerprint 74 \n", + "rule_id com.lgtm/javascript-queries:js/incomplete-host... \n", + "rule_index 25 \n", + "\n", + " 1719 \\\n", + "results_array_id 4817297216 \n", + "results_array_index 421 \n", + "ruleId com.lgtm/javascript-queries:js/incomplete-host... \n", + "ruleIndex 25 \n", + "location_array_index 0 \n", + "location_id -1 \n", + "location_endColumn 173 \n", + "location_endLine 22 \n", + "location_startColumn 89 \n", + "location_startLine 22 \n", + "location_index 15 \n", + "location_uri static/js/tinymce/jscripts/tiny_mce/plugins/me... \n", + "location_uriBaseId %SRCROOT% \n", + "location_message scli-dyys dummy value \n", + "relatedLocation_array_index 0 \n", + "relatedLocation_id 1 \n", + "relatedLocation_endColumn 72 \n", + "relatedLocation_endLine 114 \n", + "relatedLocation_startColumn 30 \n", + "relatedLocation_startLine 114 \n", + "relatedLocation_index 15 \n", + "relatedLocation_uri static/js/tinymce/jscripts/tiny_mce/plugins/me... \n", + "relatedLocation_uriBaseId %SRCROOT% \n", + "relatedLocation_message here \n", + "message_text This string, which is used as a regular expres... \n", + "primaryLocationLineHash 8ad5248e23031514:1 \n", + "primaryLocationStartColumnFingerprint 86 \n", + "rule_id com.lgtm/javascript-queries:js/incomplete-host... \n", + "rule_index 25 \n", + "\n", + " 1720 \\\n", + "results_array_id 4817297216 \n", + "results_array_index 422 \n", + "ruleId com.lgtm/javascript-queries:js/incomplete-host... \n", + "ruleIndex 25 \n", + "location_array_index 0 \n", + "location_id -1 \n", + "location_endColumn 172 \n", + "location_endLine 23 \n", + "location_startColumn 82 \n", + "location_startLine 23 \n", + "location_index 15 \n", + "location_uri static/js/tinymce/jscripts/tiny_mce/plugins/me... \n", + "location_uriBaseId %SRCROOT% \n", + "location_message scli-dyys dummy value \n", + "relatedLocation_array_index 0 \n", + "relatedLocation_id 1 \n", + "relatedLocation_endColumn 72 \n", + "relatedLocation_endLine 114 \n", + "relatedLocation_startColumn 30 \n", + "relatedLocation_startLine 114 \n", + "relatedLocation_index 15 \n", + "relatedLocation_uri static/js/tinymce/jscripts/tiny_mce/plugins/me... \n", + "relatedLocation_uriBaseId %SRCROOT% \n", + "relatedLocation_message here \n", + "message_text This string, which is used as a regular expres... \n", + "primaryLocationLineHash fa7eb8938ebc8874:1 \n", + "primaryLocationStartColumnFingerprint 79 \n", + "rule_id com.lgtm/javascript-queries:js/incomplete-host... \n", + "rule_index 25 \n", + "\n", + " 1721 \\\n", + "results_array_id 4817297216 \n", + "results_array_index 423 \n", + "ruleId com.lgtm/javascript-queries:js/loop-iteration-... \n", + "ruleIndex 26 \n", + "location_array_index 0 \n", + "location_id -1 \n", + "location_endColumn 22 \n", + "location_endLine 71 \n", + "location_startColumn 5 \n", + "location_startLine 71 \n", + "location_index 70 \n", + "location_uri static/js/jquery-ui-1.10.3/ui/jquery.ui.droppa... \n", + "location_uriBaseId %SRCROOT% \n", + "location_message scli-dyys dummy value \n", + "relatedLocation_array_index 0 \n", + "relatedLocation_id -1 \n", + "relatedLocation_endColumn -1 \n", + "relatedLocation_endLine -1 \n", + "relatedLocation_startColumn 1 \n", + "relatedLocation_startLine -1 \n", + "relatedLocation_index -1 \n", + "relatedLocation_uri scli-dyys dummy value \n", + "relatedLocation_uriBaseId scli-dyys dummy value \n", + "relatedLocation_message scli-dyys dummy value \n", + "message_text Removing an array item without adjusting the l... \n", + "primaryLocationLineHash a0244b916b792ba9:1 \n", + "primaryLocationStartColumnFingerprint 0 \n", + "rule_id com.lgtm/javascript-queries:js/loop-iteration-... \n", + "rule_index 26 \n", + "\n", + " 1722 \\\n", + "results_array_id 4817297216 \n", + "results_array_index 424 \n", + "ruleId com.lgtm/javascript-queries:js/useless-regexp-... \n", + "ruleIndex 27 \n", + "location_array_index 0 \n", + "location_id -1 \n", + "location_endColumn 57 \n", + "location_endLine 220 \n", + "location_startColumn 55 \n", + "location_startLine 220 \n", + "location_index 5 \n", + "location_uri static/js/tinymce/jscripts/tiny_mce/plugins/ad... \n", + "location_uriBaseId %SRCROOT% \n", + "location_message scli-dyys dummy value \n", + "relatedLocation_array_index 0 \n", + "relatedLocation_id 1 \n", + "relatedLocation_endColumn 70 \n", + "relatedLocation_endLine 220 \n", + "relatedLocation_startColumn 39 \n", + "relatedLocation_startLine 220 \n", + "relatedLocation_index 5 \n", + "relatedLocation_uri static/js/tinymce/jscripts/tiny_mce/plugins/ad... \n", + "relatedLocation_uriBaseId %SRCROOT% \n", + "relatedLocation_message regular expression \n", + "message_text The escape sequence '\\.' is equivalent to just... \n", + "primaryLocationLineHash 5bc93733f296b513:1 \n", + "primaryLocationStartColumnFingerprint 53 \n", + "rule_id com.lgtm/javascript-queries:js/useless-regexp-... \n", + "rule_index 27 \n", + "\n", + " 1723 \\\n", + "results_array_id 4817297216 \n", + "results_array_index 425 \n", + "ruleId com.lgtm/javascript-queries:js/useless-regexp-... \n", + "ruleIndex 27 \n", + "location_array_index 0 \n", + "location_id -1 \n", + "location_endColumn 70 \n", + "location_endLine 226 \n", + "location_startColumn 68 \n", + "location_startLine 226 \n", + "location_index 5 \n", + "location_uri static/js/tinymce/jscripts/tiny_mce/plugins/ad... \n", + "location_uriBaseId %SRCROOT% \n", + "location_message scli-dyys dummy value \n", + "relatedLocation_array_index 0 \n", + "relatedLocation_id 1 \n", + "relatedLocation_endColumn 78 \n", + "relatedLocation_endLine 226 \n", + "relatedLocation_startColumn 49 \n", + "relatedLocation_startLine 226 \n", + "relatedLocation_index 5 \n", + "relatedLocation_uri static/js/tinymce/jscripts/tiny_mce/plugins/ad... \n", + "relatedLocation_uriBaseId %SRCROOT% \n", + "relatedLocation_message regular expression \n", + "message_text The escape sequence '\\.' is equivalent to just... \n", + "primaryLocationLineHash 9ce0746afae7a611:1 \n", + "primaryLocationStartColumnFingerprint 65 \n", + "rule_id com.lgtm/javascript-queries:js/useless-regexp-... \n", + "rule_index 27 \n", + "\n", + " 1724 \\\n", + "results_array_id 4817297216 \n", + "results_array_index 426 \n", + "ruleId com.lgtm/javascript-queries:js/useless-regexp-... \n", + "ruleIndex 27 \n", + "location_array_index 0 \n", + "location_id -1 \n", + "location_endColumn 33 \n", + "location_endLine 227 \n", + "location_startColumn 31 \n", + "location_startLine 227 \n", + "location_index 5 \n", + "location_uri static/js/tinymce/jscripts/tiny_mce/plugins/ad... \n", + "location_uriBaseId %SRCROOT% \n", + "location_message scli-dyys dummy value \n", + "relatedLocation_array_index 0 \n", + "relatedLocation_id 1 \n", + "relatedLocation_endColumn 54 \n", + "relatedLocation_endLine 253 \n", + "relatedLocation_startColumn 48 \n", + "relatedLocation_startLine 253 \n", + "relatedLocation_index 5 \n", + "relatedLocation_uri static/js/tinymce/jscripts/tiny_mce/plugins/ad... \n", + "relatedLocation_uriBaseId %SRCROOT% \n", + "relatedLocation_message regular expression \n", + "message_text The escape sequence '\\.' is equivalent to just... \n", + "primaryLocationLineHash 76a7d7cbd7b16471:1 \n", + "primaryLocationStartColumnFingerprint 28 \n", + "rule_id com.lgtm/javascript-queries:js/useless-regexp-... \n", + "rule_index 27 \n", + "\n", + " 1725 \\\n", + "results_array_id 4817297216 \n", + "results_array_index 427 \n", + "ruleId com.lgtm/javascript-queries:js/useless-regexp-... \n", + "ruleIndex 27 \n", + "location_array_index 0 \n", + "location_id -1 \n", + "location_endColumn 97 \n", + "location_endLine 27 \n", + "location_startColumn 95 \n", + "location_startLine 27 \n", + "location_index 36 \n", + "location_uri static/js/tinymce/jscripts/tiny_mce/utils/vali... \n", + "location_uriBaseId %SRCROOT% \n", + "location_message scli-dyys dummy value \n", + "relatedLocation_array_index 0 \n", + "relatedLocation_id 1 \n", + "relatedLocation_endColumn 33 \n", + "relatedLocation_endLine 70 \n", + "relatedLocation_startColumn 32 \n", + "relatedLocation_startLine 70 \n", + "relatedLocation_index 36 \n", + "relatedLocation_uri static/js/tinymce/jscripts/tiny_mce/utils/vali... \n", + "relatedLocation_uriBaseId %SRCROOT% \n", + "relatedLocation_message regular expression \n", + "message_text The escape sequence '\\.' is equivalent to just... \n", + "primaryLocationLineHash 2ed8420357e0fd27:1 \n", + "primaryLocationStartColumnFingerprint 92 \n", + "rule_id com.lgtm/javascript-queries:js/useless-regexp-... \n", + "rule_index 27 \n", + "\n", + " 1726 \n", + "results_array_id 4817297216 \n", + "results_array_index 438 \n", + "ruleId com.lgtm/javascript-queries:js/incomplete-mult... \n", + "ruleIndex 30 \n", + "location_array_index 0 \n", + "location_id -1 \n", + "location_endColumn 39 \n", + "location_endLine 2664 \n", + "location_startColumn 11 \n", + "location_startLine 2664 \n", + "location_index 39 \n", + "location_uri static/js/12o_super_mini.js \n", + "location_uriBaseId %SRCROOT% \n", + "location_message scli-dyys dummy value \n", + "relatedLocation_array_index 0 \n", + "relatedLocation_id 1 \n", + "relatedLocation_endColumn 23 \n", + "relatedLocation_endLine 2664 \n", + "relatedLocation_startColumn 22 \n", + "relatedLocation_startLine 2664 \n", + "relatedLocation_index 39 \n", + "relatedLocation_uri static/js/12o_super_mini.js \n", + "relatedLocation_uriBaseId %SRCROOT% \n", + "relatedLocation_message