From d77e85dac2f1f4c8877d625f7d8eabc7fc505326 Mon Sep 17 00:00:00 2001 From: Felix Schneider <45742226+Trysupe@users.noreply.github.com> Date: Sat, 16 Jan 2021 16:00:21 +0100 Subject: [PATCH] Remove cronmaker since it doesn't support HTTPS (#1459) 1. When trying to reach https://www.cronmaker.com/ the website refuses the connection. You can only reach it using HTTP (without HTTPS). You could leave cronmaker in there but I think leading users to web pages that aren't using HTTPS might be not be best idea. 2. Fix Typo in url for quartz-scheduler.org --- configuration/rules-dsl.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configuration/rules-dsl.md b/configuration/rules-dsl.md index e9b0b9035..2b2f2b2f4 100644 --- a/configuration/rules-dsl.md +++ b/configuration/rules-dsl.md @@ -178,7 +178,7 @@ So in Rules where the Rule needs to know what the command was, use the `received ### Time-based Triggers -You can either use some pre-defined expressions for timers or use a [cron expression](https:////www.quartz-scheduler.org/documentation/quartz-2.2.2/tutorials/tutorial-lesson-06.html) instead: +You can either use some pre-defined expressions for timers or use a [cron expression](https://www.quartz-scheduler.org/documentation/quartz-2.2.2/tutorials/tutorial-lesson-06.html) instead: ```java Time is midnight @@ -196,7 +196,7 @@ A cron expression takes the form of six or optionally seven fields: 1. Day-of-Week 1. Year (optional field) -You may use [CronMaker](https://www.cronmaker.com/) or the generator at [FreeFormatter.com](https://www.freeformatter.com/cron-expression-generator-quartz.html) to generate cron expressions. +You may use the generator at [FreeFormatter.com](https://www.freeformatter.com/cron-expression-generator-quartz.html) to generate your cron expressions. {: #system-based-triggers}