Add no referrer policy in meta tags
This commit is contained in:
parent
fe3504d8a2
commit
f4c3ca9991
|
|
@ -30,6 +30,7 @@ Improvements:
|
|||
* Enable support for Github Enterprise when using Github Authentication
|
||||
* Update iCalendar library to display organizer name
|
||||
* Improve sidebar menus
|
||||
* Add no referrer policy in meta tags
|
||||
* Run automated unit tests with Sqlite/Mysql/Postgres on Travis-ci
|
||||
* Add Makefile and remove the scripts directory
|
||||
|
||||
|
|
|
|||
|
|
@ -1,14 +1,12 @@
|
|||
Kanboard
|
||||
========
|
||||
|
||||
Kanboard is a simple visual task board web application.
|
||||
Kanboard is a project management software that use the Kanban methodology.
|
||||
|
||||
Official website: <http://kanboard.net>
|
||||
|
||||
- Inspired by the [Kanban methodology](http://en.wikipedia.org/wiki/Kanban)
|
||||
- Get a visual and clear overview of your project
|
||||
- Multiple boards with the ability to drag and drop tasks
|
||||
- Minimalist software, focus only on essential features (Less is more)
|
||||
- Open source and self-hosted
|
||||
- Super simple installation
|
||||
- Translated in 21 languages
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@
|
|||
<meta name="mobile-web-app-capable" content="yes">
|
||||
<meta name="robots" content="noindex,nofollow">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="referrer" content="no-referrer">
|
||||
|
||||
<?php if (isset($board_public_refresh_interval)): ?>
|
||||
<meta http-equiv="refresh" content="<?= $board_public_refresh_interval ?>">
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
"fguillot/json-rpc" : "1.0.1",
|
||||
"fguillot/picodb" : "1.0.1",
|
||||
"fguillot/simpleLogger" : "0.0.2",
|
||||
"fguillot/simple-validator" : "0.0.3",
|
||||
"fguillot/simple-validator" : "1.0.0",
|
||||
"nickcernis/html-to-markdown" : "2.2.1",
|
||||
"pimple/pimple" : "~3.0",
|
||||
"swiftmailer/swiftmailer" : "@stable",
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
"Read more about it at http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
|
||||
"This file is @generated automatically"
|
||||
],
|
||||
"hash": "f708764553321994743c3d42c4d6e512",
|
||||
"hash": "ffa715ba1b335c0a36d296936905667e",
|
||||
"packages": [
|
||||
{
|
||||
"name": "christian-riesen/base32",
|
||||
|
|
@ -333,16 +333,16 @@
|
|||
},
|
||||
{
|
||||
"name": "fguillot/simple-validator",
|
||||
"version": "v0.0.3",
|
||||
"version": "1.0.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/fguillot/simpleValidator.git",
|
||||
"reference": "2f30078bb6e688cf123c150d58fda322792a1532"
|
||||
"reference": "9579993f3dd0f03053b28fec1e7b9990edc3947b"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/fguillot/simpleValidator/zipball/2f30078bb6e688cf123c150d58fda322792a1532",
|
||||
"reference": "2f30078bb6e688cf123c150d58fda322792a1532",
|
||||
"url": "https://api.github.com/repos/fguillot/simpleValidator/zipball/9579993f3dd0f03053b28fec1e7b9990edc3947b",
|
||||
"reference": "9579993f3dd0f03053b28fec1e7b9990edc3947b",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
|
|
@ -363,9 +363,9 @@
|
|||
"name": "Frédéric Guillot"
|
||||
}
|
||||
],
|
||||
"description": "The most easy to use validator library for PHP :)",
|
||||
"description": "Simple validator library",
|
||||
"homepage": "https://github.com/fguillot/simpleValidator",
|
||||
"time": "2015-04-14 02:03:43"
|
||||
"time": "2015-08-29 00:44:37"
|
||||
},
|
||||
{
|
||||
"name": "fguillot/simpleLogger",
|
||||
|
|
|
|||
Loading…
Reference in New Issue