wcag fixes
authorRadek Czajka <radoslaw.czajka@nowoczesnapolska.org.pl>
Thu, 22 Dec 2011 10:46:39 +0000 (11:46 +0100)
committerRadek Czajka <radoslaw.czajka@nowoczesnapolska.org.pl>
Thu, 22 Dec 2011 10:46:39 +0000 (11:46 +0100)
37 files changed:
apps/catalogue/templates/catalogue/activity.html
apps/catalogue/templates/catalogue/base.html
apps/catalogue/templates/catalogue/book_append_to.html
apps/catalogue/templates/catalogue/book_detail.html
apps/catalogue/templates/catalogue/book_edit.html
apps/catalogue/templates/catalogue/chunk_add.html
apps/catalogue/templates/catalogue/chunk_edit.html
apps/catalogue/templates/catalogue/document_create_missing.html
apps/catalogue/templates/catalogue/document_list.html
apps/catalogue/templates/catalogue/document_upload.html
apps/catalogue/templates/catalogue/image_detail.html
apps/catalogue/templates/catalogue/image_list.html
apps/catalogue/templates/catalogue/my_page.html
apps/catalogue/templates/catalogue/upload_pdf.html
apps/catalogue/templates/catalogue/user_list.html
apps/catalogue/templates/catalogue/user_page.html
apps/wiki/templates/wiki/document_details_base.html
apps/wiki/templates/wiki/tabs/annotations_view_item.html
apps/wiki/templates/wiki/tabs/gallery_view_item.html
apps/wiki/templates/wiki/tabs/history_view_item.html
apps/wiki/templates/wiki/tabs/source_editor_item.html
apps/wiki/templates/wiki/tabs/summary_view_item.html
apps/wiki/templates/wiki/tabs/wysiwyg_editor_item.html
apps/wiki_img/templates/wiki_img/base.html [deleted file]
apps/wiki_img/templates/wiki_img/document_details_base.html
apps/wiki_img/templates/wiki_img/tabs/motifs_editor_item.html
apps/wiki_img/templates/wiki_img/tabs/objects_editor_item.html
apps/wiki_img/templates/wiki_img/tabs/source_editor_item.html
apps/wiki_img/templates/wiki_img/tabs/summary_view_item.html
redakcja/static/css/filelist.css
redakcja/static/css/master.css
redakcja/static/js/wiki/loader.js
redakcja/static/js/wiki/loader_readonly.js
redakcja/static/js/wiki/view_editor_source.js
redakcja/static/js/wiki_img/loader.js
redakcja/static/js/wiki_img/loader_readonly.js
redakcja/templates/base.html

index 9c2eac5..125ae28 100755 (executable)
@@ -4,6 +4,9 @@
 {% load wall %}
 
 
+{% block titleextra %}{% trans "Activity" %}{% endblock %}
+
+
 {% block content %}
 
 <h1><a href='{% url "catalogue_activity" prev_day.isoformat %}'>&lt;</a>
index 65bbf33..78a8ee5 100644 (file)
@@ -2,10 +2,11 @@
 {% load catalogue %}
 <!DOCTYPE html>
 <html>
-<head>
+<head lang="{{ LANGUAGE_CODE }}">
     <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
     {% compressed_css 'catalogue' %}
-    <title>{% block title %}{% trans "Platforma Redakcyjna" %}{% endblock title %}</title>
+    <title>{% block title %}{% trans "Platforma Redakcyjna" %} ::
+        {% block titleextra %}{% endblock %}{% endblock title %}</title>
 </head>
 <body>
 
index 76a5962..c1ecc29 100755 (executable)
@@ -1,6 +1,8 @@
 {% extends "catalogue/base.html" %}
 {% load i18n %}
 
+{% block titleextra %}{% trans "Append book" %}{% endblock %}
+
 {% block leftcolumn %}
        <form enctype="multipart/form-data" method="POST" action="">
     {% csrf_token %}
index bfd4ef5..cbc6c32 100755 (executable)
@@ -1,6 +1,10 @@
 {% extends "catalogue/base.html" %}
 {% load book_list comments i18n %}
 
+
+{% block titleextra %}{{ book.title }}{% endblock %}
+
+
 {% block content %}
 
 
index 3fffa96..43fe0ea 100755 (executable)
@@ -1,6 +1,10 @@
 {% extends "catalogue/base.html" %}
 {% load i18n %}
 
+
+{% block titleextra %}{% trans "Edit book" %}{% endblock %}
+
+
 {% block leftcolumn %}
        <form enctype="multipart/form-data" method="POST" action="">
     {% csrf_token %}
index b287479..f813b6f 100755 (executable)
@@ -1,6 +1,10 @@
 {% extends "catalogue/base.html" %}
 {% load i18n %}
 
+
+{% block titleextra %}{% trans "Split chunk" %}{% endblock %}
+
+
 {% block content %}
     <h1>{% trans "Split chunk" %}</h1>
 
index bdacd02..cac192a 100755 (executable)
@@ -2,6 +2,10 @@
 {% load url from future %}
 {% load i18n %}
 
+
+{% block titleextra %}{% trans "Chunk settings" %}{% endblock %}
+
+
 {% block content %}
     <h1>{% trans "Chunk settings" %}</h1>
 
index 47c99f9..aa2ce06 100644 (file)
@@ -1,6 +1,10 @@
 {% extends "catalogue/base.html" %}
 {% load i18n %}
 
+
+{% block titleextra %}{% trans "Create a new book" %}{% endblock %}
+
+
 {% block content %}
     <h1>{% trans "Create a new book" %}</h1>
 
index 920f25a..2d608dc 100644 (file)
@@ -3,6 +3,8 @@
 {% load i18n %}
 {% load catalogue book_list %}
 
+{% block titleextra %}{% trans "Book list" %}{% endblock %}
+
 
 {% block content %}
     {% book_list %}
index a2e8513..0f8929c 100644 (file)
@@ -2,6 +2,9 @@
 {% load i18n %}
 
 
+{% block titleextra %}{% trans "Bulk document upload" %}{% endblock %}
+
+
 {% block leftcolumn %}
 
 
index 8049b55..cd77654 100755 (executable)
@@ -1,6 +1,10 @@
 {% extends "catalogue/base.html" %}
 {% load book_list comments i18n %}
 
+
+{% block titleextra %}{{ object.title }}{% endblock %}
+
+
 {% block content %}
 
 
index 3ff75bc..c6916e8 100755 (executable)
@@ -4,6 +4,10 @@
 {% load catalogue book_list %}
 
 
+{% block titleextra %}{% trans "Image list" %}{% endblock %}
+
+
+
 {% block content %}
     {% image_list %}
 {% endblock content %}
index 48a2179..07b9242 100755 (executable)
@@ -4,6 +4,9 @@
 {% load catalogue book_list wall %}
 
 
+{% block titleextra %}{% trans "My page" %}{% endblock %}
+
+
 {% block leftcolumn %}
     {% book_list request.user %}
 {% endblock leftcolumn %}
index a9670e4..265b84a 100755 (executable)
@@ -2,6 +2,9 @@
 {% load i18n %}
 
 
+{% block titleextra %}{% trans "PDF file upload" %}{% endblock %}
+
+
 {% block content %}
 
 
index 9e1e83e..bc8af63 100755 (executable)
@@ -2,6 +2,10 @@
 
 {% load i18n %}
 
+
+{% block titleextra %}{% trans "Users" %}{% endblock %}
+
+
 {% block leftcolumn %}
 
 <h1>{% trans "Users" %}</h1>
index 89b4ece..4be4ca3 100755 (executable)
@@ -4,6 +4,9 @@
 {% load catalogue book_list wall %}
 
 
+{% block titleextra %}{{ viewed_user|nice_name }}{% endblock %}
+
+
 {% block leftcolumn %}
     <h1>{{ viewed_user|nice_name }}</h1>
     {% book_list viewed_user %}
index 9ef0c33..5eda094 100644 (file)
@@ -1,7 +1,7 @@
 {% extends "base.html" %}
 {% load toolbar_tags i18n %}
 
-{% block title %}{{ book.title }} - {{ block.super }}{% endblock %}
+{% block titleextra %}{{ chunk.pretty_title }}{% endblock %}
 {% block extrahead %}
 {% load compressed %}
 {% compressed_css 'detail' %}
index c6165fc..7f17ce5 100644 (file)
@@ -1,4 +1,4 @@
 {% load i18n %}
 <li id="AnnotationsPerspective" data-ui-related="side-annotations" data-ui-jsclass="AnnotationsPerspective">
-    <sup title="{% trans "Annotations" %}">[1]</sup>
+    <a href="#"><sup title="{% trans "Annotations" %}">[1]</sup></a>
 </li>
index 20505d6..0ad3add 100644 (file)
@@ -1,4 +1,4 @@
 {% load i18n %}
 <li id="ScanGalleryPerspective" data-ui-related="side-gallery" data-ui-jsclass="ScanGalleryPerspective" class='active'>
-    <img src="{{STATIC_URL}}icons/image-x-generic.png" alt="{% trans "Gallery" %}" title="{% trans "Gallery" %}" />
+    <a href="#"><img src="{{STATIC_URL}}icons/image-x-generic.png" alt="{% trans "Gallery" %}" title="{% trans "Gallery" %}" /></a>
 </li>
index bf39a33..e9375cd 100644 (file)
@@ -1,4 +1,4 @@
 {% load i18n %}
 <li id="HistoryPerspective" data-ui-related="history-view-editor" data-ui-jsclass="HistoryPerspective">
-    <span>{% trans "History" %}</span>
+    <a href="#">{% trans "History" %}</a>
 </li>
index 89e0fae..22b6d66 100644 (file)
@@ -2,5 +2,5 @@
 <li id="CodeMirrorPerspective"
        data-ui-related="source-editor"
        data-ui-jsclass="CodeMirrorPerspective">
-    <span>{% trans "Source code" %}</span>
+    <a href="#">{% trans "Source code" %}</a>
 </li>
\ No newline at end of file
index 856b3d7..ea7ae74 100644 (file)
@@ -1,4 +1,4 @@
 {% load i18n %}
 <li id="SummaryPerspective" data-ui-related="summary-view-editor" data-ui-jsclass="SummaryPerspective">
-    <span>{% trans "Summary" %}</span>
+    <a href="#">{% trans "Summary" %}</a>
 </li>
index 718ec49..ec853cd 100644 (file)
@@ -1,4 +1,4 @@
 {% load i18n %}
 <li id="VisualPerspective" data-ui-related="simple-editor" data-ui-jsclass="VisualPerspective">
-    <span>{% trans "Visual editor" %}</span>
+    <a href="#">{% trans "Visual editor" %}</a>
 </li>
diff --git a/apps/wiki_img/templates/wiki_img/base.html b/apps/wiki_img/templates/wiki_img/base.html
deleted file mode 100644 (file)
index e512e8d..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-{% extends "base.html" %}
-{% load compressed i18n %}
-
-{% block title %}{{ document_name }} - {{ block.super }}{% endblock %}
-
-{% block extrahead %}
-{% compressed_css 'listing' %}
-{% endblock %}
-
-{% block extrabody %}
-{% compressed_js 'listing' %}
-{% endblock %}
-
-{% block maincontent %}
-<h1><img src="{{ STATIC_URL }}img/logo.png" alt="Home">{% trans "Platforma Redakcyjna" %}</h1>
-<div id="wiki_layout_left_column">
-       {% block leftcolumn %}
-       {% endblock leftcolumn %}
-</div>
-<div id="wiki_layout_right_column">
-       {% block rightcolumn %}
-       {% endblock rightcolumn %}
-</div>
-{% endblock maincontent %}
\ No newline at end of file
index 93c267c..d329c04 100644 (file)
@@ -1,7 +1,7 @@
 {% extends "base.html" %}
 {% load toolbar_tags i18n %}
 
-{% block title %}{{ document.name }} - {{ block.super }}{% endblock %}
+{% block title %}{{ document.title }} - {{ block.super }}{% endblock %}
 {% block extrahead %}
 {% load compressed %}
 {% compressed_css 'detail' %}
index 33ad25b..a5a3c34 100644 (file)
@@ -1,4 +1,4 @@
 {% load i18n %}
 <li id="MotifsPerspective" data-ui-related="motifs-editor" data-ui-jsclass="MotifsPerspective">
-    <span>{% trans "Motifs" %}</span>
+    <a href="#">{% trans "Motifs" %}</a>
 </li>
index d5b0832..9fc3af9 100644 (file)
@@ -1,4 +1,4 @@
 {% load i18n %}
 <li id="ObjectsPerspective" data-ui-related="objects-editor" data-ui-jsclass="ObjectsPerspective">
-    <span>{% trans "Objects" %}</span>
+    <a href="#">{% trans "Objects" %}</a>
 </li>
index 89e0fae..22b6d66 100644 (file)
@@ -2,5 +2,5 @@
 <li id="CodeMirrorPerspective"
        data-ui-related="source-editor"
        data-ui-jsclass="CodeMirrorPerspective">
-    <span>{% trans "Source code" %}</span>
+    <a href="#">{% trans "Source code" %}</a>
 </li>
\ No newline at end of file
index 2b4daeb..bae3ea5 100644 (file)
@@ -1,5 +1,5 @@
 {% load i18n %}
 {% load wiki %}
 <li id="SummaryPerspective" data-ui-related="summary-view-editor" data-ui-jsclass="SummaryPerspective">
-    <span>{% trans "Summary" %}</span>
+    <a href="#">{% trans "Summary" %}</a>
 </li>
index c347679..4cf22f9 100644 (file)
@@ -115,7 +115,7 @@ td {
 }
 
 a, a:visited, a:active {
-       color: #bf6000;
+       color: #a05000;
        text-decoration: none;
 }
 
index c1060bc..09a6069 100644 (file)
@@ -189,6 +189,10 @@ body {
     float: left;
 }
 
+.tabs a {
+    color: black;
+}
+
 #tabs-right {
     float: right;
     padding-right: 1em;
index f2d7fb7..da95172 100644 (file)
@@ -33,6 +33,7 @@ $(function()
                 * TABS
                 */
         $('.tabs li').live('click', function(event, callback) {
+            event.preventDefault();
                        $.wiki.switchToTab(this);
         });
 
index c22e9d7..a859ec6 100644 (file)
@@ -24,6 +24,7 @@ $(function()
                 * TABS
                 */
         $('#tabs li').live('click', function(event, callback) {
+            event.preventDefault();
                        $.wiki.switchToTab(this);
         });
 
index 8fb9358..547456f 100644 (file)
@@ -19,7 +19,7 @@
                                lineNumbers: true,
                                width: "100%",
                                height: "100%",
-                               tabMode: 'spaces',
+                               tabMode: 'default',
                                indentUnit: 0,
                                readOnly: CurrentDocument.readonly || false,
                                initCallback: function(){
index 9cfc640..c3fe03e 100644 (file)
@@ -33,6 +33,7 @@ $(function()
                 * TABS
                 */
         $('.tabs li').live('click', function(event, callback) {
+            event.preventDefault();
                        $.wiki.switchToTab(this);
         });
 
index b2f574d..99e5ad0 100755 (executable)
@@ -25,6 +25,7 @@ $(function()
                 * TABS
                 */
         $('#tabs li').live('click', function(event, callback) {
+            event.preventDefault();
                        $.wiki.switchToTab(this);
         });
 
index 4f40b29..595007d 100644 (file)
@@ -1,9 +1,10 @@
 <!DOCTYPE html >
 {% load i18n %}
 <html>
-    <head>
+    <head lang="{{ LANGUAGE_CODE }}">
         <meta charset="utf-8" />
-        <title>{% block title %}{% trans "Platforma Redakcyjna" %}{% block subtitle %}{% endblock subtitle %}{% endblock title%}</title>
+        <title>{% block title %}{% trans "Platforma Redakcyjna" %} ::
+            {% block titleextra %}{% endblock titleextra %}{% endblock title%}</title>
         {% block extrahead %}
         {% endblock %}
     </head>