]> git.0d.be Git - panikweb.git/commitdiff
misc: cleanup section name stuff
authorFrédéric Péters <fpeters@0d.be>
Wed, 22 Apr 2020 19:40:27 +0000 (21:40 +0200)
committerFrédéric Péters <fpeters@0d.be>
Wed, 22 Apr 2020 19:40:27 +0000 (21:40 +0200)
panikweb/paniktags/templatetags/paniktags.py
panikweb_templates/static/js/specifics.js
panikweb_templates/templates/base.html

index a8f9e7d540a018faa24de9526df7cf96544bef45..6a9958a035c326f6bb5a0a04f9eb950c1dbe244f 100644 (file)
@@ -130,7 +130,7 @@ def player(context):
     }
 
 @register.inclusion_tag('includes/metaNav.html', takes_context=True)
-def metanav(context, active=None):
+def metanav(context):
     try:
         request_path = context['request'].path
     except KeyError:
index 9e898a8e11e2a220d9737a7e85dd641dd895ce06..32a7f17199546dbbeabee8b60e315db5a51068d3 100644 (file)
@@ -61,18 +61,6 @@ $(function() {
                var newTitle = html?html.match(/<title>(.*?)<\/title>/):'';
                if(newTitle){document.title = newTitle[1].trim().decodeHTML();}
 
-               /*
-               Quite UGLY but needed for styling the whole body with ID
-               Feel free to correct and find a better way
-               According to this link the probles is that $(html).filter('body').Attr('id') will not work!
-               http://www.devnetwork.net/viewtopic.php?f=13&t=117065
-               */
-               if(sectionName = $(html).find('[data-section]').attr('data-section')){
-                       $('body').attr('id',sectionName);
-               }else{
-                       var bodyID = html.match(/<body id="(.*?)">/);   
-                       if(bodyID){$('body').attr('id',bodyID[1].trim());}      
-               }
                $.scrollTo('#Changing',1000,{offset:-$('#metaNav').height()+2});
                init();
 
index b20b7cd4305c0d529c60aa18be4c181fbfac7046..97df707c2c4a1812b483db7f61d583fc1475e9e7 100644 (file)
@@ -45,9 +45,9 @@
     {% block extrascripts %}{% endblock %}
 </head>
 
-<body {% block bodyattr %}id="{{sectionName}}" class="section-{{sectionName}}"{% endblock %}>
+<body {% block bodyattr %}{% endblock %}>
        <div id="All">
-               {% block meta %}<div id="metaNav">{% metanav active=sectionName %}</div>{% endblock %}
+               {% block meta %}<div id="metaNav">{% metanav %}</div>{% endblock %}
                <div id="Commons" class="cf" >
             <div class="wrapper sided" >
                 <div id="backgroundBox" class="cf">
@@ -60,7 +60,7 @@
                        </div>
                    </div>
                </div>
-               <div id="Changing" class="cf" data-section="{{ sectionName }}">
+               <div id="Changing" class="cf">
                        {% block toptitle %}{% endblock %}
                        <div id="Nav" class="cf" >
                                {% block nav %}{% endblock %}