Skip to content

Commit ae054a6

Browse files
chore(gae): remove region tag 'form' from HTML templates (#13068)
* chore(gae): delete region tag 'form' at mailjet/templates/index.html * chore(gae): delete region tag 'form' at standard/pubsub/templates/index.html * chore(gae): delete region tag 'form' at standard_python3/pubsub/templates/index.html * chore(gae): add support for Python 3 to requirements-test.txt
1 parent 2b8170c commit ae054a6

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
# pin pytest to 4.6.11 for Python2.
22
pytest==4.6.11; python_version < '3.0'
3+
34
responses==0.17.0; python_version < '3.7'
45
responses==0.23.1; python_version > '3.6'
6+
7+
# pytest==8.3.4 and six==1.17.0 for Python3.
8+
pytest==8.3.4; python_version >= '3.0'
9+
six==1.17.0

appengine/standard/mailjet/templates/index.html

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,9 @@
1919
<title>Mailjet on Google App Engine</title>
2020
</head>
2121
<body>
22-
<!-- [START form] -->
2322
<form method="post" action="/send/email">
2423
<input type="text" name="to" placeholder="Enter recipient email">
2524
<input type="submit" name="submit" value="Send email">
2625
</form>
27-
<!-- [END form] -->
2826
</body>
2927
</html>
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
11
# pin pytest to 4.6.11 for Python2.
22
pytest==4.6.11; python_version < '3.0'
3+
4+
# pytest==8.3.4 and six==1.17.0 for Python3.
5+
pytest==8.3.4; python_version >= '3.0'
6+
six==1.17.0

appengine/standard/pubsub/templates/index.html

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,9 @@
2828
</ul>
2929
<p><small>Note: because your application is likely running multiple instances, each instance will have a different list of messages.</small></p>
3030
</div>
31-
<!-- [START form] -->
3231
<form method="post">
3332
<textarea name="payload" placeholder="Enter message here"></textarea>
3433
<input type="submit">
3534
</form>
36-
<!-- [END form] -->
3735
</body>
3836
</html>

appengine/standard_python3/pubsub/templates/index.html

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,9 @@
4242
</ul>
4343
<p><small>Note: because your application is likely running multiple instances, each instance will have a different list of messages.</small></p>
4444
</div>
45-
<!-- [START form] -->
4645
<form method="post">
4746
<textarea name="payload" placeholder="Enter message here"></textarea>
4847
<input type="submit">
4948
</form>
50-
<!-- [END form] -->
5149
</body>
5250
</html>

0 commit comments

Comments
 (0)