Change cache validity to 7 days.
Signed-off-by: Thomas Hochstein <thh@inter.net>
This commit is contained in:
parent
cd8a6a4ece
commit
7d37684c02
|
@ -1,8 +1,8 @@
|
||||||
# dejure.rb
|
# dejure.rb
|
||||||
# a nanoc filter for dejure.org legal integration service
|
# A nanoc filter for the dejure.org legal integration service
|
||||||
# see <https://dejure.org/vernetzung.html>
|
# See <https://dejure.org/vernetzung.html>
|
||||||
#
|
#
|
||||||
# adapted from PHP reference implementation
|
# Adapted from the PHP reference implementation
|
||||||
# at <https://dejure.org/vernetzung/vernetzungsfunktion.zip>
|
# at <https://dejure.org/vernetzung/vernetzungsfunktion.zip>
|
||||||
#
|
#
|
||||||
# (c) 2017 Thomas Hochstein <thh@inter.net>
|
# (c) 2017 Thomas Hochstein <thh@inter.net>
|
||||||
|
@ -40,9 +40,9 @@ module Nanoc::Filters
|
||||||
identifier :dejure
|
identifier :dejure
|
||||||
type :text
|
type :text
|
||||||
|
|
||||||
VERSION = '0.2'
|
VERSION = '0.3-beta'
|
||||||
CACHEDIR = 'tmp/dejure-org'
|
CACHEDIR = 'tmp/dejure-org'
|
||||||
CACHEDAYS = 4
|
CACHEDAYS = 7
|
||||||
|
|
||||||
def run(input, params={})
|
def run(input, params={})
|
||||||
if !(/§|§|Art\.|\/[0-9][0-9](?![0-9\/])| [0-9][0-9]?[\/\.][0-9][0-9](?![0-9\.])|[0-9][0-9], / =~ input)
|
if !(/§|§|Art\.|\/[0-9][0-9](?![0-9\/])| [0-9][0-9]?[\/\.][0-9][0-9](?![0-9\.])|[0-9][0-9], / =~ input)
|
||||||
|
|
Loading…
Reference in a new issue