commit 2842d1fec9a28992a965671f14d9ec11cba23a75
Author: Adrien Dorsaz <adrien@adorsaz.ch>
Date: Sun Sep 15 20:33:21 2019 +0200
toolbar: if news is not defined, don't show toc
commit 9f6c443f6991d140dd9206aa08233e52a1ca1054
Author: Adrien Dorsaz <adrien@adorsaz.ch>
Date: Sun Sep 15 20:32:54 2019 +0200
redaction: remove help after article
commit 155ba630c3decd4acc70fdbd7ff51fbfd9accdbe
Author: Adrien Dorsaz <adrien@adorsaz.ch>
Date: Sun Sep 15 20:32:03 2019 +0200
tribune: enable work break for long messages
commit 0b8234e064b5ffe5d67ec948d577f922b03f8685
Author: Adrien Dorsaz <adrien@adorsaz.ch>
Date: Thu Sep 12 21:45:14 2019 +0200
redaction: apply some rules specific to IE10
commit a97c6db752a7cf431800543172d2b19b8e5a8e99
Author: Adrien Dorsaz <adrien@adorsaz.ch>
Date: Thu Sep 12 00:36:49 2019 +0200
redaction: add a toolbar to display summary and to show toolpanel
Notice and alerts are moved outside the redaction section to avoid
to disturb flex: we needed to add the "nowrap" flex property to keep the
3 columns alongside on large screen, even if zoom is applied.
commit 3741ce546d1f7b0f222779e72c56ec2f39184fed
Author: Adrien Dorsaz <adrien@adorsaz.ch>
Date: Thu Sep 12 00:25:29 2019 +0200
redaction: #metadata is a shared partial view
commit a18dd4ca5b54ed7df7b89b5d3235095996400924
Author: Adrien Dorsaz <adrien@adorsaz.ch>
Date: Thu Sep 12 00:22:25 2019 +0200
javascript: add popup.coffee to add/remove attribute to dynamically show some elements
commit 420ceffe2b3d7e94f06f1efc37200b002b4129fd
Author: Adrien Dorsaz <adrien@adorsaz.ch>
Date: Thu Sep 12 00:21:27 2019 +0200
toolbar: with new font, toolbar font size were too small
commit e0355a0111cb5b5c66d25e903f3e44907dfd7920
Author: Adrien Dorsaz <adrien@adorsaz.ch>
Date: Thu Sep 12 00:20:47 2019 +0200
redaction: allow to display toc multiple times and have all synced
commit c657b4702561c489b0a926f650527c8e0a806e12
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date: Fri Nov 8 18:31:55 2019 +0100
Bump lodash from 4.17.11 to 4.17.15 (#257)
Bumps [lodash](https://github.com/lodash/lodash) from 4.17.11 to 4.17.15.
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](https://github.com/lodash/lodash/compare/4.17.11...4.17.15)
Signed-off-by: dependabot[bot] <support@github.com>
commit 2b111ff9b208952f937c6ecf59e6794ee3c86fe4
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date: Fri Nov 8 18:31:45 2019 +0100
Bump mixin-deep from 1.3.1 to 1.3.2 (#256)
Bumps [mixin-deep](https://github.com/jonschlinkert/mixin-deep) from 1.3.1 to 1.3.2.
- [Release notes](https://github.com/jonschlinkert/mixin-deep/releases)
- [Commits](https://github.com/jonschlinkert/mixin-deep/compare/1.3.1...1.3.2)
Signed-off-by: dependabot[bot] <support@github.com>
commit db9756d788486d56489c5f806edb03c047b51e97
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date: Fri Nov 8 18:30:37 2019 +0100
Bump loofah from 2.2.3 to 2.3.1 (#255)
Bumps [loofah](https://github.com/flavorjones/loofah) from 2.2.3 to 2.3.1.
- [Release notes](https://github.com/flavorjones/loofah/releases)
- [Changelog](https://github.com/flavorjones/loofah/blob/master/CHANGELOG.md)
- [Commits](https://github.com/flavorjones/loofah/compare/v2.2.3...v2.3.1)
Signed-off-by: dependabot[bot] <support@github.com>
commit 8e6e264cf787a3a064003f70c6a294c89459f8d3
Author: Adrien Dorsaz <adrien@adorsaz.ch>
Date: Tue Nov 5 17:42:31 2019 +0100
moderation-box: on mobile, first message in tribune is miss-aligned due to the float display of input (#254)
commit f9df8ecb0c68115552b33d8f9cda2492458ac663
Author: Vincent Poulailleau <vpoulailleau@gmail.com>
Date: Wed Oct 2 18:43:19 2019 +0200
Typo: s/application that run/application that runs/ (#253)
commit 47416af88e930176bd953abdcebe75f9c29ae3e1
Author: Bruno Michel <bmichel@menfin.info>
Date: Sun Sep 22 16:58:34 2019 +0200
Fix the daily number of votes
The daily number of votes is computed every day, via a crontab. It
updates the accounts, and the account model needs to be valid for the
change to be applied. But, there was a validator on the length of
uploaded_stylesheet, and when a user has uploaded a stylesheet, the
uplodaded_stylesheet field was a mounter uploaded instance, not a
string, and its length was larger than the allower 255 characters. As
the uploaded_stylesheet in database is generated by the uploader (code
on the server), and not controlled from client side, we can safely
remove the validation on the length, and it should fix the issue.