Skip to content

Commit

Permalink
Merge branch 'AIRAVATA-3702--User-input-files-renamed-with-random-ext…
Browse files Browse the repository at this point in the history
…ension-when-experiment-launched' into develop
  • Loading branch information
machristie committed Jul 17, 2023
2 parents 3912dec + 335ee8a commit 17d744d
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 2 deletions.
22 changes: 22 additions & 0 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# .readthedocs.yaml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details

# Required
version: 2

# Set the version of Python and other tools you might need
# build:
# os: ubuntu-22.04
# tools:
# python: "3.10"

mkdocs:
configuration: mkdocs.yml

# Optionally declare the Python requirements required to build your docs
python:
install:
- requirements: requirements-dev.txt
- method: pip
path: .
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
<h4 class="alert-heading">Logged in!</h4>
</div>
{% if show_code %}
<textarea style="width: 100%" rows="5" onfocus="this.select()">{{ code }}</textarea>
<textarea id="code-textarea" style="width: 100%" rows="5" onfocus="this.select()">{{ code }}</textarea>
<button class="btn btn-primary" onclick="navigator.clipboard.writeText(document.getElementById('code-textarea').value)">Copy</button>
{% endif %}
</div>
</main>
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ grpcio-tools==1.51.1 ; python_version >= "3.7"
grpcio==1.48.2 ; python_version < "3.7"
grpcio==1.51.1 ; python_version >= "3.7"

airavata-django-portal-sdk==1.8.3
airavata-django-portal-sdk==1.8.4
airavata-python-sdk==1.1.6
airavata-django-portal-commons==1.0.0

Expand Down

0 comments on commit 17d744d

Please sign in to comment.