Subject | Hash | Author | Date (UTC) |
---|---|---|---|
Silent curl in API functional test | e6808bc97d201fd4944de0ad2982c3090ae4743a | Catalin(ux) M. BOIE | 2017-04-15 06:31:04 |
Fixed a lot of tests which used time() for different fields and sometime lost the time race | 6a61493189d07110d3c5fdbe34ea0725d5abbd3b | Catalin(ux) M. BOIE | 2017-04-15 06:25:40 |
Fixed the crash with big diffs by setting a limit | 788e15942d8272685764a25b640eba2c07046437 | Catalin(ux) M. BOIE | 2017-04-15 06:24:30 |
Allow .well-known folder access | 90519cd03bf64839d1a9fc2497e58bd63d8ce6f3 | Catalin(ux) M. BOIE | 2017-04-12 16:50:16 |
When an un-auth user is visiting a user page with no repo, do not invite to create a repo | 6904e1eac3f46c281ae6b4757bcaa16d2acc6169 | Catalin(ux) M. BOIE | 2017-03-27 15:23:52 |
Added a 'push' target in Makefile to not forget to push tags... | 92a9b78e26d8a3e7b466f5aa45678dd2db8d4310 | Catalin(ux) M. BOIE | 2017-03-26 14:29:55 |
Bump version to 0.67 | 6f1c9a6d7f7d40d65def54e23a3590556a346bb8 | Catalin(ux) M. BOIE | 2017-03-26 09:44:32 |
Cosmetic | cb68f1921782a503675c592dc7484aa26b8815b6 | Catalin(ux) M. BOIE | 2017-03-26 09:37:41 |
Improve state handling: do not check for an old value; verify if table exists before doing a select | 17d8eb4b4592dd96e62a8da74d87d3d3b26aeb86 | Catalin(ux) M. BOIE | 2017-03-26 09:37:01 |
Impoved debug for cache | 4d6349f7143d61583e6d2d9612c89b55af4eea97 | Catalin(ux) M. BOIE | 2017-03-26 09:36:08 |
I cannot be sure if the data is stored only in Germany. And we do backups in Romania. | 1610c997dbda53c0a21e301b51832d9285ecbcf2 | Catalin(ux) M. BOIE | 2017-03-26 08:24:46 |
Removed a not used variable | 4d2bab105c6f7748ca53d9a8301a2da320153d53 | Catalin(ux) M. BOIE | 2017-03-21 20:15:29 |
tests: ignore some dirs | 7260fc44f8d0197b917bc13a0ac19eb8c58d4534 | Catalin(ux) M. BOIE | 2017-03-21 20:01:03 |
Link to anon push doc | 42dbfdc9ad5fad0157388f239f790f2e8f4de7c2 | Catalin(ux) M. BOIE | 2017-03-21 20:00:45 |
comparison: add red/green for css/js sizes and for pagespeed | cbcda26a9d20c115eb0931ab2af69f3c2315ab7d | Catalin(ux) M. BOIE | 2017-03-21 19:44:47 |
Trim the hints for cloning the tree | 59bc91f5229abf96f453d872a58a2c96cf18198c | Catalin(ux) M. BOIE | 2017-03-21 19:35:58 |
Do the right thing (no error) when an empty tree is present | 7c138f486a81d09df44e811714d7bdeb92d7c01d | Catalin(ux) M. BOIE | 2017-03-21 19:34:03 |
Do not use UA when building anti-CSRF token. Think about plugins which change the UA at every request | 7346fceeff8bea1eaa500dd3ce1677deb84f8b77 | Catalin(ux) M. BOIE | 2017-03-21 16:36:46 |
Do not create a namespace anymore if the user has the rights to push | 13f8037ba76b57ae919758609c523dcbb6588745 | Catalin(ux) M. BOIE | 2017-03-19 19:44:07 |
Docker improvements | c3c0f8ff3f5a2f9acfeea2e9bbf271cfeae4a8bd | Catalin(ux) M. BOIE | 2017-03-19 19:43:25 |
File | Lines added | Lines deleted |
---|---|---|
tests/api.sh | 2 | 2 |
File tests/api.sh changed (mode: 100755) (index 4938aca..8fa9b2c) | |||
2 | 2 | ||
3 | 3 | user="catab" | user="catab" |
4 | 4 | key="925cb5896280c6f132263336a5e90819" | key="925cb5896280c6f132263336a5e90819" |
5 | curl --header "Authorization: ${user} ${key}" \ | ||
5 | curl --silent --header "Authorization: ${user} ${key}" \ | ||
6 | 6 | --data "{\"cmd\": \"user_info\", \"user\": \"${user}\"}" \ | --data "{\"cmd\": \"user_info\", \"user\": \"${user}\"}" \ |
7 | 7 | -o api.out \ | -o api.out \ |
8 | 8 | http://rg:9000/op/api | http://rg:9000/op/api |
9 | json_verify < api.out | ||
9 | json_verify < api.out > /dev/null | ||
10 | 10 | if [ "${?}" != "0" ]; then | if [ "${?}" != "0" ]; then |
11 | 11 | echo "JSON seems to not be ok!" | echo "JSON seems to not be ok!" |
12 | 12 | exit 1 | exit 1 |