This commit is contained in:
Guilhem Lavaux 2024-12-04 07:55:48 +01:00
parent 4d8ba20820
commit f371cab518
109 changed files with 157765 additions and 0 deletions

BIN
assets/images/botbkg.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 833 B

4
assets/images/botbkg.py Normal file
View file

@ -0,0 +1,4 @@
#!/usr/bin/python
image=open("/var/www/html/img/botbkg.gif",'rb').read()
print "Content-Type: image/png\nContent-Length: %d\n" % len(image)
print image

BIN
assets/images/linebkg.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 811 B

4
assets/images/linebkg.py Normal file
View file

@ -0,0 +1,4 @@
#!/usr/bin/python
image=open("/var/www/html/img/linebkg.gif",'rb').read()
print "Content-Type: image/png\nContent-Length: %d\n" % len(image)
print image

BIN
assets/images/logo.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

BIN
assets/images/mainbkg.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 837 B

4
assets/images/mainbkg.py Normal file
View file

@ -0,0 +1,4 @@
#!/usr/bin/python
image=open("/var/www/html/img/mainbkg.gif",'rb').read()
print "Content-Type: image/png\nContent-Length: %d\n" % len(image)
print image

BIN
assets/images/topbkg.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 856 B

4
assets/images/topbkg.py Normal file
View file

@ -0,0 +1,4 @@
#!/usr/bin/python
image=open("/var/www/html/img/topbkg.gif",'rb').read()
print "Content-Type: image/png\nContent-Length: %d\n" % len(image)
print image

BIN
assets/images/topleft.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

4
assets/images/topleft.py Normal file
View file

@ -0,0 +1,4 @@
#!/usr/bin/python
image=open("/var/www/html/img/topleft.gif",'rb').read()
print "Content-Type: image/png\nContent-Length: %d\n" % len(image)
print image