This is an automated email from the ASF dual-hosted git repository.

dill0wn pushed a commit to branch dw/hx_regex
in repository https://gitbox.apache.org/repos/asf/allura.git

commit 956b34bf8e8dcd21fec79eb9398f898e5d0a36a8
Author: Dillon Walls <[email protected]>
AuthorDate: Fri Jan 7 18:36:00 2022 +0000

    fixup! SF-6882 <hx> tag -> .hx-like
---
 Allura/allura/ext/admin/templates/project_admin.html          | 2 +-
 Allura/allura/ext/user_profile/templates/user_index.html      | 2 +-
 Allura/allura/templates/repo/tree.html                        | 2 +-
 Allura/allura/templates/user_subs.html                        | 2 +-
 Allura/allura/templates/widgets/neighborhood_add_project.html | 2 +-
 ForgeFiles/forgefiles/templates/files.html                    | 2 +-
 ForgeImporters/forgeimporters/trac/tests/data/test-list.html  | 2 +-
 ForgeShortUrl/forgeshorturl/templates/form.html               | 2 +-
 8 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/Allura/allura/ext/admin/templates/project_admin.html 
b/Allura/allura/ext/admin/templates/project_admin.html
index 2e7ee1d..2b06b14 100644
--- a/Allura/allura/ext/admin/templates/project_admin.html
+++ b/Allura/allura/ext/admin/templates/project_admin.html
@@ -106,7 +106,7 @@
     .tour-step-info {
         margin-bottom: 20px;
     }
-    .tour-step-info h2 {
+    .tour-step-info .h2-like {
         padding-bottom: 0;
     }
     .tour-step-info p {
diff --git a/Allura/allura/ext/user_profile/templates/user_index.html 
b/Allura/allura/ext/user_profile/templates/user_index.html
index eeda770..a148c4a 100644
--- a/Allura/allura/ext/user_profile/templates/user_index.html
+++ b/Allura/allura/ext/user_profile/templates/user_index.html
@@ -54,7 +54,7 @@
   {% if h.is_site_admin(c.user) %}
     {# maybe could be a regular user profile "section" but would need a way to 
make it conditionally display #}
     <div class="profile-section tools">
-        <h3 style="background: darkorange">Site Admin</h3>
+        <h3 class="h3-like" style="background: darkorange">Site Admin</h3>
         <div class="section-body">
             <ul>
                 <li><a href="/nf/admin/user/{{ user.username }}">Admin details 
page for {{ user.username }}</a></li>
diff --git a/Allura/allura/templates/repo/tree.html 
b/Allura/allura/templates/repo/tree.html
index f9a8f5d..fd67acf 100644
--- a/Allura/allura/templates/repo/tree.html
+++ b/Allura/allura/templates/repo/tree.html
@@ -77,7 +77,7 @@ form.tarball button:hover {
 {{c.tree_widget.display(repo=repo, commit=commit, tree=tree, path=path)}}
 {% set name, text = tree.readme() %}
 {% if name %}
-  <h1 id="readme">Read Me</h1>
+  <h1 id="readme" class="h1-like">Read Me</h1>
   {{h.render_any_markup(name, text)}}
 {% endif %}
 {% endblock %}
diff --git a/Allura/allura/templates/user_subs.html 
b/Allura/allura/templates/user_subs.html
index 6bc504d..e2f1e03 100644
--- a/Allura/allura/templates/user_subs.html
+++ b/Allura/allura/templates/user_subs.html
@@ -35,7 +35,7 @@
     <p>No subscriptions.</p>
   {% endif %}
 
-  <h2 id="notifications">User notifications</h2>
+  <h2 id="notifications" class="h2-like">User notifications</h2>
   <form method="POST" action="update_user_notifications">
   <div class="grid-10">
       <input type="checkbox" id="allow_umnotif" name="allow_umnotif" {% if 
c.user.get_pref('mention_notifications') %} checked {% endif %}>
diff --git a/Allura/allura/templates/widgets/neighborhood_add_project.html 
b/Allura/allura/templates/widgets/neighborhood_add_project.html
index feffa35..c94001b 100644
--- a/Allura/allura/templates/widgets/neighborhood_add_project.html
+++ b/Allura/allura/templates/widgets/neighborhood_add_project.html
@@ -48,7 +48,7 @@
     </div>
 
     {% if not neighborhood.project_template %}
-    <h2 style="padding-left:20px">
+    <h2 class="h2-like" style="padding-left:20px">
         Select the tools to use in your project.  You may add or remove tools 
at any time.
     </h2>
     <span class="fielderror">{{ c.form_errors.get('tools', '') }}</span>
diff --git a/ForgeFiles/forgefiles/templates/files.html 
b/ForgeFiles/forgefiles/templates/files.html
index af002b9..47708ed 100755
--- a/ForgeFiles/forgefiles/templates/files.html
+++ b/ForgeFiles/forgefiles/templates/files.html
@@ -169,7 +169,7 @@ Files {% if folder_object %} - 
{{path_links(folder_path.split('/'), urls)}} {% e
                 {% if not file.disabled  %}
                     {% set name, text = file.readme() %}
                     {% if name %}
-                        <h1 id="readme"> Read Me </h1>
+                        <h1 id="readme" class="h1-like"> Read Me </h1>
                         {{h.render_any_markup(name, text)}}
                     {% endif %}
                 {% endif %}
diff --git a/ForgeImporters/forgeimporters/trac/tests/data/test-list.html 
b/ForgeImporters/forgeimporters/trac/tests/data/test-list.html
index a712324..712b359 100644
--- a/ForgeImporters/forgeimporters/trac/tests/data/test-list.html
+++ b/ForgeImporters/forgeimporters/trac/tests/data/test-list.html
@@ -188,7 +188,7 @@
             </tr>
           </table>
             <div class="description">
-              <h3 id="comment:description">
+              <h3 id="comment:description" class="h3-like">
                 Description
               </h3>
               <div class="searchable">
diff --git a/ForgeShortUrl/forgeshorturl/templates/form.html 
b/ForgeShortUrl/forgeshorturl/templates/form.html
index 855563c..8c58513 100644
--- a/ForgeShortUrl/forgeshorturl/templates/form.html
+++ b/ForgeShortUrl/forgeshorturl/templates/form.html
@@ -20,7 +20,7 @@
 
 {% set app = app or c.app %}
 <div>
-    <h1 id="short-url-form-title" style="display:none"><span 
id="short-url-form-action-label">Add</span> Short URL</h1>
+    <h1 id="short-url-form-title" class="h1-like" style="display:none"><span 
id="short-url-form-action-label">Add</span> Short URL</h1>
     <form method="post" 
action="{{c.project.url()}}admin/{{app.config.options.mount_point}}/add" 
id="short-url-form">
         <input type="hidden" name="update"/>
         <label class="grid-13">Short Name</label>

Reply via email to