Skip to content

Commit 651341b

Browse files
authored
Merge branch 'development' into master
2 parents 248a172 + 958d028 commit 651341b

70 files changed

Lines changed: 3569 additions & 118 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
tableauserverclient/_version.py export-subst

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
## 0.4.1 (18 April 2017)
2+
3+
* Fix #177 to remove left in debugging print
4+
5+
## 0.4 (18 April 2017)
6+
7+
Yikes, it's been too long.
8+
9+
* Added API version annotations to endpoints (#125)
10+
* Added New High Res Image Api Endpoint
11+
* Added Tags to Datasources, Views
12+
* Added Ability to run an Extract Refresh task (#159)
13+
* Auto versioning enabled (#169)
14+
* Download twbx/tdsx without the extract payload (#143, #144)
15+
* New Sample to initialize a server (#95)
16+
* Added ability to update connection information (#149)
17+
* Added Ability to get a site by name (#153)
18+
* Dates are now DateTime Objects (#102)
19+
* Bugfixes (#162, #166)
20+
121
## 0.3 (11 January 2017)
222

323
* Return DateTime objects instead of strings (#102)

CONTRIBUTORS.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ The following people have contributed to this project to make it possible, and w
77
* [geordielad](https://github.com/geordielad)
88
* [Hugo Stijns)(https://github.com/hugoboos)
99
* [kovner](https://github.com/kovner)
10+
* [Talvalin](https://github.com/Talvalin)
11+
* [Chris Toomey](https://github.com/cmtoomey)
12+
* [Vathsala Achar](https://github.com/VathsalaAchar)
13+
* [Graeme Britz](https://github.com/grbritz)
1014

1115

1216
## Core Team
@@ -17,3 +21,5 @@ The following people have contributed to this project to make it possible, and w
1721
* [RussTheAerialist](https://github.com/RussTheAerialist)
1822
* [Ben Lower](https://github.com/benlower)
1923
* [Jared Dominguez](https://github.com/jdomingu)
24+
* [Jackson Huang](https://github.com/jz-huang)
25+
* [Brendan Lee](https://github.com/lbrendanl)

MANIFEST.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
include versioneer.py
2+
include tableauserverclient/_version.py

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,4 @@ This repository contains Python source code and sample files.
1010

1111
For more information on installing and using TSC, see the documentation:
1212

13-
<https://tableau.github.io/server-client-python/docs/>
14-
13+
<https://tableau.github.io/server-client-python/docs/>

contributing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ anyone can add to an issue:
4848
## Fixes, Implementations, and Documentation
4949

5050
For all other things, please submit a PR that includes the fix, documentation, or new code that you are trying to contribute. More information on
51-
creating a PR can be found in the [github documentation](https://help.github.com/articles/creating-a-pull-request/)
51+
creating a PR can be found in the [Development Guide](docs/docs/dev-guide.md)
5252

5353
If the feature is complex or has multiple solutions that could be equally appropriate approaches, it would be helpful to file an issue to discuss the
5454
design trade-offs of each solution before implementing, to allow us to collectively arrive at the best solution, which most likely exists in the middle

docs/_includes/docs_menu.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<div class="well docs-menu col-xs-12 col-sm-4 col-md-3">
2+
{% include search_form.html %}
23
<ul class="nav nav-list">
34
<li>
45
<a href="{{ site.baseurl }}/docs">Get Started</a>

docs/_includes/head.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
<link rel="stylesheet" href="{{ site.baseurl }}/css/main.css">
1212
<link rel="stylesheet" href="{{ site.baseurl }}/css/github-highlight.css">
1313

14+
<script src="{{ site.baseurl }}/js/redirect-to-search.js"></script>
1415
<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script>
1516
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
1617

docs/_includes/search_form.html

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<div class="search-container form-group has-feedback">
2+
<form id="docs-search">
3+
<input type="search" id="search-input" class="custom-search form-control" placeholder="Search the docs..." search-url="{{ site.baseurl}}/docs/search.html">
4+
<span class="glyphicon glyphicon-search form-control-feedback"></span>
5+
</form>
6+
</div>
7+

docs/_layouts/search.html

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
---
2+
layout: search
3+
---
4+
5+
<!DOCTYPE html>
6+
<html>
7+
8+
<head>
9+
{% include head.html %}
10+
<script type="text/javascript">
11+
var search_blob = {
12+
{% for page in site.pages %}
13+
{% if page.indexed_by_search != false %}
14+
"{{ site.baseurl }}{{ page.url }}": {
15+
"title": {{ page.title | escape | jsonify }},
16+
"content": {{ page.content | remove_first: '* TOC' | replace_first:':toc',':class="blank"' | markdownify | strip_html | normalize_whitespace | jsonify }}
17+
}{% unless forloop.last %},{% endunless %}
18+
{% endif %}
19+
{% endfor %}
20+
};
21+
</script>
22+
23+
<script src="{{ site.baseurl }}/js/lunr.min.js"></script>
24+
<script src="{{ site.baseurl }}/js/search.js"></script>
25+
</head>
26+
27+
<body>
28+
<div class="container">
29+
{% include header.html %}
30+
{% include docs_menu.html %}
31+
32+
<div class="content .col-xs-12 .col-sm-8 .col-md-9">
33+
<h1 id="searchHeading"></h1>
34+
<br />
35+
<div id="searchResultsContainer">
36+
<p>Loading search results...</p>
37+
</div>
38+
39+
{% include footer.html %}
40+
</div>
41+
</div>
42+
</body>
43+
</html>

0 commit comments

Comments
 (0)