diff --git a/ietf/doc/tests_review.py b/ietf/doc/tests_review.py index cf5b35ccd..44287a6ef 100644 --- a/ietf/doc/tests_review.py +++ b/ietf/doc/tests_review.py @@ -173,7 +173,12 @@ class ReviewTests(TestCase): r = self.client.get(url) self.assertContains(r, review_req.team.acronym) self.assertContains(r, review_req.team.name) - self.assertContains(r, author.name) + try: + # FIXME-LARS + self.assertContains(r, author.name) + except: + print(r.content) + self.assertContains(r, author.name) url = urlreverse('ietf.doc.views_review.review_request_forced_login', kwargs={ "name": doc.name, "request_id": review_req.pk }) r = self.client.get(url) diff --git a/ietf/templates/api/index.html b/ietf/templates/api/index.html index d548339bf..63820bc1a 100644 --- a/ietf/templates/api/index.html +++ b/ietf/templates/api/index.html @@ -42,8 +42,8 @@
The API top endpoint is at
- https://datatracker.ietf.org/api/v1/
- . The top
+ https://datatracker.ietf.org/api/v1/.
+ The top
endpoint lists inferior endpoints, and thus permits some autodiscovery,
but there's really no substitute for looking at the actual ORM model classes.
Comparing a class in models.py
with the equivalent endpoint may give
@@ -66,8 +66,7 @@
Documents are listed at - /api/v1/doc/document/ - . + /api/v1/doc/document/.
In general, individual database objects are represented in the API with a path
@@ -156,13 +155,11 @@ $ curl 'https://datatracker.ietf.org/api/v1/doc/document/?limit=0&name__contains
{% url 'ietf.doc.views_doc.document_json' name='draft-ietf-poised95-std-proc-3' %}
-
- .
+ .
You can also specify an RFC: {% url 'ietf.doc.views_doc.document_json' name='rfc2026' %}
-
- .
+ .
No API key is needed to access this.
@@ -253,8 +250,8 @@ $ curl -S -F "apikey=DgAAAMLSi3coaE5TjrRs518xO8eBRlCmFF3eQcC8_SjUTtRGLGiJh7-1SYP
The datatracker supports
- OpenID Connect
- , but
+ OpenID Connect,
+ but
not dynamic registration. The OpenID Connect Issuer is
{{ settings.IDTRACKER_BASE_URL }}{% url 'ietf.api.urls.oidc_issuer' %}
{% url 'ietf.doc.views_ballot.api_set_position' %}
above
-
- .
+ .
Personal API keys are available from your
Account API Keys
@@ -316,8 +312,8 @@ $ curl -S -F "apikey=DgAAAMLSi3coaE5TjrRs518xO8eBRlCmFF3eQcC8_SjUTtRGLGiJh7-1SYP
RFC
7515: JSON Web Signature (JWS)
-
- , using a public/private keypair with
+ ,
+ using a public/private keypair with
this public key:
diff --git a/ietf/templates/community/manage_list.html b/ietf/templates/community/manage_list.html index 930bb6a4c..929d7ab2f 100644 --- a/ietf/templates/community/manage_list.html +++ b/ietf/templates/community/manage_list.html @@ -16,8 +16,7 @@ {% bootstrap_messages %}
The list currently tracks - {{ total_count }} document{{ total_count|pluralize }} - . + {{ total_count }} document{{ total_count|pluralize }}.
Back to list @@ -61,8 +60,7 @@ Conveniently track individual documents in your personal list with the track icon in - search results - . + search results.
You can also add documents here: diff --git a/ietf/templates/community/subscription.html b/ietf/templates/community/subscription.html index 749b37422..2644b77bf 100644 --- a/ietf/templates/community/subscription.html +++ b/ietf/templates/community/subscription.html @@ -35,8 +35,7 @@
The email addresses you can choose between are those registered in - your profile - . + your profile.
{% if form.fields.email.queryset %}