Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Parallelize RAGE queries and fix some decoding #96

Open
wants to merge 26 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
bd364b9
use http basic authentication when fetching url data
mg12ctx Mar 22, 2019
27307ed
fix brief report link
edwintorok Apr 29, 2019
7a8e811
CP-30677: expand variables from XenRT suite files
edwintorok Aug 21, 2019
c6f4168
Clean up Curl connections
edwintorok Aug 21, 2019
ec01f32
Update to OCaml 4.08.1, Core v0.13, and Dune build system
edwintorok Nov 29, 2019
f16d7b6
decode &45; to - for --
edwintorok Nov 29, 2019
5745fe3
Add bootmode precedence
edwintorok Nov 22, 2019
85c44f5
Escaping for +
edwintorok Nov 29, 2019
f73dec2
Show patches_applied, and build_is_release axes
edwintorok Nov 25, 2019
3639eab
Fix some Dune warnings
edwintorok Nov 29, 2019
e45cbe6
Memoize the result of some Sql queries: we've been repeating the same…
edwintorok Aug 21, 2019
e337897
Async postgres queries
edwintorok Nov 29, 2019
51ee3c8
async wip
edwintorok Dec 1, 2019
4dcb9a9
Convert queries to asynchronous queries
edwintorok Dec 1, 2019
98478d9
Convert more queries to asynchronous ones
edwintorok Dec 1, 2019
a8a9052
Shut down the async loop when done
edwintorok Dec 1, 2019
85d690b
Cleanup some async handling
edwintorok Dec 1, 2019
e81d0b7
Handle nested includes from suite definitions
edwintorok Dec 1, 2019
2130144
Parallelize more queries
edwintorok Dec 1, 2019
2210dd4
Parallelize more queries
edwintorok Dec 1, 2019
cfaab55
parallelize more queries and https queries too
edwintorok Dec 1, 2019
51b1d9c
Show more accurate median statistics
edwintorok Dec 2, 2019
8f90a17
ssl0.5.7 for older openssl version
edwintorok Dec 10, 2019
c038cac
fix url decoding of -
edwintorok Dec 10, 2019
ceb86d3
Disable forcing of Y from/to zero and split by build_is_release
edwintorok Dec 10, 2019
5e5e7f2
Add Travis CI build script
edwintorok Dec 19, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/brief_handler.ml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ let t ~args = object (self)
("%2F","/");("%3F","?" ); ("%3D","="); ("%26","&");
("%25","%");("+"," "); ("%3E",">"); ("%3C","<");
("%3A",":");("&amp;","&");("&quot;","\"");
("%2d","-");
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since most of the other matches assume upper-case hex digits, do we need to worry about "%2D"?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'll add both.

("&gt;",">");("&lt;","<");
("&45;","-");("&plus;","%2b")
]
Expand Down