--- libapache-gallery-perl-1.0.2.orig/debian/README.Debian +++ libapache-gallery-perl-1.0.2/debian/README.Debian @@ -0,0 +1,125 @@ +libapache-gallery-perl for Debian +--------------------------------- + +Read more to learn how to integrate Apache::Gallery in the Apache Web Server. +You have to complete all the steps described in this README file. + +1. Configure your Apache server + +1.1 Apache 1.3 + +You need to configure your virtualhost block to look like: + + + ServerName gallery.yourdomain.org + DocumentRoot /data/pictures/ + ErrorLog logs/gallery-error_log + TransferLog logs/gallery-access_log + PerlSetVar GalleryTemplateDir '/usr/share/libapache-gallery-perl/templates/default' + PerlSetVar GalleryInfo 'Picture Taken => DateTimeOriginal, Flash => Flash' + PerlSetVar GallerySizes '640 1024 1600 2272' + PerlSetVar GalleryThumbnailSize '100x75' + PerlSetVar GalleryCopyrightImage 'htdocs/c.png' + + SetHandler perl-script + PerlHandler Apache::Gallery + + + +NOTICE: Although stated by the original author of Apache::Gallery, some users +have reported it is not longer true that Apache::Gallery does not work with +mod_autoindex. If you experience problems, with your gallery, please, follow +this instructions: + +WARNING: Apache::Gallery might not work properly if mod_autoindex is loaded by +Apache. Indeed, mod_autoindex might override Apache::Gallery and might not let +it display directory content. + +To check if your apache loads mod_autoindex, just look for this line in +httpd.conf: + +LoadModule autoindex_module /usr/lib/apache/1.3/mod_autoindex.so + +If this line is not commented, Apache::Gallery might only work when an image is +loaded directly. Whenever a directory listing is requested, Apache might +respond with the classic (and ugly) directory listing performed by +mod_autoindex. + +1.2 Apache 2 + +In case you run apache 2 and modperl 2 (or 1.99), it needs to look like: + + + ServerName gallery.yourdomain.org + DocumentRoot /data/pictures/ + ErrorLog logs/gallery-error_log + TransferLog logs/gallery-access_log + PerlSetVar GalleryTemplateDir '/usr/share/libapache-gallery-perl/templates/default' + PerlSetVar GalleryInfo 'Picture Taken => DateTimeOriginal, Flash => Flash' + PerlSetVar GallerySizes '640 1024 1600 2272' + PerlSetVar GalleryThumbnailSize '100x75' + PerlSetVar GalleryCopyrightImage 'htdocs/c.png' + PerlOptions +GlobalRequest + + SetHandler modperl + PerlResponseHandler Apache::Gallery + + + +NOTICE: Although stated by the original author of Apache::Gallery, some users +have reported it is not longer true that Apache::Gallery does not work with +mod_autoindex. If you experience problems, with your gallery, please, follow +this instructions: + +WARNING: Apache::Gallery might not work properly if mod_autoindex is loaded by +Apache. Indeed, mod_autoindex might override Apache::Gallery and might not let +it display directory content. + +To check if your installation loads the autoindex module, you need to check +under /etc/apache2/mods-enabled for a link to the module (actually placed under +/etc/apache2/mods-available) + +If this module is activated, Apache::Gallery might only work when an image is +loaded directly. Whenever a directory listing is requested, Apache might +respond with the classic (and ugly) directory listing performed by +mod_autoindex. + +2. Place the icons + +For accessing the icons, you can create an alias to the directory where they +reside. Icons for libapache-gallery-perl *must* appear under /icons/gallery +on your topmost apache tree: + + Alias /icons/gallery/ "/usr/share/libapache-gallery-perl/icons/" + +This Alias defined above should appear _before_ the "Alias /icons ..." in your +config files. + +Another choice is to symlink: + + /usr/share/apache2/icons/gallery -> /usr/share/libapache-gallery-perl/icons + +From your Apache icons directory. The example above is for Apache2. + +As a less recommended alternative, you can create a directory called gallery in +your Apache icons directory and copy the png files in htdocs to this directory. + +3. Edit the template directory + +Edit the GalleryTemplateDir variable to point to the templates you want +Apache::Gallery to use. This Debian package distributes 2 templates, called +"default" and "new". + +4. Place the CSS file + +The gallery.css file from the template directory you choose must be +copied to the DocumentRoot of your gallery. + +That's IT! + + +It is possible to include a graphical copyright notice on each picture now. +By setting the GalleryCopyrightImage PerlSetVar you can define the path +to a picture that you want include in the bottom right of each picture. + + -- Jesus Climent Mon, 09 Apr 2004 22:31:39 +0000 --- libapache-gallery-perl-1.0.2.orig/debian/watch +++ libapache-gallery-perl-1.0.2/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://search.cpan.org/CPAN/authors/id/L/LE/LEGART/ Apache-Gallery-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libapache-gallery-perl-1.0.2.orig/debian/control +++ libapache-gallery-perl-1.0.2/debian/control @@ -0,0 +1,25 @@ +Source: libapache-gallery-perl +Maintainer: Don Armstrong +Priority: optional +Section: perl +Build-Depends-Indep: perl, libmodule-build-perl, sharutils, + libapache2-mod-perl2 (>=2.0) | libapache-request-perl, + libimage-size-perl, libimage-info-perl, libtemplate-perl, + libimage-imlib2-perl, libtext-template-perl +Build-Depends: debhelper (>= 8) +Standards-Version: 3.9.2 + +Package: libapache-gallery-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, libapache2-mod-perl2 (>= + 2.0) | libapache-request-perl, libimage-size-perl, + libimage-info-perl, libtemplate-perl, libimage-imlib2-perl, + libtext-template-perl +Description: Apache module to create image galleries on-the-fly + This package contains a Perl module for Apache to create galleries. + . + The images just need to be copied into a directory where Apache will pick + them up and create a gallery page for you, with thumbnails and links to the + full size images. + . + Thumbnail size and maximum image size can be defined, among others. --- libapache-gallery-perl-1.0.2.orig/debian/cron.daily +++ libapache-gallery-perl-1.0.2/debian/cron.daily @@ -0,0 +1,24 @@ +#!/bin/sh +# +# libapache-gallery-perl cleanup +# Remove all files in $cachedir that have not been accessed in a week, +# then remove empty directories. Run as user $user. + +set -e + +cachedir="/var/cache/www" +user="www-data" + +if [ -d "$cachedir" ]; then + # remove old files + start-stop-daemon --start --pidfile /dev/null --startas /bin/sh \ + --oknodo --chuid "$user" -- -c \ + "find '$cachedir' -type f -atime +6 -delete" + # remove empty directories + start-stop-daemon --start --pidfile /dev/null --startas /bin/sh \ + --oknodo --chuid "$user" -- -c \ + "find '$cachedir' -depth -type d -print0 | \ + xargs -r0 rmdir --ignore-fail-on-non-empty" +fi + +exit 0 --- libapache-gallery-perl-1.0.2.orig/debian/copyright +++ libapache-gallery-perl-1.0.2/debian/copyright @@ -0,0 +1,19 @@ +This is Debian GNU/Linux's prepackaged version of Apache::Gallery, a Perl +module for Apache that allows you to have galleries created on-the-fly. + +Jesus Climent built this package. The original +sources were downloaded from . + +Snapshots are available from . + +The only change for the Debian package was the addition of the debian/ +files. + +The Apache::Gallery copyright is as follows: + +Copyright (C) 2001-2003 Michael Legart + +Apache::Gallery is free software and is released under the Artistic License. + +In a Debian system, you can find the Perl License at: +/usr/share/common-licenses/Artistic --- libapache-gallery-perl-1.0.2.orig/debian/compat +++ libapache-gallery-perl-1.0.2/debian/compat @@ -0,0 +1 @@ +8 --- libapache-gallery-perl-1.0.2.orig/debian/text-html.png.uuencode +++ libapache-gallery-perl-1.0.2/debian/text-html.png.uuencode @@ -0,0 +1,72 @@ +begin 644 htdocs/text-html.png +MB5!.1PT*&@H````-24A$4@```#`````T"`8```#,D[N1````!&=!34$``+&/ +M"_QA!0````EP2%ES```+$0``"Q$!?V1?D0````=T24U%!]$$&`LU'U;WG#@` +M``NO241!5'C:U9I]=)35G<<_DYF\%&B`28FGVI;U!*2N!?)">#FU%3EKRR[@ +MMNL*`8&P]@Q-,GD9$@5E0K&\V%5([>(NGCU"DB$1V;-[V&ZM!['J<2LDT9W) +M`&K59$5%(!!V0(S))#/SW%__F)DG\\Q+(-8M>,]YSCQS[_/<^;U\?]_?_=T[ +M`#6`7`]77E[>^#SZO!4`I +MA=5J9<:,&>S=NX?L[.RD2J2$4'M[.P`[=^[$Y7+A7E,F_9M +MGGKJJ7@XF4:$T+OOODM961DY.3ET=7516EH*@*9IB`AKUJQA<'`0@-+24MK; +MV[GEEELH+2WE]MMOU^>9-V\>+I>+IJ8F7?AA[TF<,N#W^_'Y?+SQQAMXO5X. +M'SZ,W^]GRI0\#APX`+`>F!BE6%.$A70(C10'H\%WZF?#@B;K'QP&&7!8O7L*R9X/3ITRBEV+-G3_3%"1$8?6;(`[&MLK)2'G[X85%*25-3 +MD]CM=E%*Z7UVNUWL=KMHFF;X7+MVK30V-DHH%)*''GI(;#:;V&PV"85"TMBX +M5RHJ*L1FLTDP&!2;S28;-FR00&!(`H$A&1H:DF`P*'Z_7_Q^O_3T]$A;VU%Y +M_?4.>?'%P[)QX\9H;O@!GI[-JU"X#R\G+FSIU+:6FI/C[]]D54W+>8 +M^VIW,&'\6/YEL]E,;LYX#K[81F9&.O^^ZR'JZSI4NKN[ +MV;)E"PZ'@X*"`E:M6AD1V(12HBL?52PC(XNLK*P$0^@>B`K^>:U\^+5.`L%0 +MLJ%P$'YM`D7?F6+HU#25X)7A^]C?##__^]^_QJ)%BPP>2(NUOMOMUB>HKZ^G +MJJI*ISVGLQZ`ZNIJRLO+J:^O1T0H+R_'Y=K'N9-OL?C.8BY^_`[/'=C+HOG% +M^$Z]P]_,GT7'*__%'[QMM+3LPVZW4U%A1],4K:VMM+:V(*)0*@RI\"41B(4A +MW]G9F=*PN@>44G@\;@H+BT;A`8FQ%DFM&3L6%IK:VE +MH6'G",H,?\_/ST\)7]T#FA;"X_$D\4!J*\>.&5TL!FXW>E&2X%P2YE5J^-[K +M]9*?/Y.VMHZ18L#HMHJ*"QDCC0[W=W2\/E(,0&>G +MAZ*BPC@\D@"!NQ?,3@J+^/=B`]8X+@GD$/5*,M+P>H^1GS\SJ0.I6:2>,\:E98D@H\4>TD*&A$BUE>`X'`X$`&7:Y_>%[V4"E^5E56(*!YY +MY!%=R&&<1Y]7!L/$KJ:C1-H[*RDHZ.#FIJ:KAPX0+%Q<6("'9[!4II+%^^'*4T +M-$W%")VLJ(E?8E\E"_G]?DPFDV'RZ$OQ7)Z(L9Z:&@?%Q<6L6+&2DA+JZNJ8.-%*?;TS).<7K/9XZD2DE>#S_$ZG(%&:SB4R+"0%R)YHYW/86-W[] +M6V1]92PB:5C,8;:JK5V'"+S__ON4E"QC^?(25JRXCR5+%K-L60G;MV_GXL5+ +M!M%V['@\+C.GYGT1Q8D3)Y@^?<:5$UFLMT^7L,_/OUK+O<-8#+!C;E6["M^F,0#B:PT8\;TE+%@ +MB765Q]-)86$1FA;"G`;?G&`F.##`P.E>\H+GF7C335RZ\"$GNX0T4YB=&AIV +MZ@(\\<0O]0QJN_BY@)"O_RYI2;!,EI.=S"$)I^)07$D`,L)A,$ +M!@D,!3&;3'B//,\=/R[CU,GW"$F(],CNP?;MC^)T;N399_\-M]O-K%E%+%VZ +ME-NF?(/;IGPC"3Q3K4SE<^U+Z2STR2>7,)O-.H1^L=O%W_]X&8.#@[SYH8\7 +M7GB92=_Z-B>[NADS(9NQH1[^H60)U[(]_]Q!HP?<;C>%A86$0B&"0P$4)L[X +M_/0/A;AU9C&?]`URX^0\`DKA>_\]`'8?.'3-%'CSOW]GC('8#/M.]QFV//HX +M@9"&4H(E/9V`II&>DJ_G7_57C`H$-U6"85"-#8VT=O;2VYN+O??OX;&QB;. +MGS_/A@WK>?GE5W"[W?S5CU9^(5!XX\UN9D^?RKI52\!DXNW__9C9TZ>.5@$C +M]]Y__QI#C;IF3:G^TH(%=[)@P9UT=O48)DL%E2NU?][_/+LWE7%'\7?H]P]2 +ML>5?F?V+FM$I`$)A8:%^HO+88X\A`K-F%7'JU"EZ>WL!6+_^01Y_?`>9F9E\ +M[Z_O30J5T2IS\?)G_*KE-\R=.8W73W3AN]SW>2`TO#L=#`9X\,$'4ZX*HV/> +M[IXOC%$ZCG?1<;QKU.]9C)M)PW5`4U,S%R[TDIF924U--5MV_P>7+OC7J;3V1G3O7@\5BB>P/)2Z@7GC-B\5B-F3%KTW*O<9YX#=& +M#PQ#*$AS<[..^]S<7%:O7AU9"N_0#P2??^X(;?_9RE>M-UPS)70/]/2"H3MR3K1ZO)/CG/ Sat, 26 Nov 2011 14:42:09 -0800 + +libapache-gallery-perl (1.0.1-3) unstable; urgency=low + + * Include default/navdirectory.tpl and new/navdirectory.tpl by copying + from the bright template (Closes: #645356). + + -- Don Armstrong Fri, 14 Oct 2011 14:04:25 -0700 + +libapache-gallery-perl (1.0.1-2) unstable; urgency=low + + * Fix maintainer address + + -- Don Armstrong Wed, 28 Sep 2011 14:57:52 -0700 + +libapache-gallery-perl (1.0.1-1) unstable; urgency=low + + * New upstream release + * Change underscores to spaces for images too (Closes: #348724). Thanks + to Francesco Potorti and Luca Capello. + * Allow txt files to be used as plain files (Closes: #423004); include + icons which are now upstream. Thanks to Luca Capello. + + -- Don Armstrong Wed, 28 Sep 2011 12:34:55 -0700 + +libapache-gallery-perl (0.99-svn060811-1) unstable; urgency=low + + * New svn pull release, pre 1.0. + * Upstream changes: + - Added the right gallery.css + - Fix xhtml validation errors. + - Cleaned colorcodes up at bit + - Initial import of new template; bright. + - Added missing semicolon for html validation. + - Cache bugfix. + * Added a cronjob to clean the cache (Closes: #337200) + + -- Jesus Climent Fri, 11 Aug 2006 00:09:30 +0300 + +libapache-gallery-perl (0.99-svn050921-1) unstable; urgency=low + + * New svn pull release, pre 1.0. + * Show only sizes specified in the config file (Closes: #290900). + * Add copyright image also in the case the picture does not need to scaled + (Closes: #324524). + * libapache-gallery-perl should work with libapache2-mod-perl2 even if + libapache-mod-perl is installed (Closes: #316172). + + -- Jesus Climent Tue, 20 Sep 2005 20:51:11 +0000 + +libapache-gallery-perl (0.99-svn050708-1) unstable; urgency=low + + * New svn pull release: "Debconf5 is over, so now i can work in my packages" + and "QA Meeting in FRA". + * Updated documentation. + * Update dependency on the new libapache2-mod-perl2. + * Bumped Standards, no changes needed. + + -- Jesus Climent Fri, 9 Sep 2005 15:44:10 +0000 + +libapache-gallery-perl (0.99-svn050524-1) unstable; urgency=low + + * The "Pissing Manoj has its consecuences" release. + * Updated subversion checkout due to new API version uploaded to sid + (Closes: #310486). + This version is in fact 1.0rc1, but it requires a new version of + perl-modules containing a new CGI.pm release (we need 3.08 and 3.04 is the + one we distribute right now). + * Remove spurious dependency on the (otherwise outdated) libcgi-perl + (Closes: #310632). Kudos to Manoj for noticing. + + -- Jesus Climent Tue, 24 May 2005 11:44:30 +0000 + +libapache-gallery-perl (0.9.1-3) unstable; urgency=low + + * Brown Paper Bag release. + * Changed back the /gallery-icons/ to /icons/gallery/ (Closes: #292604) + This was one of the old changes that I wanted not to introduce, but I + forgot I made when my hard disk drive crashed. The only working copy had + that change... + + -- Jesus Climent Fri, 28 Jan 2005 09:11:46 +0000 + +libapache-gallery-perl (0.9.1-2) unstable; urgency=low + + * New README.Debian file with reorganized intructions. Hopefully they will + make it easier for the end user to get it working (Closes: #254396). + Also, modified the requirement for removing autoindex_module, and state + that might not be true (Closes: #290159) + * Modified Gallery.pm to include the new libapache2-mod-perl2 + (Closes: #290678) + * Applied patch from Don Armstrong to get ppm, gif and tiff files displayed + from the cache proper (Closes: #287833) + + -- Jesus Climent Sun, 16 Jan 2005 14:33:10 +0000 + +libapache-gallery-perl (0.9.1-1) unstable; urgency=low + + * New upstream release (Closes: #271223) + * Erased some dependencies for the build process, since we can provide the + dependencies during installation time. I have built it, tested it, and it + Works For Me (TM) (Closes: #271222). + * A rework for #254396 was ready when my hdd crashed. Next release, maybe... + + -- Jesus Climent Sun, 12 Sep 2004 08:14:57 +0000 + +libapache-gallery-perl (0.8-3) unstable; urgency=low + + * The "Do not press gqgg while editing under vi unless you really know what + you are doing" release. + * Formated README.Debian for readability (Closes: #246465). Kudos to + Adeodato Simó. + + -- Jesus Climent Thu, 29 Apr 2004 08:54:55 +0000 + +libapache-gallery-perl (0.8-2) unstable; urgency=low + + * debian/README: some more bits of information about the procedure to set a + gallery (Closes: #240635, #245725, #245728). + + -- Jesus Climent Sun, 25 Apr 2004 07:30:35 +0000 + +libapache-gallery-perl (0.8-1) unstable; urgency=low + + * New upstream release + * Changed the dependency from libapache-mod-perl and apache-perl to + libapache-request-perl, which hopefully will pull the needed dependencies. + If only dpkg and apt-get would support conditional dependencies... + (Closes: #235055) + + -- Jesus Climent Wed, 10 Mar 2004 19:44:10 +0000 + +libapache-gallery-perl (0.7r237-2) unstable; urgency=low + + * debian/control + - Ups! I missed apache-mod-perl is not a package (Closes: #234456) + - Standards: bumped to 3.6.1.0 + + -- Jesus Climent Tue, 24 Feb 2004 06:51:06 +0000 + +libapache-gallery-perl (0.7r237-1) unstable; urgency=low + + * First uploaded release (Closes: #230614) + + -- Jesus Climent Mon, 22 Dec 2003 22:31:39 +0000 --- libapache-gallery-perl-1.0.2.orig/debian/rules +++ libapache-gallery-perl-1.0.2/debian/rules @@ -0,0 +1,26 @@ +#!/usr/bin/make -f + +%: + dh $@ + +# it is necessary to set MOD_PERL_API_VERSION to 2 to avoid trying to +# use modperl 1 +override_dh_auto_test: + MOD_PERL_API_VERSION=2 dh_auto_test; + +# install templates and icons +override_dh_auto_install: + dh_auto_install; + cp -r templates/* debian/libapache-gallery-perl/usr/share/libapache-gallery-perl/templates/.; + cp -r htdocs/* debian/libapache-gallery-perl/usr/share/libapache-gallery-perl/icons/.; + +# put the missing icons in place +override_dh_auto_configure: + dh_auto_configure; + uudecode -o htdocs/text-txt.png debian/text-text.png.uuencode + uudecode -o htdocs/text-html.png debian/text-html.png.uuencode + +# remove the missing icons on clean +override_dh_auto_clean: + dh_auto_clean; + rm -f htdocs/text-text.png htdocs/text-html.png --- libapache-gallery-perl-1.0.2.orig/debian/text-text.png.uuencode +++ libapache-gallery-perl-1.0.2/debian/text-text.png.uuencode @@ -0,0 +1,67 @@ +begin 644 htdocs/text-txt.png +MB5!.1PT*&@H````-24A$4@```#`````T"`8```#,D[N1````!&=!34$``+&/ +M"_QA!0````9B2T=$`/\`_P#_H+VGDP````EP2%ES```+$0``"Q$!?V1?D0`` +M``=T24U%!](!"PT()QQ(%04```JD241!5'C:U9IK4%3G&<=_W+RTX^HN:C)) +M$TO63/HE6AO17&9BZHS5AIB`P"*-))\R-I'*+NPNN\`B"N$6(=>9?&D^N"J* +M)N8RU4RJTR@&W$$MUK'IQ`LF-"BBJ]P"AF7/VP^P9R_GG%W()*U]9\ZXG'/> +M%AT= +M'<)L-@><6@#\#(B/ZD!@'#MV[$_:L_#ROURL.'#@@ID^?KHE$V!\M+2W_U8A'SA="<.7*%0`D2<)@,+!HT2+> +M>^_/Z'0Z521B4LCM=H?]"Y"1D2&_>,>.':KW1XZ"@@)5@T,=%T+"[_?+=/+[ +M_1B-1AYZZ%>\^^Z[D72*4SCPY)-/*E[L\7@`:&QLQ.UVXW:[24]/Y^677P9@ +MQXX=LG$!XUTN%VZWFXT;-[)QXT8`?#Z?['!Y>7G`Y`AG8&1D!*_72WM[.QT= +M'7SVV6>,C(RP<*&1O7OW`M@!?4!B8U+HJZ^^XI577B$Y.9GSY\^3EY<'($?J +MQ1=?Y/;MVP"\\,(+>#P>'GSP0?+R\GC\\+BX@#^",P#9@+Q<1.+6'9`#87)\EO]OO'( +M:LR0KPDAN'W[-G%Q<9P^?9K>WEZ&A[^CM_F +M:OC4YRF=&;]73/R&^/AXQL;&`.CKZ^/RY4X2$A+H[^_GZ-%C5%=7`ZP&_@GT +MJ%)(2U6T%E\DEY5&!SD>NF`E29+/"S&N/'[_V,0<"9U.Q^+%OZ:OKY]5JW[' +MXL6+`]/C`C\28T7NQXARD.,@24H')4F2$8"XD'N$+*D`,V;,4#PU,=2@%2M6 +MR#<'AMELQN?SD9QL8.O6;927E^/U>GGTT4?)R\O#;#:CT^GP>KV<.G4*@\%` +M;FXN>7EYY.=OXL*%BRQ&IIYX*B<@/BW(X58(<#UP+#Y*27H%S +M@?'%%U^P9LWO.73H$&EI:0!K@'-`3Z*Z`<')FS9M`B`I*8G77W\=@/S\?)8O +M7TY>W@;R\_,1`IYXX@ERW;7V/KUFT8C48N7KQ(>7DY-IN5)4N6D)N;&Q&$Z%E>1L#O]Y.0D"#K^U2B +M'.F\4FDDE44?_XV$A(2PAUDL9K9L +M*9](/&[,9@M"P)8M6P"!Q6+!8K$@24*^5EA8R.;-?V+GSIWX_7XJ*K:R>7,! +M!04%""&Q>_N9&S,%S7*H=>"\`:1"9=3+62D"$24D0\\IZVMC;2T9V*M`<'*E2MEA0@, +MB\4RH4+C*E)148'7ZV79LE0V;-A`86&1K$*G3Y_&8-!C,N7P_/-_H*#`S*5+ +M%S$:%V(PZ'&Y7-AL=OD=C8V-V.UVZNOKP@P/EU%!6MHSW+SIC8Z`S^?C^/'C +M$TZ,:O(_FF*H)2ME(@Q',F#X^"&I*EUK:QMKUZZ-C4#0D."YBHH*^OL':&AH +M8->N75RZ=(DM6\HI*K+B\XUB,"3C&MM]ZB +MJ:F)W-SU5%55830:`6AO/PE`0\-V]NS9`\#Z]>M##!<1U(JA0J.CHTR;-HW1 +MT>]5.![^@`#$L94D/,*1"A,>,*&J4T@22+$H6!I/*XF(D)A@OWN(L:TB.'SXK\R<.3.$$E!49*6RYH00N+55ZNQ6JU8K5:$$#0W +M[\7I=&*SV1`"K%8;-34U2)*D,%X(^.BC#YD__^[HBWAX>)CCQX^S>O5JOOMN +M2)4:T7H$9>F@78Y$)KE0H]7ZB1,G/*2G9T2742$D5J]>S=#08!B<%DLA($A, +M3**^ODXN%5)3E[)^_7J*BJP`//;88ZQ;ET%%Q59FS9I%49&%-]]\&[U^#O'Q +M">CUD97+W: +M'1V!P<%!6EO'R];!P8$H/%>>5RLGU*,?&G&ANB;4"D&/QT-&1F;L1*9&BZJJ +M5QD<'*2NKI:FICUT=EZBI*0$A\.)S^?#8-!34N+$:K6Q=.DC`)A,.30W-]/> +MWDY#0P-[]S:3DV.BIJ:&!QY(`>#4J;\#@KJZ6O;MVP]`=G:V:L:/UIK+"`P, +M#*#3Z>CO[]/D:V0!IQYY-34243-K.`+*9]USSR^X? +M3J.O[Y;\<(?#@<_G0Z\WX'0ZJ*ZNX=:MFRQ=NI2<'!-.9PFS9LWBYLV;='2< +MP6#0LVY=)CDY)FPV.Y*$A\S, +MK-@M95I:&K=NW=0T)'(K)=(@+<.5]9%69:I.J\S,++J[_QT]D8UW/G]!KS>$ +M)!2U_9[P\Z&U3>2U8!$GPIP,KYO"C0X6><%K'WSP/O?>>U_T4B*PT:253-3@ +M5Y=#-*M*K:Y.C6J3W2$,0V#MVF>Y<>-Z&,>=SA*JJVL1`IJ;FRDI*4.2)*JK +M:P!!69F+TE(70D!96=G$N3**BYWLV[MD1O3G1 +M>J['XR$KRQ2KE%"'WVXOYI%'?H/)E$UM;1U#0T,\_/##G#QYDM345$RF;!P. +M)W/FS*&XV([#X42OUV.WVZBO?XV4E!2RLC(G8;1:?HCMK(S`]>O7F#?O+GI[ +MKT5)0-HOFGBM3W#JGAX&!P?IZ/@'=^(X=^Y+NKN[&1@84%UX=\S_%YKDL0-8,?'%/B'PM2\5 +M^#DP+?0+X!TX!/`]<`VX`@P%C-5/&)_P?^"`'Q@!AH&QN)#%?"<;KN:(!/`? +4O^%/?II<;B$`````245.1*Y"8((` +` +end --- libapache-gallery-perl-1.0.2.orig/debian/dirs +++ libapache-gallery-perl-1.0.2/debian/dirs @@ -0,0 +1,2 @@ +usr/share/libapache-gallery-perl/templates +usr/share/libapache-gallery-perl/icons --- libapache-gallery-perl-1.0.2.orig/debian/source/format +++ libapache-gallery-perl-1.0.2/debian/source/format @@ -0,0 +1 @@ +1.0 --- libapache-gallery-perl-1.0.2.orig/templates/default/navdirectory.tpl +++ libapache-gallery-perl-1.0.2/templates/default/navdirectory.tpl @@ -0,0 +1,6 @@ + +
+ { $LINK_NAME } + { $DIR_FILES } +
+ --- libapache-gallery-perl-1.0.2.orig/templates/new/navdirectory.tpl +++ libapache-gallery-perl-1.0.2/templates/new/navdirectory.tpl @@ -0,0 +1,6 @@ + +
+ { $LINK_NAME } + { $DIR_FILES } +
+