You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(202) |
Nov
(201) |
Dec
(280) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(493) |
Feb
(106) |
Mar
(215) |
Apr
(163) |
May
(79) |
Jun
(193) |
Jul
(47) |
Aug
(71) |
Sep
(127) |
Oct
(41) |
Nov
(49) |
Dec
(120) |
2005 |
Jan
(147) |
Feb
(45) |
Mar
(26) |
Apr
(71) |
May
(52) |
Jun
(28) |
Jul
(92) |
Aug
(50) |
Sep
(35) |
Oct
(193) |
Nov
(106) |
Dec
(52) |
2006 |
Jan
(51) |
Feb
(38) |
Mar
(33) |
Apr
(79) |
May
(107) |
Jun
(67) |
Jul
(21) |
Aug
(65) |
Sep
(44) |
Oct
(87) |
Nov
(12) |
Dec
(56) |
2007 |
Jan
(48) |
Feb
(58) |
Mar
(63) |
Apr
(31) |
May
(25) |
Jun
(20) |
Jul
(72) |
Aug
(54) |
Sep
(30) |
Oct
(76) |
Nov
(74) |
Dec
(25) |
2008 |
Jan
(39) |
Feb
(39) |
Mar
(62) |
Apr
(64) |
May
(59) |
Jun
(31) |
Jul
(25) |
Aug
(25) |
Sep
(17) |
Oct
(24) |
Nov
|
Dec
(1) |
2009 |
Jan
(60) |
Feb
(39) |
Mar
(16) |
Apr
(30) |
May
(52) |
Jun
(35) |
Jul
(15) |
Aug
(15) |
Sep
(21) |
Oct
(32) |
Nov
(39) |
Dec
(52) |
2010 |
Jan
(42) |
Feb
(40) |
Mar
(23) |
Apr
(20) |
May
(27) |
Jun
(10) |
Jul
(30) |
Aug
(30) |
Sep
(66) |
Oct
(12) |
Nov
(35) |
Dec
(60) |
2011 |
Jan
(16) |
Feb
(1) |
Mar
(3) |
Apr
(28) |
May
(21) |
Jun
|
Jul
(12) |
Aug
(6) |
Sep
(10) |
Oct
(14) |
Nov
(40) |
Dec
(60) |
2012 |
Jan
(23) |
Feb
(17) |
Mar
(24) |
Apr
(18) |
May
(13) |
Jun
(1) |
Jul
|
Aug
(5) |
Sep
|
Oct
(5) |
Nov
(5) |
Dec
(15) |
2013 |
Jan
(2) |
Feb
(5) |
Mar
(1) |
Apr
(2) |
May
(2) |
Jun
(3) |
Jul
|
Aug
(3) |
Sep
(5) |
Oct
(3) |
Nov
(1) |
Dec
(1) |
2014 |
Jan
(3) |
Feb
(5) |
Mar
(8) |
Apr
(3) |
May
(1) |
Jun
(1) |
Jul
(2) |
Aug
|
Sep
(4) |
Oct
(10) |
Nov
|
Dec
(9) |
2015 |
Jan
(18) |
Feb
(17) |
Mar
(5) |
Apr
(2) |
May
|
Jun
(5) |
Jul
(1) |
Aug
(2) |
Sep
(1) |
Oct
(24) |
Nov
(20) |
Dec
(41) |
2016 |
Jan
(9) |
Feb
(3) |
Mar
(2) |
Apr
(7) |
May
(8) |
Jun
(1) |
Jul
(6) |
Aug
(5) |
Sep
(2) |
Oct
(6) |
Nov
(1) |
Dec
(6) |
2017 |
Jan
(6) |
Feb
(1) |
Mar
|
Apr
(4) |
May
(1) |
Jun
(1) |
Jul
(2) |
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
From: Heiko Z. <smi...@us...> - 2004-06-02 19:01:00
|
Update of /cvsroot/devil-linux/scripts/webtools In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27079 Modified Files: generate_docs_from_cvs Log Message: we don't need shtml any more Index: generate_docs_from_cvs =================================================================== RCS file: /cvsroot/devil-linux/scripts/webtools/generate_docs_from_cvs,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- generate_docs_from_cvs 2 Jun 2004 18:46:48 -0000 1.13 +++ generate_docs_from_cvs 2 Jun 2004 19:00:49 -0000 1.14 @@ -85,53 +85,6 @@ # clean up behind us rm -rf ${MODULE%%/*} output.html - - # add an entry to the submenu file so a link to this version - # of the documentation shows up in the navigation[C - echo -n creating submenu entry... - cat >> ${THIS_SUBMENU} <<-EOF - <p class="menu"> <!--#if expr="\${SECTION} != ${THIS_WEB_PATH}" --><a href="/${THIS_WEB_PATH}/"><!--#endif -->Version ${version}<!--#if expr="\${SECTION} != ${THIS_WEB_PATH}" --></a><!--#endif --></p> -EOF - echo done. - - # post processing - echo postprocessing: - for FILE in $(ls -1 ${THIS_DOCU_PATH}/*.html); do - SRC_FILE=${FILE##*/} - THIS_PAGE=${SRC_FILE%\.*} - DST_FILE=${THIS_PAGE}.shtml - CONTENT_FILE=content_${DST_FILE} - HEAD_FILE=head_${DST_FILE} - - echo " * ${SRC_FILE} -> ${DST_FILE}, ${HEAD_FILE}, ${CONTENT_FILE}" - - # filter source file and replace all local - # references to xxx.html with xxx.shtml - sed -e 's|\("[a-z0-9]\+\)\.html\(\(#[a-z0-9]\+\)\?"\)|\1.shtml\2|g' \ - <${THIS_DOCU_PATH}/${SRC_FILE} \ - >${THIS_DOCU_PATH}/${SRC_FILE}.2 - mv ${THIS_DOCU_PATH}/${SRC_FILE}.2 ${THIS_DOCU_PATH}/${SRC_FILE} - - # the "right frame" - perl -e '$_=join("",<STDIN>); s|^.*<body[^>]*>||is; s|</body>.*$||is; print $_' \ - <${THIS_DOCU_PATH}/${SRC_FILE} \ - >${THIS_DOCU_PATH}/${CONTENT_FILE} - - # the head section - perl -e '$_=join("",<STDIN>); s|^.*<head>||is; s|</head>.*$||is; print $_' \ - <${THIS_DOCU_PATH}/${SRC_FILE} \ - >${THIS_DOCU_PATH}/${HEAD_FILE} - - # this file will put head, content and central navigation together - cat > ${THIS_DOCU_PATH}/${DST_FILE} <<-EOF - <!--#set var="THIS_PAGE" value="${THIS_PAGE}" --><!--#set var="SECTION" value="${THIS_WEB_PATH}" --><!--#set var="SUBMENU" value="${THIS_SUBMENU_PATH}" --><!--#include virtual="../../index.shtml" --> -EOF - - # file processed therefore we don't need it anymore - rm -f ${THIS_DOCU_PATH}/${SRC_FILE} - - done - } cd /home/groups/d/de/devil-linux || exit 1 |
From: Heiko Z. <smi...@us...> - 2004-06-02 18:54:50
|
Update of /cvsroot/devil-linux/web/support In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25529/support Modified Files: docs.php Log Message: changed name of directories Index: docs.php =================================================================== RCS file: /cvsroot/devil-linux/web/support/docs.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- docs.php 2 Jun 2004 13:05:52 -0000 1.1.1.1 +++ docs.php 2 Jun 2004 18:54:41 -0000 1.2 @@ -8,9 +8,9 @@ <h2>Online Resources</h2> <ul> -<li><a href="../documentation/current/" target="_blank">Current Stable Release</a></li> -<li><a href="../documentation/devel/" target="_blank">Development Release</a></li> -<li><a href="../documentation/old/0.5/" target="_blank">Old Stable Release 0.5</a></li> +<li><a href="../documentation/1.0.x/" target="_blank">1.0 (Current Stable Release)</a></li> +<li><a href="../documentation/1.2.x/" target="_blank">1.2 (Development Release)</a></li> +<li><a href="../documentation/1.3.x/" target="_blank">1.3 (Development Release)</a></li> </ul> <? include("../include/footer.php") ?> |
From: Heiko Z. <smi...@us...> - 2004-06-02 18:46:57
|
Update of /cvsroot/devil-linux/scripts/webtools In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23234/webtools Modified Files: generate_docs_from_cvs Log Message: updated the versions Index: generate_docs_from_cvs =================================================================== RCS file: /cvsroot/devil-linux/scripts/webtools/generate_docs_from_cvs,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- generate_docs_from_cvs 2 Jan 2004 16:47:48 -0000 1.12 +++ generate_docs_from_cvs 2 Jun 2004 18:46:48 -0000 1.13 @@ -2,7 +2,7 @@ # $Id$ # the documenation to generate -GENERATE="1.0.x:rel-1-0-patches 1.1.x:" +GENERATE="1.0.x:rel-1-0-patches 1.2.x:rel-1-2-patches 1.3.x:" # the cvs root CVS_ROOT=":pserver:ano...@cv...:/cvsroot/devil-linux" |
Update of /cvsroot/devil-linux/web/poll/image In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23808 Added Files: active.gif aqua.gif back.gif blank.gif blue.gif brown.gif co_dis.gif cross.gif darkgreen.gif email.gif error.png expired.gif folder.gif gold.gif green.gif greenbar.gif grey.gif h_line.gif help.gif hidden.gif host.gif howto.gif index.gif ip.gif key.gif lock.gif log.gif log_off.gif logout.gif max.gif min.gif msie.gif netscape.gif new.gif next.gif opera.gif orange.gif password.gif pink.gif point2.gif post.gif purple.gif quote.gif red.gif red_dot.gif reply.gif settings.gif templates.gif text.gif text_off.gif top_line.gif unknown.gif v_line.gif vote.gif yellow.gif Log Message: noew let's check everything in again as binary --- NEW FILE: red_dot.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: blank.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ip.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: point2.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: expired.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: reply.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: log_off.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: error.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: hidden.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: blue.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: settings.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: green.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: log.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: next.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: back.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: pink.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: index.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: gold.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: text_off.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: greenbar.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: top_line.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: msie.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: aqua.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: new.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: logout.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: co_dis.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: orange.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: max.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: password.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: grey.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: brown.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: netscape.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: text.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: opera.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: darkgreen.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: v_line.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: key.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: yellow.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: active.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: post.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: red.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: templates.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: quote.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: h_line.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: howto.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: host.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: unknown.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: purple.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: help.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: email.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: vote.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: lock.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: min.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: cross.gif --- (This appears to be a binary file; contents omitted.) |
Update of /cvsroot/devil-linux/web/poll/image In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23633 Removed Files: active.gif aqua.gif back.gif blank.gif blue.gif brown.gif co_dis.gif cross.gif darkgreen.gif email.gif error.png expired.gif folder.gif gold.gif green.gif greenbar.gif grey.gif h_line.gif help.gif hidden.gif host.gif howto.gif index.gif ip.gif key.gif lock.gif log.gif log_off.gif logout.gif max.gif min.gif msie.gif netscape.gif new.gif next.gif opera.gif orange.gif password.gif pink.gif point2.gif post.gif purple.gif quote.gif red.gif red_dot.gif reply.gif settings.gif templates.gif text.gif text_off.gif top_line.gif unknown.gif v_line.gif vote.gif yellow.gif Log Message: removed non binary images --- red_dot.gif DELETED --- --- blank.gif DELETED --- --- ip.gif DELETED --- --- point2.gif DELETED --- --- expired.gif DELETED --- --- reply.gif DELETED --- --- folder.gif DELETED --- --- log_off.gif DELETED --- --- error.png DELETED --- --- hidden.gif DELETED --- --- blue.gif DELETED --- --- settings.gif DELETED --- --- green.gif DELETED --- --- log.gif DELETED --- --- next.gif DELETED --- --- back.gif DELETED --- --- pink.gif DELETED --- --- index.gif DELETED --- --- gold.gif DELETED --- --- text_off.gif DELETED --- --- greenbar.gif DELETED --- --- top_line.gif DELETED --- --- msie.gif DELETED --- --- aqua.gif DELETED --- --- new.gif DELETED --- --- logout.gif DELETED --- --- co_dis.gif DELETED --- --- orange.gif DELETED --- --- max.gif DELETED --- --- password.gif DELETED --- --- grey.gif DELETED --- --- brown.gif DELETED --- --- netscape.gif DELETED --- --- text.gif DELETED --- --- opera.gif DELETED --- --- darkgreen.gif DELETED --- --- v_line.gif DELETED --- --- key.gif DELETED --- --- yellow.gif DELETED --- --- active.gif DELETED --- --- post.gif DELETED --- --- red.gif DELETED --- --- templates.gif DELETED --- --- quote.gif DELETED --- --- h_line.gif DELETED --- --- howto.gif DELETED --- --- host.gif DELETED --- --- unknown.gif DELETED --- --- purple.gif DELETED --- --- help.gif DELETED --- --- email.gif DELETED --- --- vote.gif DELETED --- --- lock.gif DELETED --- --- min.gif DELETED --- --- cross.gif DELETED --- |
Update of /cvsroot/devil-linux/web/poll/image In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23052 Modified Files: active.gif co_dis.gif error.png expired.gif folder.gif hidden.gif host.gif howto.gif ip.gif lock.gif logout.gif msie.gif netscape.gif next.gif opera.gif password.gif post.gif settings.gif templates.gif text.gif text_off.gif vote.gif Log Message: files were not binary Index: logout.gif =================================================================== RCS file: /cvsroot/devil-linux/web/poll/image/logout.gif,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 Binary files /tmp/cvsOqvYVs and /tmp/cvs2l5Vl1 differ Index: co_dis.gif =================================================================== RCS file: /cvsroot/devil-linux/web/poll/image/co_dis.gif,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 Binary files /tmp/cvs4qC1Iw and /tmp/cvsA7X2c5 differ Index: ip.gif =================================================================== RCS file: /cvsroot/devil-linux/web/poll/image/ip.gif,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 Binary files /tmp/cvsOoWJWJ and /tmp/cvsjd3Wxi differ Index: password.gif =================================================================== RCS file: /cvsroot/devil-linux/web/poll/image/password.gif,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 Binary files /tmp/cvsqdsDW7 and /tmp/cvszsJATG differ Index: opera.gif =================================================================== RCS file: /cvsroot/devil-linux/web/poll/image/opera.gif,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 Binary files /tmp/cvsYHnNfl and /tmp/cvsALOYmU differ Index: netscape.gif =================================================================== RCS file: /cvsroot/devil-linux/web/poll/image/netscape.gif,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 Binary files /tmp/cvsupdt4u and /tmp/cvsjyX6h4 differ Index: text.gif =================================================================== RCS file: /cvsroot/devil-linux/web/poll/image/text.gif,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 Binary files /tmp/cvs3Mrk7E and /tmp/cvsxJwcqe differ Index: expired.gif =================================================================== RCS file: /cvsroot/devil-linux/web/poll/image/expired.gif,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 Binary files /tmp/cvs8fvpGR and /tmp/cvsxjNh7q differ Index: folder.gif =================================================================== RCS file: /cvsroot/devil-linux/web/poll/image/folder.gif,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 Binary files /tmp/cvsmMmr4M and /tmp/cvsNF40zm differ Index: error.png =================================================================== RCS file: /cvsroot/devil-linux/web/poll/image/error.png,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 Binary files /tmp/cvsuWkCQT and /tmp/cvsJYsYqt differ Index: hidden.gif =================================================================== RCS file: /cvsroot/devil-linux/web/poll/image/hidden.gif,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 Binary files /tmp/cvsq9lrI4 and /tmp/cvs3Hg1nE differ Index: settings.gif =================================================================== RCS file: /cvsroot/devil-linux/web/poll/image/settings.gif,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 Binary files /tmp/cvsx2Mz05 and /tmp/cvsFKnwIF differ Index: active.gif =================================================================== RCS file: /cvsroot/devil-linux/web/poll/image/active.gif,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 Binary files /tmp/cvs3DOkU9 and /tmp/cvs4BBPEJ differ Index: post.gif =================================================================== RCS file: /cvsroot/devil-linux/web/poll/image/post.gif,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 Binary files /tmp/cvsMn3jQx and /tmp/cvsCWtrQ7 differ Index: templates.gif =================================================================== RCS file: /cvsroot/devil-linux/web/poll/image/templates.gif,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 Binary files /tmp/cvsUEzI0D and /tmp/cvs1LLl3d differ Index: next.gif =================================================================== RCS file: /cvsroot/devil-linux/web/poll/image/next.gif,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 Binary files /tmp/cvsdosReH and /tmp/cvsG257kh differ Index: howto.gif =================================================================== RCS file: /cvsroot/devil-linux/web/poll/image/howto.gif,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 Binary files /tmp/cvs5HaBSP and /tmp/cvs13TX2p differ Index: host.gif =================================================================== RCS file: /cvsroot/devil-linux/web/poll/image/host.gif,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 Binary files /tmp/cvsox8yoQ and /tmp/cvsspUxGq differ Index: text_off.gif =================================================================== RCS file: /cvsroot/devil-linux/web/poll/image/text_off.gif,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 Binary files /tmp/cvsdiqpGZ and /tmp/cvsHdc94z differ Index: vote.gif =================================================================== RCS file: /cvsroot/devil-linux/web/poll/image/vote.gif,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 Binary files /tmp/cvso6Q038 and /tmp/cvsB1DWyJ differ Index: lock.gif =================================================================== RCS file: /cvsroot/devil-linux/web/poll/image/lock.gif,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 Binary files /tmp/cvsZkzoEk and /tmp/cvsmRVDgV differ Index: msie.gif =================================================================== RCS file: /cvsroot/devil-linux/web/poll/image/msie.gif,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 Binary files /tmp/cvshm9cNw and /tmp/cvsstbyx7 differ |
From: Heiko Z. <smi...@us...> - 2004-06-02 15:47:45
|
Update of /cvsroot/devil-linux/web/images/screenshots In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21673 Modified Files: boot.png boot_upgrade1.png boot_upgrade2.png login.png nothing_running.png seetup.png Log Message: crap, added the wrong files Index: boot_upgrade1.png =================================================================== RCS file: /cvsroot/devil-linux/web/images/screenshots/boot_upgrade1.png,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 Binary files /tmp/cvspVkJjx and /tmp/cvsKtja4A differ Index: login.png =================================================================== RCS file: /cvsroot/devil-linux/web/images/screenshots/login.png,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 Binary files /tmp/cvsFQMBmH and /tmp/cvsFh0HbL differ Index: boot_upgrade2.png =================================================================== RCS file: /cvsroot/devil-linux/web/images/screenshots/boot_upgrade2.png,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 Binary files /tmp/cvs9qIu8N and /tmp/cvsCrZQ3R differ Index: nothing_running.png =================================================================== RCS file: /cvsroot/devil-linux/web/images/screenshots/nothing_running.png,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 Binary files /tmp/cvs8bOpbX and /tmp/cvshPYlc1 differ Index: boot.png =================================================================== RCS file: /cvsroot/devil-linux/web/images/screenshots/boot.png,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 Binary files /tmp/cvscmgcW7 and /tmp/cvsPxkM2b differ Index: seetup.png =================================================================== RCS file: /cvsroot/devil-linux/web/images/screenshots/seetup.png,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 Binary files /tmp/cvs3plEt9 and /tmp/cvsYXdV8h differ |
From: Heiko Z. <smi...@us...> - 2004-06-02 15:40:13
|
Update of /cvsroot/devil-linux/web/images/screenshots In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20250 Added Files: boot.png boot_upgrade1.png boot_upgrade2.png login.png nothing_running.png seetup.png Log Message: added screenshots --- NEW FILE: boot_upgrade1.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: login.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: boot_upgrade2.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: nothing_running.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: boot.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: seetup.png --- (This appears to be a binary file; contents omitted.) |
From: Heiko Z. <smi...@us...> - 2004-06-02 15:36:29
|
Update of /cvsroot/devil-linux/web/images/downloads In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19177/downloads Modified Files: editorsplash.gif java.gif lfs_book.png lftp.png Log Message: make sure files are binary Index: lftp.png =================================================================== RCS file: /cvsroot/devil-linux/web/images/downloads/lftp.png,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 Binary files /tmp/cvsWFM1Ww and /tmp/cvsUVMqQl differ Index: lfs_book.png =================================================================== RCS file: /cvsroot/devil-linux/web/images/downloads/lfs_book.png,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 Binary files /tmp/cvsOCEbWG and /tmp/cvsTImFUv differ Index: java.gif =================================================================== RCS file: /cvsroot/devil-linux/web/images/downloads/java.gif,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 Binary files /tmp/cvsPfz7BI and /tmp/cvshbD9Cx differ Index: editorsplash.gif =================================================================== RCS file: /cvsroot/devil-linux/web/images/downloads/editorsplash.gif,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 Binary files /tmp/cvsvFdMO0 and /tmp/cvs3O7H1P differ |
From: Heiko Z. <smi...@us...> - 2004-06-02 15:36:29
|
Update of /cvsroot/devil-linux/web/images In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19177 Modified Files: devil-linux.gif divider.gif mainbg.gif navitem.gif opencdpress.jpe search.gif sflogo.gif Log Message: make sure files are binary Index: mainbg.gif =================================================================== RCS file: /cvsroot/devil-linux/web/images/mainbg.gif,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 Binary files /tmp/cvsTXhX6w and /tmp/cvsfckVYl differ Index: search.gif =================================================================== RCS file: /cvsroot/devil-linux/web/images/search.gif,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 Binary files /tmp/cvs1EldFB and /tmp/cvsdH9GBq differ Index: navitem.gif =================================================================== RCS file: /cvsroot/devil-linux/web/images/navitem.gif,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 Binary files /tmp/cvsPWYy7I and /tmp/cvsIhxn7x differ Index: opencdpress.jpe =================================================================== RCS file: /cvsroot/devil-linux/web/images/opencdpress.jpe,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 Binary files /tmp/cvscA6NYK and /tmp/cvsoX1n1z differ Index: sflogo.gif =================================================================== RCS file: /cvsroot/devil-linux/web/images/sflogo.gif,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 Binary files /tmp/cvsVfNdF2 and /tmp/cvsJOtPRR differ Index: devil-linux.gif =================================================================== RCS file: /cvsroot/devil-linux/web/images/devil-linux.gif,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 Binary files /tmp/cvsPgqT19 and /tmp/cvsZRTijZ differ Index: divider.gif =================================================================== RCS file: /cvsroot/devil-linux/web/images/divider.gif,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 Binary files /tmp/cvsXgtUP1 and /tmp/cvs3LHH9Q differ |
From: Heiko Z. <smi...@us...> - 2004-06-02 15:36:28
|
Update of /cvsroot/devil-linux/web/images/partners In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19177/partners Modified Files: pd_log1.gif rackbase.gif Log Message: make sure files are binary Index: pd_log1.gif =================================================================== RCS file: /cvsroot/devil-linux/web/images/partners/pd_log1.gif,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 Binary files /tmp/cvsWxfHkx and /tmp/cvs1LaQcm differ Index: rackbase.gif =================================================================== RCS file: /cvsroot/devil-linux/web/images/partners/rackbase.gif,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 Binary files /tmp/cvsClqnwC and /tmp/cvsuB2Urr differ |
From: Heiko Z. <smi...@us...> - 2004-06-02 15:36:00
|
Update of /cvsroot/devil-linux/web/images/webshop In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19177/webshop Modified Files: clock.jpg golf-shirt.jpg mouse-mat.jpg Log Message: make sure files are binary Index: mouse-mat.jpg =================================================================== RCS file: /cvsroot/devil-linux/web/images/webshop/mouse-mat.jpg,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 Binary files /tmp/cvsyE61Sb and /tmp/cvsjTjhdG differ Index: clock.jpg =================================================================== RCS file: /cvsroot/devil-linux/web/images/webshop/clock.jpg,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 Binary files /tmp/cvshuVszo and /tmp/cvsBpNx0S differ Index: golf-shirt.jpg =================================================================== RCS file: /cvsroot/devil-linux/web/images/webshop/golf-shirt.jpg,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 Binary files /tmp/cvsKgWElw and /tmp/cvsIbAJR0 differ |
From: Heiko Z. <smi...@us...> - 2004-06-02 15:36:00
|
Update of /cvsroot/devil-linux/web/images/sponsordl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19177/sponsordl Modified Files: paypal-donate.gif Log Message: make sure files are binary Index: paypal-donate.gif =================================================================== RCS file: /cvsroot/devil-linux/web/images/sponsordl/paypal-donate.gif,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 Binary files /tmp/cvsN0w5t3 and /tmp/cvsklojHx differ |
From: Heiko Z. <smi...@us...> - 2004-06-02 15:36:00
|
Update of /cvsroot/devil-linux/web/images/sitetools In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19177/sitetools Modified Files: approved_aaa.gif vcss.gif wcag1AAA.gif xhtml11.gif Log Message: make sure files are binary Index: xhtml11.gif =================================================================== RCS file: /cvsroot/devil-linux/web/images/sitetools/xhtml11.gif,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 Binary files /tmp/cvsjxRuwZ and /tmp/cvsND3VXs differ Index: vcss.gif =================================================================== RCS file: /cvsroot/devil-linux/web/images/sitetools/vcss.gif,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 Binary files /tmp/cvsJmjn74 and /tmp/cvs21nWAy differ Index: wcag1AAA.gif =================================================================== RCS file: /cvsroot/devil-linux/web/images/sitetools/wcag1AAA.gif,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 Binary files /tmp/cvsvBo5C6 and /tmp/cvsnOva9z differ Index: approved_aaa.gif =================================================================== RCS file: /cvsroot/devil-linux/web/images/sitetools/approved_aaa.gif,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 Binary files /tmp/cvsaH5NBa and /tmp/cvswA0taE differ |
From: Heiko Z. <smi...@us...> - 2004-06-02 14:44:51
|
Update of /cvsroot/devil-linux/web/screenshots In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7032/screenshots Removed Files: .keepme Log Message: wrong directory... --- .keepme DELETED --- |
From: Heiko Z. <smi...@us...> - 2004-06-02 14:40:28
|
Update of /cvsroot/devil-linux/web/images/webshop In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6071/images/webshop Added Files: clock.jpg golf-shirt.jpg mouse-mat.jpg Log Message: re-added images as binary files --- NEW FILE: mouse-mat.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: clock.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: golf-shirt.jpg --- (This appears to be a binary file; contents omitted.) |
From: Heiko Z. <smi...@us...> - 2004-06-02 14:40:28
|
Update of /cvsroot/devil-linux/web/images/sitetools In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6071/images/sitetools Added Files: approved_aaa.gif vcss.gif wcag1AAA.gif xhtml11.gif Log Message: re-added images as binary files --- NEW FILE: xhtml11.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: vcss.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: wcag1AAA.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: approved_aaa.gif --- (This appears to be a binary file; contents omitted.) |
From: Heiko Z. <smi...@us...> - 2004-06-02 14:40:28
|
Update of /cvsroot/devil-linux/web/images/sponsordl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6071/images/sponsordl Added Files: paypal-donate.gif Log Message: re-added images as binary files --- NEW FILE: paypal-donate.gif --- (This appears to be a binary file; contents omitted.) |
From: Heiko Z. <smi...@us...> - 2004-06-02 14:40:27
|
Update of /cvsroot/devil-linux/web/images/poll In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6071/images/poll Added Files: castvote.gif viewresults.gif Log Message: re-added images as binary files --- NEW FILE: viewresults.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: castvote.gif --- (This appears to be a binary file; contents omitted.) |
From: Heiko Z. <smi...@us...> - 2004-06-02 14:40:26
|
Update of /cvsroot/devil-linux/web/images/downloads In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6071/images/downloads Added Files: editorsplash.gif java.gif lfs_book.png lftp.png Log Message: re-added images as binary files --- NEW FILE: lftp.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: lfs_book.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: java.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: editorsplash.gif --- (This appears to be a binary file; contents omitted.) |
From: Heiko Z. <smi...@us...> - 2004-06-02 14:40:26
|
Update of /cvsroot/devil-linux/web/images/partners In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6071/images/partners Added Files: pd_log1.gif rackbase.gif Log Message: re-added images as binary files --- NEW FILE: pd_log1.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: rackbase.gif --- (This appears to be a binary file; contents omitted.) |
Update of /cvsroot/devil-linux/web/images In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6071/images Added Files: devil-linux.gif divider.gif footerbg.gif headerbg.gif mainbg.gif navitem.gif opencdpress.jpe repeater.gif search.gif sflogo.gif Log Message: re-added images as binary files --- NEW FILE: mainbg.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: search.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: footerbg.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: headerbg.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: navitem.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: opencdpress.jpe --- (This appears to be a binary file; contents omitted.) --- NEW FILE: sflogo.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: devil-linux.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: repeater.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: divider.gif --- (This appears to be a binary file; contents omitted.) |
From: Heiko Z. <smi...@us...> - 2004-06-02 14:38:01
|
Update of /cvsroot/devil-linux/web/images/sitetools In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5468/sitetools Removed Files: approved_aaa.gif vcss.gif wcag1AAA.gif xhtml11.gif Log Message: remove images, they need to be re-created as binray --- xhtml11.gif DELETED --- --- vcss.gif DELETED --- --- wcag1AAA.gif DELETED --- --- approved_aaa.gif DELETED --- |
From: Heiko Z. <smi...@us...> - 2004-06-02 14:38:01
|
Update of /cvsroot/devil-linux/web/images/sponsordl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5468/sponsordl Removed Files: paypal-donate.gif Log Message: remove images, they need to be re-created as binray --- paypal-donate.gif DELETED --- |
From: Heiko Z. <smi...@us...> - 2004-06-02 14:38:01
|
Update of /cvsroot/devil-linux/web/images/poll In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5468/poll Removed Files: castvote.gif viewresults.gif Log Message: remove images, they need to be re-created as binray --- viewresults.gif DELETED --- --- castvote.gif DELETED --- |