Changeset 2315
- Timestamp:
- Apr 26, 2008, 9:25:03 AM (15 years ago)
- Location:
- pwntcha/trunk
- Files:
-
- 1 added
- 26 edited
Legend:
- Unmodified
- Added
- Removed
-
pwntcha/trunk
- Property svn:ignore
-
old new 1 1 Makefile.in 2 2 Makefile 3 .auto 3 4 aclocal.m4 4 5 autom4te.cache 5 autotools6 6 config.h.in 7 7 config.h
-
- Property svn:ignore
-
pwntcha/trunk/COPYING
r381 r2315 1 do What The Fuck you want to Public License 1 DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE 2 Version 2, December 2004 2 3 3 Version 1.0, March 2000 4 Copyright (C) 2000 Banlu Kemiyatorn (]d). 5 136 Nives 7 Jangwattana 14 Laksi Bangkok 6 Everyone is permitted to copy and distribute verbatim copies 7 of this license document, but changing it is not allowed.4 Copyright (C) 2004 Sam Hocevar 5 14 rue de Plaisance, 75014 Paris, France 6 Everyone is permitted to copy and distribute verbatim or modified 7 copies of this license document, and changing it is allowed as long 8 as the name is changed. 8 9 9 Ok, the purpose of this license is simple 10 and you just 10 DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE 11 TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 11 12 12 DO WHAT THE FUCK YOU WANT TO. 13 0. You just DO WHAT THE FUCK YOU WANT TO. 14 -
pwntcha/trunk/bootstrap
r381 r2315 1 1 #! /bin/sh 2 # $Id: bootstrap 1966 2008-02-17 08:29:51Z sam $ 2 3 3 ## bootstrap file for Elk -- Sam Hocevar <sam@zoy.org> 4 ## $Id: bootstrap 253 2004-08-09 20:08:52Z sam $ 4 # bootstrap: generic bootstrap/autogen.sh script for autotools projects 5 # 6 # Copyright (c) 2002-2008 Sam Hocevar <sam@zoy.org> 7 # 8 # This program is free software. It comes without any warranty, to 9 # the extent permitted by applicable law. You can redistribute it 10 # and/or modify it under the terms of the Do What The Fuck You Want 11 # To Public License, Version 2, as published by Sam Hocevar. See 12 # http://sam.zoy.org/wtfpl/COPYING for more details. 13 # 14 # The latest version of this script can be found at the following place: 15 # http://sam.zoy.org/autotools/ 5 16 6 set -x 17 # Die if an error occurs 7 18 set -e 8 19 9 # Get a sane environment, just in case 10 LANG=C 11 export LANG 12 CYGWIN=binmode 13 export CYGWIN 20 # Guess whether we are using configure.ac or configure.in 21 if test -f configure.ac; then 22 conffile="configure.ac" 23 elif test -f configure.in; then 24 conffile="configure.in" 25 else 26 echo "$0: could not find configure.ac or configure.in" 27 exit 1 28 fi 29 30 # Check for needed features 31 auxdir="`sed -ne 's/^[ \t]*A._CONFIG_AUX_DIR *([[ ]*\([^] )]*\).*/\1/p' $conffile`" 32 libtool="`grep -q '^[ \t]*A._PROG_LIBTOOL' $conffile && echo yes || echo no`" 33 header="`grep -q '^[ \t]*A._CONFIG_HEADER' $conffile && echo yes || echo no`" 34 aclocalflags="`sed -ne 's/^[ \t]*ACLOCAL_AMFLAGS[ \t]*=//p' Makefile.am`" 14 35 15 36 # Check for automake 16 37 amvers="no" 17 if automake-1.9 --version >/dev/null 2>&1; then 18 amvers="-1.9"19 elif automake-1.8 --version >/dev/null 2>&1; then 20 amvers="-1.8"21 elif automake-1.7--version >/dev/null 2>&1; then22 amvers="-1.7"23 elif automake-1.6 --version >/dev/null 2>&1; then 24 amvers="-1.6"25 elif automake-1.5 --version >/dev/null 2>&1; then 26 amvers="-1.5" 27 elifautomake --version > /dev/null 2>&1; then38 for v in 11 10 9 8 7 6 5; do 39 if automake-1.${v} --version >/dev/null 2>&1; then 40 amvers="-1.${v}" 41 break 42 elif automake1.${v} --version >/dev/null 2>&1; then 43 amvers="1.${v}" 44 break 45 fi 46 done 47 48 if test "${amvers}" = "no" && automake --version > /dev/null 2>&1; then 28 49 amvers="`automake --version | sed -e '1s/[^0-9]*//' -e q`" 29 50 if expr "$amvers" "<" "1.5" > /dev/null 2>&1; then … … 35 56 36 57 if test "$amvers" = "no"; then 37 set +x38 58 echo "$0: you need automake version 1.5 or later" 39 59 exit 1 40 60 fi 41 61 62 # Check for autoconf 63 acvers="no" 64 for v in "" "259" "253"; do 65 if autoconf${v} --version >/dev/null 2>&1; then 66 acvers="${v}" 67 break 68 fi 69 done 70 71 if test "$acvers" = "no"; then 72 echo "$0: you need autoconf" 73 exit 1 74 fi 75 76 # Check for libtool 77 if test "$libtool" = "yes"; then 78 libtoolize="no" 79 if glibtoolize --version >/dev/null 2>&1; then 80 libtoolize="glibtoolize" 81 else 82 for v in "16" "15" "" "14"; do 83 if libtoolize${v} --version >/dev/null 2>&1; then 84 libtoolize="libtoolize${v}" 85 break 86 fi 87 done 88 fi 89 90 if test "$libtoolize" = "no"; then 91 echo "$0: you need libtool" 92 exit 1 93 fi 94 fi 95 42 96 # Remove old cruft 43 rm -f aclocal.m4 configure config.guess config.log config.sub config.cache config.h.in config.h compile ltmain.sh libtool ltconfig missing mkinstalldirs depcomp install-sh INSTALL 44 rm -Rf autom4te.cache autotools 45 mkdir autotools 97 for x in aclocal.m4 configure config.guess config.log config.sub config.cache config.h.in config.h compile libtool.m4 ltoptions.m4 ltsugar.m4 ltversion.m4 ltmain.sh libtool ltconfig missing mkinstalldirs depcomp install-sh; do rm -f $x autotools/$x; if test -n "$auxdir"; then rm -f "$auxdir/$x"; fi; done 98 rm -Rf autom4te.cache 99 if test -n "$auxdir"; then 100 if test ! -d "$auxdir"; then 101 mkdir "$auxdir" 102 fi 103 aclocalflags="${aclocalflags} -I $auxdir -I ." 104 fi 46 105 47 aclocal${amvers} 48 autoconf 49 autoheader 50 automake${amvers} --add-missing --copy 106 # Explain what we are doing from now 107 set -x 51 108 109 # Bootstrap package 110 if test "$libtool" = "yes"; then 111 ${libtoolize} --copy --force 112 if test -n "$auxdir" -a ! "$auxdir" = "." -a -f "ltmain.sh"; then 113 echo "$0: working around a minor libtool issue" 114 mv ltmain.sh "$auxdir/" 115 fi 116 fi 117 118 aclocal${amvers} ${aclocalflags} 119 autoconf${acvers} 120 if test "$header" = "yes"; then 121 autoheader${acvers} 122 fi 123 #add --include-deps if you want to bootstrap with any other compiler than gcc 124 #automake${amvers} --add-missing --copy --include-deps 125 automake${amvers} --foreign --add-missing --copy 126 127 # Remove cruft that we no longer want 128 rm -Rf autom4te.cache 129 -
pwntcha/trunk/configure.ac
r480 r2315 1 1 # $Id: configure.ac 253 2004-08-09 20:08:52Z sam $ 2 2 3 AC_INIT(src/main.c) 3 AC_INIT(pwntcha, 0.6) 4 AC_CONFIG_AUX_DIR(.auto) 5 AM_INIT_AUTOMAKE([no-define tar-ustar]) 6 7 AM_CONFIG_HEADER(config.h) 4 8 5 9 AC_PREREQ(2.50) 6 AC_CONFIG_AUX_DIR(autotools) 7 AC_CANONICAL_SYSTEM 8 9 AM_INIT_AUTOMAKE(pwntcha, 0.5) 10 AM_CONFIG_HEADER(config.h) 10 dnlAC_CANONICAL_SYSTEM 11 11 12 12 AC_PROG_CC -
pwntcha/trunk/extras/makefont.c
r447 r2315 4 4 * 5 5 * Copyright: (c) 2004 Sam Hocevar <sam@zoy.org> 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the Do What The Fuck You Want To 8 * Public License as published by Banlu Kemiyatorn. See 9 * http://sam.zoy.org/projects/COPYING.WTFPL for more details. 6 * This program is free software. It comes without any warranty, to 7 * the extent permitted by applicable law. You can redistribute it 8 * and/or modify it under the terms of the Do What The Fuck You Want 9 * To Public License, Version 2, as published by Sam Hocevar. See 10 * http://sam.zoy.org/wtfpl/COPYING for more details. 10 11 * 11 12 * Build example: -
pwntcha/trunk/src/authimage.c
r482 r2315 4 4 * 5 5 * Copyright: (c) 2005 Sam Hocevar <sam@zoy.org> 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the Do What The Fuck You Want To 8 * Public License as published by Banlu Kemiyatorn. See 9 * http://sam.zoy.org/projects/COPYING.WTFPL for more details. 6 * This program is free software. It comes without any warranty, to 7 * the extent permitted by applicable law. You can redistribute it 8 * and/or modify it under the terms of the Do What The Fuck You Want 9 * To Public License, Version 2, as published by Sam Hocevar. See 10 * http://sam.zoy.org/wtfpl/COPYING for more details. 10 11 */ 11 12 -
pwntcha/trunk/src/clubic.c
r482 r2315 4 4 * 5 5 * Copyright: (c) 2005 Sam Hocevar <sam@zoy.org> 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the Do What The Fuck You Want To 8 * Public License as published by Banlu Kemiyatorn. See 9 * http://sam.zoy.org/projects/COPYING.WTFPL for more details. 6 * This program is free software. It comes without any warranty, to 7 * the extent permitted by applicable law. You can redistribute it 8 * and/or modify it under the terms of the Do What The Fuck You Want 9 * To Public License, Version 2, as published by Sam Hocevar. See 10 * http://sam.zoy.org/wtfpl/COPYING for more details. 10 11 */ 11 12 -
pwntcha/trunk/src/common.h
r1003 r2315 4 4 * 5 5 * Copyright: (c) 2004 Sam Hocevar <sam@zoy.org> 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the Do What The Fuck You Want To 8 * Public License as published by Banlu Kemiyatorn. See 9 * http://sam.zoy.org/projects/COPYING.WTFPL for more details. 6 * This program is free software. It comes without any warranty, to 7 * the extent permitted by applicable law. You can redistribute it 8 * and/or modify it under the terms of the Do What The Fuck You Want 9 * To Public License, Version 2, as published by Sam Hocevar. See 10 * http://sam.zoy.org/wtfpl/COPYING for more details. 10 11 */ 11 12 -
pwntcha/trunk/src/easter-eggs.c
r499 r2315 4 4 * 5 5 * Copyright: (c) 2005 Sam Hocevar <sam@zoy.org> 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the Do What The Fuck You Want To 8 * Public License as published by Banlu Kemiyatorn. See 9 * http://sam.zoy.org/projects/COPYING.WTFPL for more details. 6 * This program is free software. It comes without any warranty, to 7 * the extent permitted by applicable law. You can redistribute it 8 * and/or modify it under the terms of the Do What The Fuck You Want 9 * To Public License, Version 2, as published by Sam Hocevar. See 10 * http://sam.zoy.org/wtfpl/COPYING for more details. 10 11 */ 11 12 -
pwntcha/trunk/src/filter.c
r482 r2315 4 4 * 5 5 * Copyright: (c) 2004 Sam Hocevar <sam@zoy.org> 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the Do What The Fuck You Want To 8 * Public License as published by Banlu Kemiyatorn. See 9 * http://sam.zoy.org/projects/COPYING.WTFPL for more details. 6 * This program is free software. It comes without any warranty, to 7 * the extent permitted by applicable law. You can redistribute it 8 * and/or modify it under the terms of the Do What The Fuck You Want 9 * To Public License, Version 2, as published by Sam Hocevar. See 10 * http://sam.zoy.org/wtfpl/COPYING for more details. 10 11 */ 11 12 -
pwntcha/trunk/src/font.c
r455 r2315 4 4 * 5 5 * Copyright: (c) 2005 Sam Hocevar <sam@zoy.org> 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the Do What The Fuck You Want To 8 * Public License as published by Banlu Kemiyatorn. See 9 * http://sam.zoy.org/projects/COPYING.WTFPL for more details. 6 * This program is free software. It comes without any warranty, to 7 * the extent permitted by applicable law. You can redistribute it 8 * and/or modify it under the terms of the Do What The Fuck You Want 9 * To Public License, Version 2, as published by Sam Hocevar. See 10 * http://sam.zoy.org/wtfpl/COPYING for more details. 10 11 */ 11 12 -
pwntcha/trunk/src/image.c
r445 r2315 4 4 * 5 5 * Copyright: (c) 2004 Sam Hocevar <sam@zoy.org> 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the Do What The Fuck You Want To 8 * Public License as published by Banlu Kemiyatorn. See 9 * http://sam.zoy.org/projects/COPYING.WTFPL for more details. 6 * This program is free software. It comes without any warranty, to 7 * the extent permitted by applicable law. You can redistribute it 8 * and/or modify it under the terms of the Do What The Fuck You Want 9 * To Public License, Version 2, as published by Sam Hocevar. See 10 * http://sam.zoy.org/wtfpl/COPYING for more details. 10 11 */ 11 12 -
pwntcha/trunk/src/java.c
r1000 r2315 4 4 * 5 5 * Copyright: (c) 2005 Sam Hocevar <sam@zoy.org> 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the Do What The Fuck You Want To 8 * Public License as published by Banlu Kemiyatorn. See 9 * http://sam.zoy.org/projects/COPYING.WTFPL for more details. 6 * This program is free software. It comes without any warranty, to 7 * the extent permitted by applicable law. You can redistribute it 8 * and/or modify it under the terms of the Do What The Fuck You Want 9 * To Public License, Version 2, as published by Sam Hocevar. See 10 * http://sam.zoy.org/wtfpl/COPYING for more details. 10 11 */ 11 12 -
pwntcha/trunk/src/linuxfr.c
r482 r2315 4 4 * 5 5 * Copyright: (c) 2005 Sam Hocevar <sam@zoy.org> 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the Do What The Fuck You Want To 8 * Public License as published by Banlu Kemiyatorn. See 9 * http://sam.zoy.org/projects/COPYING.WTFPL for more details. 6 * This program is free software. It comes without any warranty, to 7 * the extent permitted by applicable law. You can redistribute it 8 * and/or modify it under the terms of the Do What The Fuck You Want 9 * To Public License, Version 2, as published by Sam Hocevar. See 10 * http://sam.zoy.org/wtfpl/COPYING for more details. 10 11 */ 11 12 -
pwntcha/trunk/src/livejournal.c
r482 r2315 4 4 * 5 5 * Copyright: (c) 2005 Sam Hocevar <sam@zoy.org> 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the Do What The Fuck You Want To 8 * Public License as published by Banlu Kemiyatorn. See 9 * http://sam.zoy.org/projects/COPYING.WTFPL for more details. 6 * This program is free software. It comes without any warranty, to 7 * the extent permitted by applicable law. You can redistribute it 8 * and/or modify it under the terms of the Do What The Fuck You Want 9 * To Public License, Version 2, as published by Sam Hocevar. See 10 * http://sam.zoy.org/wtfpl/COPYING for more details. 10 11 */ 11 12 -
pwntcha/trunk/src/lmt.c
r461 r2315 4 4 * 5 5 * Copyright: (c) 2005 Sam Hocevar <sam@zoy.org> 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the Do What The Fuck You Want To 8 * Public License as published by Banlu Kemiyatorn. See 9 * http://sam.zoy.org/projects/COPYING.WTFPL for more details. 6 * This program is free software. It comes without any warranty, to 7 * the extent permitted by applicable law. You can redistribute it 8 * and/or modify it under the terms of the Do What The Fuck You Want 9 * To Public License, Version 2, as published by Sam Hocevar. See 10 * http://sam.zoy.org/wtfpl/COPYING for more details. 10 11 */ 11 12 -
pwntcha/trunk/src/main.c
r1003 r2315 4 4 * 5 5 * Copyright: (c) 2004 Sam Hocevar <sam@zoy.org> 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the Do What The Fuck You Want To 8 * Public License as published by Banlu Kemiyatorn. See 9 * http://sam.zoy.org/projects/COPYING.WTFPL for more details. 6 * This program is free software. It comes without any warranty, to 7 * the extent permitted by applicable law. You can redistribute it 8 * and/or modify it under the terms of the Do What The Fuck You Want 9 * To Public License, Version 2, as published by Sam Hocevar. See 10 * http://sam.zoy.org/wtfpl/COPYING for more details. 10 11 */ 11 12 … … 89 90 break; 90 91 case 'v': /* --version */ 91 printf("pwntcha (captcha decoder) %s\n", VERSION);92 printf("pwntcha (captcha decoder) %s\n", PACKAGE_VERSION); 92 93 printf("Written by Sam Hocevar.\n"); 93 94 printf("\n"); -
pwntcha/trunk/src/paypal.c
r457 r2315 4 4 * 5 5 * Copyright: (c) 2005 Sam Hocevar <sam@zoy.org> 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the Do What The Fuck You Want To 8 * Public License as published by Banlu Kemiyatorn. See 9 * http://sam.zoy.org/projects/COPYING.WTFPL for more details. 6 * This program is free software. It comes without any warranty, to 7 * the extent permitted by applicable law. You can redistribute it 8 * and/or modify it under the terms of the Do What The Fuck You Want 9 * To Public License, Version 2, as published by Sam Hocevar. See 10 * http://sam.zoy.org/wtfpl/COPYING for more details. 10 11 */ 11 12 -
pwntcha/trunk/src/phpbb.c
r482 r2315 4 4 * 5 5 * Copyright: (c) 2005 Sam Hocevar <sam@zoy.org> 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the Do What The Fuck You Want To 8 * Public License as published by Banlu Kemiyatorn. See 9 * http://sam.zoy.org/projects/COPYING.WTFPL for more details. 6 * This program is free software. It comes without any warranty, to 7 * the extent permitted by applicable law. You can redistribute it 8 * and/or modify it under the terms of the Do What The Fuck You Want 9 * To Public License, Version 2, as published by Sam Hocevar. See 10 * http://sam.zoy.org/wtfpl/COPYING for more details. 10 11 */ 11 12 -
pwntcha/trunk/src/scode.c
r1000 r2315 4 4 * 5 5 * Copyright: (c) 2004 Sam Hocevar <sam@zoy.org> 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the Do What The Fuck You Want To 8 * Public License as published by Banlu Kemiyatorn. See 9 * http://sam.zoy.org/projects/COPYING.WTFPL for more details. 6 * This program is free software. It comes without any warranty, to 7 * the extent permitted by applicable law. You can redistribute it 8 * and/or modify it under the terms of the Do What The Fuck You Want 9 * To Public License, Version 2, as published by Sam Hocevar. See 10 * http://sam.zoy.org/wtfpl/COPYING for more details. 10 11 */ 11 12 -
pwntcha/trunk/src/slashdot.c
r482 r2315 4 4 * 5 5 * Copyright: (c) 2004 Sam Hocevar <sam@zoy.org> 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the Do What The Fuck You Want To 8 * Public License as published by Banlu Kemiyatorn. See 9 * http://sam.zoy.org/projects/COPYING.WTFPL for more details. 6 * This program is free software. It comes without any warranty, to 7 * the extent permitted by applicable law. You can redistribute it 8 * and/or modify it under the terms of the Do What The Fuck You Want 9 * To Public License, Version 2, as published by Sam Hocevar. See 10 * http://sam.zoy.org/wtfpl/COPYING for more details. 10 11 */ 11 12 -
pwntcha/trunk/src/test.c
r482 r2315 4 4 * 5 5 * Copyright: (c) 2004 Sam Hocevar <sam@zoy.org> 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the Do What The Fuck You Want To 8 * Public License as published by Banlu Kemiyatorn. See 9 * http://sam.zoy.org/projects/COPYING.WTFPL for more details. 6 * This program is free software. It comes without any warranty, to 7 * the extent permitted by applicable law. You can redistribute it 8 * and/or modify it under the terms of the Do What The Fuck You Want 9 * To Public License, Version 2, as published by Sam Hocevar. See 10 * http://sam.zoy.org/wtfpl/COPYING for more details. 10 11 */ 11 12 -
pwntcha/trunk/src/ticketmaster.c
r1003 r2315 4 4 * 5 5 * Copyright: (c) 2006 Sam Hocevar <sam@zoy.org> 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the Do What The Fuck You Want To 8 * Public License as published by Banlu Kemiyatorn. See 9 * http://sam.zoy.org/projects/COPYING.WTFPL for more details. 6 * This program is free software. It comes without any warranty, to 7 * the extent permitted by applicable law. You can redistribute it 8 * and/or modify it under the terms of the Do What The Fuck You Want 9 * To Public License, Version 2, as published by Sam Hocevar. See 10 * http://sam.zoy.org/wtfpl/COPYING for more details. 10 11 */ 11 12 -
pwntcha/trunk/src/tickets.c
r482 r2315 4 4 * 5 5 * Copyright: (c) 2005 Sam Hocevar <sam@zoy.org> 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the Do What The Fuck You Want To 8 * Public License as published by Banlu Kemiyatorn. See 9 * http://sam.zoy.org/projects/COPYING.WTFPL for more details. 6 * This program is free software. It comes without any warranty, to 7 * the extent permitted by applicable law. You can redistribute it 8 * and/or modify it under the terms of the Do What The Fuck You Want 9 * To Public License, Version 2, as published by Sam Hocevar. See 10 * http://sam.zoy.org/wtfpl/COPYING for more details. 10 11 */ 11 12 -
pwntcha/trunk/src/vbulletin.c
r482 r2315 4 4 * 5 5 * Copyright: (c) 2005 Sam Hocevar <sam@zoy.org> 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the Do What The Fuck You Want To 8 * Public License as published by Banlu Kemiyatorn. See 9 * http://sam.zoy.org/projects/COPYING.WTFPL for more details. 6 * This program is free software. It comes without any warranty, to 7 * the extent permitted by applicable law. You can redistribute it 8 * and/or modify it under the terms of the Do What The Fuck You Want 9 * To Public License, Version 2, as published by Sam Hocevar. See 10 * http://sam.zoy.org/wtfpl/COPYING for more details. 10 11 */ 11 12 -
pwntcha/trunk/src/xanga.c
r482 r2315 4 4 * 5 5 * Copyright: (c) 2005 Sam Hocevar <sam@zoy.org> 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the Do What The Fuck You Want To 8 * Public License as published by Banlu Kemiyatorn. See 9 * http://sam.zoy.org/projects/COPYING.WTFPL for more details. 6 * This program is free software. It comes without any warranty, to 7 * the extent permitted by applicable law. You can redistribute it 8 * and/or modify it under the terms of the Do What The Fuck You Want 9 * To Public License, Version 2, as published by Sam Hocevar. See 10 * http://sam.zoy.org/wtfpl/COPYING for more details. 10 11 */ 11 12
Note: See TracChangeset
for help on using the changeset viewer.