1
0
Fork 0

Adding debian version 2.4.63-1.

Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
This commit is contained in:
Daniel Baumann 2025-06-22 11:01:27 +02:00
parent 7263481e48
commit f56986e2d9
Signed by: daniel.baumann
GPG key ID: BCC918A2ABD66424
1490 changed files with 80785 additions and 0 deletions

View file

@ -0,0 +1,3 @@
<!--#if expr="1 = 2 = 3" -->
<!--#include virtual="../echo.shtml" -->
<!--#endif -->

View file

@ -0,0 +1,6 @@
<!--#if expr="'ab' -strmatch 'a*'"-->
pass
<!--#endif -->
<!--#if expr="'ab' -strmatch 'b*'"-->
fail
<!--#endif -->

View file

@ -0,0 +1,5 @@
<!--#if expr="v('DATE_LOCAL') =~ /[0-9]/" -->
pass
<!--#else-->
fail
<!--#endif-->

View file

@ -0,0 +1,3 @@
<!--#if expr="-e '/etc/passwd'" -->
<!--#include virtual="../echo.shtml" -->
<!--#endif -->

View file

@ -0,0 +1,16 @@
<!--#set var="x" value="foo bar"-->
<!--#if expr="reqenv('x') =~ /^foo/ && reqenv('x') =~ /bar$/" -->
pass
<!--#else-->
fail
<!--#endif-->
<!--#if expr="env('x') =~ /^foo/ && v('x') =~ /bar$/" -->
pass
<!--#else-->
fail
<!--#endif-->
<!--#if expr="note('x') =~ /^foo/" -->
fail
<!--#else-->
pass
<!--#endif-->