~sircmpwn/sr.ht-dev

This thread contains a patchset. You're looking at the original emails, but you may wish to use the patch review UI. Review patch
1

[PATCH hub.sr.ht] Set dir="auto"

Details
Message ID
<20231204120848.1348149-1-vcs@ersei.net>
DKIM signature
missing
Download raw message
Patch: +23 -0
---
 hubsrht/templates/dashboard.html            | 1 +
 hubsrht/templates/mailing-list-new.html     | 3 +++
 hubsrht/templates/mailing-lists-manage.html | 1 +
 hubsrht/templates/profile.html              | 1 +
 hubsrht/templates/project-config.html       | 4 ++++
 hubsrht/templates/project-create.html       | 1 +
 hubsrht/templates/project-index.html        | 1 +
 hubsrht/templates/project-summary.html      | 1 +
 hubsrht/templates/projects.html             | 1 +
 hubsrht/templates/resource-list.html        | 1 +
 hubsrht/templates/sources-manage.html       | 1 +
 hubsrht/templates/sources-select.html       | 3 +++
 hubsrht/templates/tracker-new.html          | 3 +++
 hubsrht/templates/trackers-manage.html      | 1 +
 14 files changed, 23 insertions(+)

diff --git a/hubsrht/templates/dashboard.html b/hubsrht/templates/dashboard.html
index f2b6b7c..a5f7ec0 100644
--- a/hubsrht/templates/dashboard.html
+++ b/hubsrht/templates/dashboard.html
@@ -38,6 +38,7 @@
          <input
            name="search"
            type="text"
            dir="auto"
            placeholder="Search your projects"
            class="form-control" />
          {% if search_error %}
diff --git a/hubsrht/templates/mailing-list-new.html b/hubsrht/templates/mailing-list-new.html
index 08452ab..56c7557 100644
--- a/hubsrht/templates/mailing-list-new.html
+++ b/hubsrht/templates/mailing-list-new.html
@@ -75,6 +75,7 @@
      <label for="{{ typename }}">Name</label>
      <input
        type="text"
        dir="auto"
        name="name"
        id="name"
        class="form-control {{ valid.cls("name") }}"
@@ -84,6 +85,7 @@
        <label for="description">Description</label>
        <textarea
          type="text"
          dir="auto"
          name="description"
          id="description"
          class="form-control {{valid.cls("description")}}"
@@ -115,6 +117,7 @@
      <input
        name="search"
        type="text"
        dir="auto"
        placeholder="Search mailing lists"
        class="form-control{% if search_error %} is-invalid{% endif %}"
        value="{{ search if search else "" }}" />
diff --git a/hubsrht/templates/mailing-lists-manage.html b/hubsrht/templates/mailing-lists-manage.html
index efea854..2d5e6ee 100644
--- a/hubsrht/templates/mailing-lists-manage.html
+++ b/hubsrht/templates/mailing-lists-manage.html
@@ -11,6 +11,7 @@
        <input
          name="search"
          type="text"
          dir="auto"
          placeholder="Search mailing lists"
          class="form-control{% if search_error %} is-invalid{% endif %}"
          value="{{ search if search else "" }}" />
diff --git a/hubsrht/templates/profile.html b/hubsrht/templates/profile.html
index a52f6c6..df0369b 100644
--- a/hubsrht/templates/profile.html
+++ b/hubsrht/templates/profile.html
@@ -50,6 +50,7 @@
          <input
            name="search"
            type="text"
            dir="auto"
            placeholder="Search {{user.canonical_name}}'s projects"
            class="form-control" />
          {% if search_error %}
diff --git a/hubsrht/templates/project-config.html b/hubsrht/templates/project-config.html
index 7ed6005..9d8a635 100644
--- a/hubsrht/templates/project-config.html
+++ b/hubsrht/templates/project-config.html
@@ -16,6 +16,7 @@
              </label>
              <input
                type="text"
                dir="auto"
                id="name"
                class="form-control"
                readonly
@@ -26,6 +27,7 @@
              <input
                class="form-control {{valid.cls("description")}}"
                type="text"
                dir="auto"
                id="description"
                name="description"
                placeholder="Short description of your project, shown in lists"
@@ -38,6 +40,7 @@
              <input
                class="form-control {{valid.cls("tags")}}"
                type="text"
                dir="auto"
                id="tags"
                name="tags"
                placeholder="Up to three comma-separated topics"
@@ -56,6 +59,7 @@
              <input
                class="form-control {{valid.cls("website")}}"
                type="text"
                dir="auto"
                id="website"
                name="website"
                placeholder="http://example.org"
diff --git a/hubsrht/templates/project-create.html b/hubsrht/templates/project-create.html
index ff12f8c..6d16650 100644
--- a/hubsrht/templates/project-create.html
+++ b/hubsrht/templates/project-create.html
@@ -23,6 +23,7 @@
      <label for="name">Project name</label>
      <input
        type="text"
        dir="auto"
        id="name"
        name="name"
        class="form-control {{valid.cls("name")}}"
diff --git a/hubsrht/templates/project-index.html b/hubsrht/templates/project-index.html
index 32e17ee..7439fc6 100644
--- a/hubsrht/templates/project-index.html
+++ b/hubsrht/templates/project-index.html
@@ -11,6 +11,7 @@
        <input
          name="search"
          type="text"
          dir="auto"
          placeholder="Search all public projects"
          class="form-control {% if search_error %}is-invalid{% endif %}"
          value="{{search or ""}}" />
diff --git a/hubsrht/templates/project-summary.html b/hubsrht/templates/project-summary.html
index 9f09d06..9e31034 100644
--- a/hubsrht/templates/project-summary.html
+++ b/hubsrht/templates/project-summary.html
@@ -218,6 +218,7 @@
        {{csrf_token()}}
        <div class="form-group">
          <textarea
            dir="auto"
            class="form-control"
            name="summary"
            rows="3"
diff --git a/hubsrht/templates/projects.html b/hubsrht/templates/projects.html
index 808624c..15613cb 100644
--- a/hubsrht/templates/projects.html
+++ b/hubsrht/templates/projects.html
@@ -34,6 +34,7 @@
      <input
        name="search"
        type="text"
        dir="auto"
        placeholder="Search {{user.canonical_name}}'s projects"
        class="form-control {% if search_error %}is-invalid{% endif %}"
        value="{{search or ""}}" />
diff --git a/hubsrht/templates/resource-list.html b/hubsrht/templates/resource-list.html
index 06aed11..3c03d3e 100644
--- a/hubsrht/templates/resource-list.html
+++ b/hubsrht/templates/resource-list.html
@@ -9,6 +9,7 @@
      <input
        name="search"
        type="text"
        dir="auto"
        placeholder="Search {{view}}"
        class="form-control{% if search_error %} is-invalid{% endif %}"
        value="{{ search if search else "" }}" />
diff --git a/hubsrht/templates/sources-manage.html b/hubsrht/templates/sources-manage.html
index 5118217..bc037b0 100644
--- a/hubsrht/templates/sources-manage.html
+++ b/hubsrht/templates/sources-manage.html
@@ -11,6 +11,7 @@
        <input
          name="search"
          type="text"
          dir="auto"
          placeholder="Search repositories"
          class="form-control{% if search_error %} is-invalid{% endif %}"
          value="{{ search if search else "" }}" />
diff --git a/hubsrht/templates/sources-select.html b/hubsrht/templates/sources-select.html
index 4836d67..5c05332 100644
--- a/hubsrht/templates/sources-select.html
+++ b/hubsrht/templates/sources-select.html
@@ -15,6 +15,7 @@
      <label for="{{ typename }}">Name</label>
      <input
        type="text"
        dir="auto"
        name="name"
        id="name"
        class="form-control {{ valid.cls("name") }}"
@@ -24,6 +25,7 @@
        <label for="description">Description</label>
        <input
          type="text"
          dir="auto"
          name="description"
          id="description"
          class="form-control {{valid.cls("description")}}"
@@ -49,6 +51,7 @@
      <input
        name="search"
        type="text"
        dir="auto"
        placeholder="Search repositories"
        class="form-control{% if search_error %} is-invalid{% endif %}"
        value="{{ search if search else "" }}" />
diff --git a/hubsrht/templates/tracker-new.html b/hubsrht/templates/tracker-new.html
index 61e2397..d3ef0fe 100644
--- a/hubsrht/templates/tracker-new.html
+++ b/hubsrht/templates/tracker-new.html
@@ -11,6 +11,7 @@
      <label for="{{ typename }}">Name</label>
      <input
        type="text"
        dir="auto"
        name="name"
        id="name"
        class="form-control {{ valid.cls("name") }}"
@@ -20,6 +21,7 @@
        <label for="description">Description</label>
        <textarea
          type="text"
          dir="auto"
          name="description"
          id="description"
          class="form-control {{valid.cls("description")}}"
@@ -51,6 +53,7 @@
      <input
        name="search"
        type="text"
        dir="auto"
        placeholder="Search ticket trackers"
        class="form-control{% if search_error %} is-invalid{% endif %}"
        value="{{ search if search else "" }}" />
diff --git a/hubsrht/templates/trackers-manage.html b/hubsrht/templates/trackers-manage.html
index 1c2a5a1..a317158 100644
--- a/hubsrht/templates/trackers-manage.html
+++ b/hubsrht/templates/trackers-manage.html
@@ -11,6 +11,7 @@
        <input
          name="search"
          type="text"
          dir="auto"
          placeholder="Search trackers"
          class="form-control{% if search_error %} is-invalid{% endif %}"
          value="{{ search if search else "" }}" />
-- 
2.42.0

[hub.sr.ht/patches] build failed

builds.sr.ht <builds@sr.ht>
Details
Message ID
<CXFJH5QCU8AR.2SGA8G7C7Y84W@cirno2>
In-Reply-To
<20231204120848.1348149-1-vcs@ersei.net> (view parent)
DKIM signature
missing
Download raw message
hub.sr.ht/patches: FAILED in 4m22s

[Set dir="auto"][0] from [Ersei Saggi][1]

[0]: https://lists.sr.ht/~sircmpwn/sr.ht-dev/patches/47344
[1]: vcs@ersei.net

✓ #1107243 SUCCESS hub.sr.ht/patches/debian.yml    https://builds.sr.ht/~sircmpwn/job/1107243
✗ #1107242 FAILED  hub.sr.ht/patches/archlinux.yml https://builds.sr.ht/~sircmpwn/job/1107242
✓ #1107241 SUCCESS hub.sr.ht/patches/alpine.yml    https://builds.sr.ht/~sircmpwn/job/1107241
Reply to thread Export thread (mbox)