Skip to content

Commit 353a38a

Browse files
authored
Merge pull request #160 from DenverM80/master_merge_3_2
Merge 3_2_autogen into master
2 parents 06e7a87 + e5588a1 commit 353a38a

File tree

14 files changed

+5199
-1968
lines changed

14 files changed

+5199
-1968
lines changed

docker/run_docker.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
end
1717

1818
# List all users
19-
response = connection.get("/users")
19+
response = connection.get("/api/users")
2020
# All GET responses are under a root "data"
2121
users = JSON.parse(response.body)["data"]
2222

@@ -29,7 +29,7 @@
2929
# make a separate "/s3v/keys" request which is setup to return an array
3030
# of DS3 authid/secretkey pairs in case we ever allow more than one pair per
3131
# user.
32-
response = connection.get("/ds3/keys?user_id=#{spectra_user["id"]}")
32+
response = connection.get("/api/ds3/keys?user_id=#{spectra_user["id"]}")
3333
spectra_user_keys = JSON.parse(response.body)["data"][0]
3434
abort("Spectra User Keys not found.") if spectra_user.keys.nil?
3535

src/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ include_HEADERS = ds3.h ds3_string_multimap.h ds3_net.h ds3_request.h ds3_utils.
44
libds3_la_SOURCES = ds3.c ds3_string_multimap.c ds3_net.c ds3_string_multimap_impl.c ds3_string.c ds3_utils.c ds3_connection.c
55
libds3_la_CFLAGS = $(LIBXML2_CFLAGS) $(GLIB2_CFLAGS) $(LIBCURL_CFLAGS) -Wall
66
libds3_la_LIBADD = $(LIBXML2_LIBS) $(GLIB2_LIBS) $(LIBCURL_LIBS)
7-
libds3_la_LDFLAGS = -version-info 3:0:0
7+
libds3_la_LDFLAGS = -version-info 3:2:0
88

src/ds3.c

Lines changed: 4284 additions & 1839 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)