From 3e0073d9716160a04b18ef2fbb8723d9d42b7a24 Mon Sep 17 00:00:00 2001 From: Marcin Koziej Date: Thu, 26 Apr 2012 11:45:11 +0200 Subject: [PATCH] html preview imported from WL --- .../templates/catalogue/book_text.html | 32 ++ apps/catalogue/views.py | 19 +- redakcja/static/css/book.css | 406 ++++++++++++++++++ redakcja/static/icons/revert_.png | Bin 0 -> 861 bytes redakcja/static/img/arrow-down.png | Bin 0 -> 687 bytes redakcja/static/img/arrow-up.png | Bin 0 -> 761 bytes redakcja/static/img/logo-220.png | Bin 0 -> 16465 bytes redakcja/static/js/book_text/book.js | 61 +++ .../js/book_text/jquery.eventdelegation.js | 55 +++ .../js/book_text/jquery.highlightfade.js | 150 +++++++ .../static/js/book_text/jquery.scrollto.js | 194 +++++++++ 11 files changed, 913 insertions(+), 4 deletions(-) create mode 100644 apps/catalogue/templates/catalogue/book_text.html create mode 100644 redakcja/static/css/book.css create mode 100755 redakcja/static/icons/revert_.png create mode 100644 redakcja/static/img/arrow-down.png create mode 100644 redakcja/static/img/arrow-up.png create mode 100644 redakcja/static/img/logo-220.png create mode 100644 redakcja/static/js/book_text/book.js create mode 100644 redakcja/static/js/book_text/jquery.eventdelegation.js create mode 100644 redakcja/static/js/book_text/jquery.highlightfade.js create mode 100644 redakcja/static/js/book_text/jquery.scrollto.js diff --git a/apps/catalogue/templates/catalogue/book_text.html b/apps/catalogue/templates/catalogue/book_text.html new file mode 100644 index 00000000..dc7a80d2 --- /dev/null +++ b/apps/catalogue/templates/catalogue/book_text.html @@ -0,0 +1,32 @@ +{% load i18n %} + + + + + {% trans "Redakcja" %} :: {{ book.title }} + + + + + + + + + + + + {{ html|safe }} + + diff --git a/apps/catalogue/views.py b/apps/catalogue/views.py index 2ee94aea..d0213daa 100644 --- a/apps/catalogue/views.py +++ b/apps/catalogue/views.py @@ -12,12 +12,13 @@ from django.core.urlresolvers import reverse from django.db.models import Count, Q from django import http from django.http import Http404, HttpResponse, HttpResponseForbidden -from django.shortcuts import get_object_or_404, render +from django.shortcuts import get_object_or_404, render, render_to_response from django.utils.encoding import iri_to_uri from django.utils.http import urlquote_plus from django.utils.translation import ugettext_lazy as _ from django.views.decorators.http import require_POST from django.views.generic.simple import direct_to_template +from django.template import RequestContext from apiclient import NotAuthorizedError from catalogue import forms @@ -225,10 +226,20 @@ def book_html(request, slug): return HttpResponseForbidden("Not authorized.") doc = book.wldocument(parse_dublincore=False) - html = doc.as_html(flags=['full-page']) + html = doc.as_html() + html = html.get_string() if html is not None else '' - response = http.HttpResponse(html, content_type='text/html', mimetype='text/html') - return response + # response = http.HttpResponse(html, content_type='text/html', mimetype='text/html') + # return response + # book_themes = {} + # for fragment in book.fragments.all().iterator(): + # for theme in fragment.tags.filter(category='theme').iterator(): + # book_themes.setdefault(theme, []).append(fragment) + + # book_themes = book_themes.items() + # book_themes.sort(key=lambda s: s[0].sort_key) + return render_to_response('catalogue/book_text.html', locals(), + context_instance=RequestContext(request)) @never_cache diff --git a/redakcja/static/css/book.css b/redakcja/static/css/book.css new file mode 100644 index 00000000..354a8396 --- /dev/null +++ b/redakcja/static/css/book.css @@ -0,0 +1,406 @@ +body { + font-size: 16px; + font: Georgia, "Times New Roman", serif; + line-height: 1.5em; + margin: 0; +} + +a { + color: blue; + text-decoration: none; +} + +#book-text { + margin: 3em; + max-width: 36em; +} + +/* ================================== */ +/* = Header with logo and menu = */ +/* ================================== */ +#header { + margin: 3.4em 0 0 1.4em; +} + +img { + border: none; +} + +#logo { + font-size: 1.5em; +} +#logo a { + color: black; +} + +#menu { + position: fixed; + left: 0em; + top: 0em; + width: 100%; + height: 1.5em; + background: #333; + color: #FFF; + opacity: 0.9; + z-index: 99; +} + +#menu ul { + list-style: none; + padding: 0; + margin: 0; +} + +#menu li a { + display: block; + float: left; + height: 1.5em; + margin-left: 0.5em; + text-align: center; + color: #FFF; + padding: 0 1em; +} +#menu li a.menu { + padding-right: 1.5em; +} + +#menu li a.menu:hover, #menu li a.menu:active { + color: #000; + background: #FFF url(/media/static/img/arrow-down.png) no-repeat center right; +} + +#menu li a.menu.selected { + color: #000; + background: #FFF url(/media/static/img/arrow-up.png) no-repeat center right; +} +#menu a.menu-link { + display: block; + float: left; + height: 1.5em; + margin-left: 0.5em; + text-align: center; + color: #FFF; +} +#menu span { + color: #888; + font-style: italic; + font-size: .75em; + margin-right: 0.5em; +} + + +#toc, #themes, #nota_red, #info { + position: fixed; + left: 0em; + top: 1.5em; + width: 37em; + padding: 1.5em; + background: #FFF; + border-bottom: 0.25em solid #DDD; + border-right: 0.25em solid #DDD; + display: none; + height: 16em; + overflow-x: hidden; + overflow-y: auto; + opacity: 0.9; + z-index: 99; +} +#download { + position: fixed; + left: 0em; + top: 1.5em; + width: 37em; + padding: 1.5em; + background: #FFF; + border-bottom: 0.25em solid #DDD; + border-right: 0.25em solid #DDD; + display: none; + height: 10em; + overflow-x: hidden; + overflow-y: auto; + opacity: 0.9; + z-index: 99; +} + +#toc ol, #themes ol { + list-style: none; + padding: 0; + margin: 0; +} + +#toc ol li { + font-weight: bold; +} + +#toc ol ol { + padding: 0 0 1.5em 1.5em; + margin: 0; +} + +#toc ol ol li { + font-weight: normal; +} + +#toc h2 { + display: none; +} + +#toc .anchor { + float: none; + margin: 0; + color: blue; + font-size: 16px; + position: inherit; +} + +#info p { + text-align: justify; + margin: 1.5em 0 0; +} + +/* =================================================== */ +/* = Common elements: headings, paragraphs and lines = */ +/* =================================================== */ +h1 { + font-size: 3em; + margin: 1.5em 0; + text-align: center; + line-height: 1.5em; + font-weight: bold; +} + +h2 { + font-size: 2em; + margin: 1.5em 0 0; + font-weight: bold; + line-height: 1.5em; +} + +h3 { + font-size: 1.5em; + margin: 1.5em 0 0; + font-weight: normal; + line-height: 1.5em; +} + +h4 { + font-size: 1em; + margin: 1.5em 0 0; + line-height: 1.5em; +} + +p { + margin: 0; +} + +/* ======================== */ +/* = Footnotes and themes = */ +/* ======================== */ +.theme-begin { + border-left: 0.1em solid #DDDDDD; + color: #777; + padding: 0 0.5em; + width: 7.5em; + + font-style: normal; + font-weight: normal; + font-variant: normal; + letter-spacing: 0; + text-transform: none; + text-decoration: none; + + font-size: 16px; + float: right; + margin-right: -9.5em; + margin-bottom: 0.5em; + clear: both; + left: 40em; + line-height: 1.5em; + text-align: left; +} + +.annotation { + font-style: normal; + font-weight: normal; + font-size: 12px; + padding-left: 2px; + position: relative; + top: -4px; +} + +#footnotes { + margin-top: 3em; +} + +#footnotes .annotation { + display: block; + float: left; + width: 2.5em; + clear: both; +} + +#footnotes div { + margin: 1.5em 0 0 0; +} + +#footnotes p, #footnotes ul { + margin-left: 2.5em; + font-size: 0.875em; +} + +#footnotes .permalink { + font-size: .75em; +} + +blockquote { + font-size: 0.875em; +} + +/* ============= */ +/* = Numbering = */ +/* ============= */ +.verse, .paragraph { + position:relative; +} +.anchor { + position: absolute; + margin: -0.25em -0.5em; + left: -3em; + color: #777; + font-size: 12px; + width: 2em; + text-align: center; + padding: 0.25em 0.5em; + line-height: 1.5em; +} + +.anchor:hover, #book-text .anchor:active { + color: #FFF; + background-color: #CCC; +} + +/* =================== */ +/* = Custom elements = */ +/* =================== */ +span.author { + font-size: 0.5em; + display: block; + line-height: 1.5em; + margin-bottom: 0.25em; +} + +span.collection { + font-size: 0.375em; + display: block; + line-height: 1.5em; + margin-bottom: -0.25em; +} + +span.subtitle { + font-size: 0.5em; + display: block; + line-height: 1.5em; + margin-top: -0.25em; +} + +span.translator { + font-size: 0.375em; + display: block; + line-height: 1.5em; + margin-top: 0.25em; +} + +div.didaskalia { + font-style: italic; + margin: 0.5em 0 0 1.5em; +} + +div.kwestia { + margin: 0.5em 0 0; +} + +div.stanza { + margin: 1.5em 0 0; +} + +div.kwestia div.stanza { + margin: 0; +} + +p.paragraph { + text-align: justify; + margin: 1.5em 0 0; +} + +p.motto { + text-align: justify; + font-style: italic; + margin: 1.5em 0 0; +} + +p.motto_podpis { + font-size: 0.875em; + text-align: right; +} + +div.fragment { + border-bottom: 0.1em solid #999; + padding-bottom: 1.5em; +} + +div.note p, div.dedication p, div.note p.paragraph, div.dedication p.paragraph { + text-align: right; + font-style: italic; +} + +hr.spacer { + height: 3em; + visibility: hidden; +} + +hr.spacer-line { + margin: 1.5em 0; + border: none; + border-bottom: 0.1em solid #000; +} + +p.spacer-asterisk { + padding: 0; + margin: 1.5em 0; + text-align: center; +} + +div.person-list ol { + list-style: none; + padding: 0 0 0 1.5em; +} + +p.place-and-time { + font-style: italic; +} + +em.math, em.foreign-word, em.book-title, em.didaskalia { + font-style: italic; +} + +em.author-emphasis { + letter-spacing: 0.1em; +} + +em.person { + font-style: normal; + font-variant: small-caps; +} + +.verse:after { + content: "\feff"; +} + + +/* =================================== */ +/* = Hide some elements for printing = */ +/* =================================== */ + +@media print { + #menu {display: none;} +} diff --git a/redakcja/static/icons/revert_.png b/redakcja/static/icons/revert_.png new file mode 100755 index 0000000000000000000000000000000000000000..afdf20d7d575ca2f1728939514b32a5a75c2bd01 GIT binary patch literal 861 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 literal 0 HcmV?d00001 diff --git a/redakcja/static/img/logo-220.png b/redakcja/static/img/logo-220.png new file mode 100644 index 0000000000000000000000000000000000000000..9b15e88a308e0a49d7468d9284b2ae34f4c5a34d GIT binary patch literal 16465 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/zWzF7&oPor9|V@o%5s^yM7S zZeyX-R_MTx0T*^_{v$oU_3|AJtses2+P5Nc`}pTphk_yBjpOfwSCAsV_h3{QM1k*z z^J|~lMB9-Y$H-q89u($MP4Ddm>N*9p+hnE}nGt>;G)BHRl4f`oXHi8vqLfrkD=`Pu zW4ilAxaDy*rm*+jIzO{qhsChP< z`=I1^NkTtM%1n9Mj@{ekpZQg%L66f#L>}Z|Kb+fhUWXCb+rx5#;J^a!Zi_>!Q6s%dUj7UvxKcv3u}s>kkRc6(P$4)$a2@dpNjSdv7BD-o;Veh)kNf$bwT@&bnD4B zeHuBd4?X`ilO@ksf<#WXy?}akfFynXx$U{TSC06!PO;wToarbp`q$a^kA8c1fbTB} zuEQZRt@&nxqwKbU^88P}&=?}*BBhik(Sa{sF2%*q9J3@n^{uY{UZ>!vt7zIX`HFy( z0NGzJ6jXz|{SNQk4rif)KBI3M{R2G?@6R`fuguj)7pHECy&DGFYw$UbOhAv4ODA-3Qxxr-Cz9 zyEwZ)<_lk?RfZGg4jWl5d|v%G)Z6=xCt9j^HJ2^H5+l0M>061|g%>nNZ!TOFkO^?p zxcv!)4y$AdIXh{FX=HAO4$bU*m@my8s4!eUDAlXcguX7ycR)+&F+nl-M{M@iM3bot zt1BkvM!-AS!LU33R2z`) zE($QQc*Yw!L-@@%9`9J29{HG&I)3=!XnT@MaqgR*XYz+)6sJOEcn^o8Vjr~+jH>iQ z(T@dmc@B%$Q`?nEL!~`FKWn$72t7&iyoP*#L9U zE^o_dqnR(YVl!_JtA-%%KNjAEV~E_IB%7J15H$XH1nH9C+0oSv@Qtg@bBZ-Fm#g@R zPE20>J1}1UdU^&m-48O=v|OKKM2o_*5tMtBcx||!j%_)#6T!xKCkVj@lJh- z+DSQU34&k(J}WMJ}O4Su+O&k+jU+6v`nJXoB~(0M)>z)huLXPpuQ z{cDnZRh_L&Dw7yyh)G-2YoSNIUvLj(4{6t8u!>d3;STn#BC&_-z8;X3-~itwV2sDH z5qo3Z_ws9eMXb+}BI>^5?r~d4+(tn=+}5v}EfM8NG8w&tAxbPTGlE-pzHWIP(dOUe zxXLpa63R7*9|y$3AQu#2t}wgOna(tzv|q<{Hp$PJ4K4Tvn;OlmBXC@Q%71lsh7P6$ ze 0) { + $.scrollTo(element, 500, {offset: {top: -50, left: 0}}); + foot_elem = $('#footnotes a[name="' + anchor_name + '"]'); + if (foot_elem.length > 0) { + $(element).parent().highlightFade('yellow'); + } + window.location.hash = anchor; + } + } + } + + $.highlightFade.defaults.speed = 3000; + $('#toc').hide(); + if ($('#toc li').length == 0) { + $('#menu li a[href="#toc"]').remove(); + } + if ($('#nota_red').length == 0) { + $('#menu li a[href="#nota_red"]').remove(); + } + + // On page load, scroll to anchor + scrollToAnchor(window.location.hash) + + $('#toc, #themes, #book-text').delegate('click', 'a', function(event) { + event.preventDefault(); + $('#menu li a.selected').click(); + scrollToAnchor($(this).attr('href')); + }); + + $('#menu li a.menu').toggle(function() { + $('#menu li a.selected').click(); + $(this).addClass('selected'); + $($(this).attr('href')).slideDown('fast'); + }, function() { + $(this).removeClass('selected'); + $($(this).attr('href')).slideUp('fast'); + }); + + + if (window.getSelection) { + $('.theme-begin').click(function() { + var selection = window.getSelection(); + selection.removeAllRanges(); + var range = document.createRange(); + + var e = $(".theme-end[fid='" + $(this).attr('fid') + "']")[0]; + + if (e) { + range.setStartAfter(this); + range.setEndBefore(e); + selection.addRange(range); + } + }); + } + +}); diff --git a/redakcja/static/js/book_text/jquery.eventdelegation.js b/redakcja/static/js/book_text/jquery.eventdelegation.js new file mode 100644 index 00000000..52fce074 --- /dev/null +++ b/redakcja/static/js/book_text/jquery.eventdelegation.js @@ -0,0 +1,55 @@ +/* + * jQuery Event Delegation Plugin - jquery.eventdelegation.js + * Fast flexible event handling + * + * January 2008 - Randy Morey (http://dev.distilldesign.com/) + */ + +(function ($) { + /* setup list of allowed events for event delegation + * only events that bubble are appropriate + */ + var allowed = {}; + $.each([ + 'click', + 'dblclick', + 'mousedown', + 'mouseup', + 'mousemove', + 'mouseover', + 'mouseout', + 'keydown', + 'keypress', + 'keyup' + ], function(i, eventName) { + allowed[eventName] = true; + }); + + $.fn.extend({ + delegate: function (event, selector, f) { + return $(this).each(function () { + if (allowed[event]) + $(this).bind(event, function (e) { + var el = $(e.target), + result = false; + + while (!$(el).is('body')) { + if ($(el).is(selector)) { + result = f.apply($(el)[0], [e]); + if (result === false) + e.preventDefault(); + return; + } + + el = $(el).parent(); + } + }); + }); + }, + undelegate: function (event) { + return $(this).each(function () { + $(this).unbind(event); + }); + } + }); +})(jQuery); \ No newline at end of file diff --git a/redakcja/static/js/book_text/jquery.highlightfade.js b/redakcja/static/js/book_text/jquery.highlightfade.js new file mode 100644 index 00000000..bbe39f07 --- /dev/null +++ b/redakcja/static/js/book_text/jquery.highlightfade.js @@ -0,0 +1,150 @@ +/** + * jQuery Plugin highlightFade (jquery.offput.ca/highlightFade) + * (c) 2006 Blair Mitchelmore (offput.ca) blair@offput.ca + */ +/** + * This is version 0.7 of my highlightFade plugin. It follows the yellow fade technique of Web 2.0 fame + * but expands it to allow any starting colour and allows you to specify the end colour as well. + * + * For the moment, I'm done with this plug-in. Unless I come upon a really cool feature it should have + * this plug-in will only receive updates to ensure future compatibility with jQuery. + * + * As of now (Aug. 16, 2006) the plugin has been written with the 1.0.1 release of jQuery (rev 249) which + * is available from http://jquery.com/src/jquery-1.0.1.js + * + * A note regarding rgb() syntax: I noticed that most browsers implement rgb syntax as either an integer + * (0-255) or percentage (0-100%) value for each field, that is, rgb(i/p,i/p,i/p); however, the W3C + * standard clearly defines it as "either three integer values or three percentage values" [http://www.w3.org/TR/CSS21/syndata.html] + * which I choose to follow despite the error redundancy of the typical behaviour browsers employ. + * + * Changelog: + * + * 0.7: + * - Added the awesome custom attribute support written by George Adamson (slightly modified) + * - Removed bgColor plugin dependency seeing as attr is customizable now... + * 0.6: + * - Abstracted getBGColor into its own plugin with optional test and data retrieval functions + * - Converted all $ references to jQuery references as John's code seems to be shifting away + * from that and I don't want to have to update this for a long time. + * 0.5: + * - Added simple argument syntax for only specifying start colour of event + * - Removed old style argument syntax + * - Added 'interval', 'final, and 'end' properties + * - Renamed 'color' property to 'start' + * - Added second argument to $.highlightFade.getBGColor to bypass the e.highlighting check + * 0.4: + * - Added rgb(%,%,%) color syntax + * 0.3: + * - Fixed bug when event was called while parent was also running event corrupting the + * the background colour of the child + * 0.2: + * - Fixed bug where an unspecified onComplete function made the page throw continuous errors + * - Fixed bug where multiple events on the same element would speed each subsequent event + * 0.1: + * - Initial Release + * + * @author Blair Mitchelmore (blair@offput.ca) + * @version 0.5 + */ +jQuery.fn.highlightFade = function(settings) { + var o = (settings && settings.constructor == String) ? {start: settings} : settings || {}; + var d = jQuery.highlightFade.defaults; + var i = o['interval'] || d['interval']; + var a = o['attr'] || d['attr']; + var ts = { + 'linear': function(s,e,t,c) { return parseInt(s+(c/t)*(e-s)); }, + 'sinusoidal': function(s,e,t,c) { return parseInt(s+Math.sin(((c/t)*90)*(Math.PI/180))*(e-s)); }, + 'exponential': function(s,e,t,c) { return parseInt(s+(Math.pow(c/t,2))*(e-s)); } + }; + var t = (o['iterator'] && o['iterator'].constructor == Function) ? o['iterator'] : ts[o['iterator']] || ts[d['iterator']] || ts['linear']; + if (d['iterator'] && d['iterator'].constructor == Function) t = d['iterator']; + return this.each(function() { + if (!this.highlighting) this.highlighting = {}; + var e = (this.highlighting[a]) ? this.highlighting[a].end : jQuery.highlightFade.getBaseValue(this,a) || [255,255,255]; + var c = jQuery.highlightFade.getRGB(o['start'] || o['colour'] || o['color'] || d['start'] || [255,255,128]); + var s = jQuery.speed(o['speed'] || d['speed']); + var r = o['final'] || (this.highlighting[a] && this.highlighting[a].orig) ? this.highlighting[a].orig : jQuery.curCSS(this,a); + if (o['end'] || d['end']) r = jQuery.highlightFade.asRGBString(e = jQuery.highlightFade.getRGB(o['end'] || d['end'])); + if (typeof o['final'] != 'undefined') r = o['final']; + if (this.highlighting[a] && this.highlighting[a].timer) window.clearInterval(this.highlighting[a].timer); + this.highlighting[a] = { steps: ((s.duration) / i), interval: i, currentStep: 0, start: c, end: e, orig: r, attr: a }; + jQuery.highlightFade(this,a,o['complete'],t); + }); +}; + +jQuery.highlightFade = function(e,a,o,t) { + e.highlighting[a].timer = window.setInterval(function() { + var newR = t(e.highlighting[a].start[0],e.highlighting[a].end[0],e.highlighting[a].steps,e.highlighting[a].currentStep); + var newG = t(e.highlighting[a].start[1],e.highlighting[a].end[1],e.highlighting[a].steps,e.highlighting[a].currentStep); + var newB = t(e.highlighting[a].start[2],e.highlighting[a].end[2],e.highlighting[a].steps,e.highlighting[a].currentStep); + jQuery(e).css(a,jQuery.highlightFade.asRGBString([newR,newG,newB])); + if (e.highlighting[a].currentStep++ >= e.highlighting[a].steps) { + jQuery(e).css(a,e.highlighting[a].orig || ''); + window.clearInterval(e.highlighting[a].timer); + e.highlighting[a] = null; + if (o && o.constructor == Function) o.call(e); + } + },e.highlighting[a].interval); +}; + +jQuery.highlightFade.defaults = { + start: [255,255,128], + interval: 50, + speed: 400, + attr: 'backgroundColor' +}; + +jQuery.highlightFade.getRGB = function(c,d) { + var result; + if (c && c.constructor == Array && c.length == 3) return c; + if (result = /rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(c)) + return [parseInt(result[1]),parseInt(result[2]),parseInt(result[3])]; + else if (result = /rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(c)) + return [parseFloat(result[1])*2.55,parseFloat(result[2])*2.55,parseFloat(result[3])*2.55]; + else if (result = /#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(c)) + return [parseInt("0x" + result[1]),parseInt("0x" + result[2]),parseInt("0x" + result[3])]; + else if (result = /#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(c)) + return [parseInt("0x"+ result[1] + result[1]),parseInt("0x" + result[2] + result[2]),parseInt("0x" + result[3] + result[3])]; + else + return jQuery.highlightFade.checkColorName(c) || d || null; +}; + +jQuery.highlightFade.asRGBString = function(a) { + return "rgb(" + a.join(",") + ")"; +}; + +jQuery.highlightFade.getBaseValue = function(e,a,b) { + var s, t; + b = b || false; + t = a = a || jQuery.highlightFade.defaults['attr']; + do { + s = jQuery(e).css(t || 'backgroundColor'); + if ((s != '' && s != 'transparent') || (e.tagName.toLowerCase() == "body") || (!b && e.highlighting && e.highlighting[a] && e.highlighting[a].end)) break; + t = false; + } while (e = e.parentNode); + if (!b && e.highlighting && e.highlighting[a] && e.highlighting[a].end) s = e.highlighting[a].end; + if (s == undefined || s == '' || s == 'transparent') s = [255,255,255]; + return jQuery.highlightFade.getRGB(s); +}; + +jQuery.highlightFade.checkColorName = function(c) { + if (!c) return null; + switch(c.replace(/^\s*|\s*$/g,'').toLowerCase()) { + case 'aqua': return [0,255,255]; + case 'black': return [0,0,0]; + case 'blue': return [0,0,255]; + case 'fuchsia': return [255,0,255]; + case 'gray': return [128,128,128]; + case 'green': return [0,128,0]; + case 'lime': return [0,255,0]; + case 'maroon': return [128,0,0]; + case 'navy': return [0,0,128]; + case 'olive': return [128,128,0]; + case 'purple': return [128,0,128]; + case 'red': return [255,0,0]; + case 'silver': return [192,192,192]; + case 'teal': return [0,128,128]; + case 'white': return [255,255,255]; + case 'yellow': return [255,255,0]; + } +}; diff --git a/redakcja/static/js/book_text/jquery.scrollto.js b/redakcja/static/js/book_text/jquery.scrollto.js new file mode 100644 index 00000000..c403ab9d --- /dev/null +++ b/redakcja/static/js/book_text/jquery.scrollto.js @@ -0,0 +1,194 @@ +/** + * jQuery.ScrollTo + * Copyright (c) 2007-2008 Ariel Flesler - aflesler(at)gmail(dot)com | http://flesler.blogspot.com + * Dual licensed under MIT and GPL. + * Date: 9/11/2008 + * + * @projectDescription Easy element scrolling using jQuery. + * http://flesler.blogspot.com/2007/10/jqueryscrollto.html + * Tested with jQuery 1.2.6. On FF 2/3, IE 6/7, Opera 9.2/5 and Safari 3. on Windows. + * + * @author Ariel Flesler + * @version 1.4 + * + * @id jQuery.scrollTo + * @id jQuery.fn.scrollTo + * @param {String, Number, DOMElement, jQuery, Object} target Where to scroll the matched elements. + * The different options for target are: + * - A number position (will be applied to all axes). + * - A string position ('44', '100px', '+=90', etc ) will be applied to all axes + * - A jQuery/DOM element ( logically, child of the element to scroll ) + * - A string selector, that will be relative to the element to scroll ( 'li:eq(2)', etc ) + * - A hash { top:x, left:y }, x and y can be any kind of number/string like above. + * @param {Number} duration The OVERALL length of the animation, this argument can be the settings object instead. + * @param {Object,Function} settings Optional set of settings or the onAfter callback. + * @option {String} axis Which axis must be scrolled, use 'x', 'y', 'xy' or 'yx'. + * @option {Number} duration The OVERALL length of the animation. + * @option {String} easing The easing method for the animation. + * @option {Boolean} margin If true, the margin of the target element will be deducted from the final position. + * @option {Object, Number} offset Add/deduct from the end position. One number for both axes or { top:x, left:y }. + * @option {Object, Number} over Add/deduct the height/width multiplied by 'over', can be { top:x, left:y } when using both axes. + * @option {Boolean} queue If true, and both axis are given, the 2nd axis will only be animated after the first one ends. + * @option {Function} onAfter Function to be called after the scrolling ends. + * @option {Function} onAfterFirst If queuing is activated, this function will be called after the first scrolling ends. + * @return {jQuery} Returns the same jQuery object, for chaining. + * + * @desc Scroll to a fixed position + * @example $('div').scrollTo( 340 ); + * + * @desc Scroll relatively to the actual position + * @example $('div').scrollTo( '+=340px', { axis:'y' } ); + * + * @dec Scroll using a selector (relative to the scrolled element) + * @example $('div').scrollTo( 'p.paragraph:eq(2)', 500, { easing:'swing', queue:true, axis:'xy' } ); + * + * @ Scroll to a DOM element (same for jQuery object) + * @example var second_child = document.getElementById('container').firstChild.nextSibling; + * $('#container').scrollTo( second_child, { duration:500, axis:'x', onAfter:function(){ + * alert('scrolled!!'); + * }}); + * + * @desc Scroll on both axes, to different values + * @example $('div').scrollTo( { top: 300, left:'+=200' }, { axis:'xy', offset:-20 } ); + */ +;(function( $ ){ + + var $scrollTo = $.scrollTo = function( target, duration, settings ){ + $(window).scrollTo( target, duration, settings ); + }; + + $scrollTo.defaults = { + axis:'y', + duration:1 + }; + + // Returns the element that needs to be animated to scroll the window. + // Kept for backwards compatibility (specially for localScroll & serialScroll) + $scrollTo.window = function( scope ){ + return $(window).scrollable(); + }; + + // Hack, hack, hack... stay away! + // Returns the real elements to scroll (supports window/iframes, documents and regular nodes) + $.fn.scrollable = function(){ + return this.map(function(){ + // Just store it, we might need it + var win = this.parentWindow || this.defaultView, + // If it's a document, get its iframe or the window if it's THE document + elem = this.nodeName == '#document' ? win.frameElement || win : this, + // Get the corresponding document + doc = elem.contentDocument || (elem.contentWindow || elem).document, + isWin = elem.setInterval; + + return elem.nodeName == 'IFRAME' || isWin && $.browser.safari ? doc.body + : isWin ? doc.documentElement + : this; + }); + }; + + $.fn.scrollTo = function( target, duration, settings ){ + if( typeof duration == 'object' ){ + settings = duration; + duration = 0; + } + if( typeof settings == 'function' ) + settings = { onAfter:settings }; + + settings = $.extend( {}, $scrollTo.defaults, settings ); + // Speed is still recognized for backwards compatibility + duration = duration || settings.speed || settings.duration; + // Make sure the settings are given right + settings.queue = settings.queue && settings.axis.length > 1; + + if( settings.queue ) + // Let's keep the overall duration + duration /= 2; + settings.offset = both( settings.offset ); + settings.over = both( settings.over ); + + return this.scrollable().each(function(){ + var elem = this, + $elem = $(elem), + targ = target, toff, attr = {}, + win = $elem.is('html,body'); + + switch( typeof targ ){ + // A number will pass the regex + case 'number': + case 'string': + if( /^([+-]=)?\d+(px)?$/.test(targ) ){ + targ = both( targ ); + // We are done + break; + } + // Relative selector, no break! + targ = $(targ,this); + case 'object': + // DOMElement / jQuery + if( targ.is || targ.style ) + // Get the real position of the target + toff = (targ = $(targ)).offset(); + } + $.each( settings.axis.split(''), function( i, axis ){ + var Pos = axis == 'x' ? 'Left' : 'Top', + pos = Pos.toLowerCase(), + key = 'scroll' + Pos, + old = elem[key], + Dim = axis == 'x' ? 'Width' : 'Height', + dim = Dim.toLowerCase(); + + if( toff ){// jQuery / DOMElement + attr[key] = toff[pos] + ( win ? 0 : old - $elem.offset()[pos] ); + + // If it's a dom element, reduce the margin + if( settings.margin ){ + attr[key] -= parseInt(targ.css('margin'+Pos)) || 0; + attr[key] -= parseInt(targ.css('border'+Pos+'Width')) || 0; + } + + attr[key] += settings.offset[pos] || 0; + + if( settings.over[pos] ) + // Scroll to a fraction of its width/height + attr[key] += targ[dim]() * settings.over[pos]; + }else + attr[key] = targ[pos]; + + // Number or 'number' + if( /^\d+$/.test(attr[key]) ) + // Check the limits + attr[key] = attr[key] <= 0 ? 0 : Math.min( attr[key], max(Dim) ); + + // Queueing axes + if( !i && settings.queue ){ + // Don't waste time animating, if there's no need. + if( old != attr[key] ) + // Intermediate animation + animate( settings.onAfterFirst ); + // Don't animate this axis again in the next iteration. + delete attr[key]; + } + }); + animate( settings.onAfter ); + + function animate( callback ){ + $elem.animate( attr, duration, settings.easing, callback && function(){ + callback.call(this, target, settings); + }); + }; + function max( Dim ){ + var attr ='scroll'+Dim, + doc = elem.ownerDocument; + + return win + ? Math.max( doc.documentElement[attr], doc.body[attr] ) + : elem[attr]; + }; + }).end(); + }; + + function both( val ){ + return typeof val == 'object' ? val : { top:val, left:val }; + }; + +})( jQuery ); \ No newline at end of file -- 2.20.1