gtkrsync-1.0.4+nmu1/0000755000000000000000000000000011337542605011130 5ustar gtkrsync-1.0.4+nmu1/debian/0000755000000000000000000000000012034304055012340 5ustar gtkrsync-1.0.4+nmu1/debian/compat0000644000000000000000000000000210770734436013555 0ustar 5 gtkrsync-1.0.4+nmu1/debian/changelog0000644000000000000000000000211312034304055014207 0ustar gtkrsync (1.0.4+nmu1) unstable; urgency=low * Non-maintainer upload. [ Sebastian Ramacher ] * debian/control: Update Build-Deps for GHC 7. (Closes: #629729). * debian/rules: Replace unrecognized option --copy-prefix with --destdir and pass the correct path. -- Christian Perrier Sun, 07 Oct 2012 15:48:21 +0200 gtkrsync (1.0.4) unstable; urgency=low * New upstream release with updated documentation for rsync 3.0. Closes: #537255. -- John Goerzen Fri, 19 Feb 2010 11:05:25 -0600 gtkrsync (1.0.2) unstable; urgency=low * Added Build-Depends on process. Patch from Mikhail Gusarov. (Closes: #470377) * Added Vcs-* links -- John Goerzen Fri, 21 Mar 2008 08:42:45 -0500 gtkrsync (1.0.1) unstable; urgency=low * Now propogates rsync return value to caller. -- John Goerzen Tue, 17 Jul 2007 14:54:01 -0500 gtkrsync (1.0.0) unstable; urgency=low * Initial release. Closes: #433358. -- John Goerzen Mon, 16 Jul 2007 15:34:59 -0500 gtkrsync-1.0.4+nmu1/debian/dirs0000644000000000000000000000002110770734436013234 0ustar usr/bin usr/sbin gtkrsync-1.0.4+nmu1/debian/control0000644000000000000000000000365512034304020013744 0ustar Source: gtkrsync Section: utils Priority: optional Maintainer: John Goerzen Build-Depends: debhelper (>= 5), ghc, libghc-missingh-dev, libghc-gtk-dev, libghc-glade-dev, libghc-gconf-dev, gtk-doc-tools, sgml2x, docbook-utils, jade, scons, xpdf-utils, lynx, libghc-unix-dev Standards-Version: 3.7.2 Vcs-Git: git://git.complete.org/gtkrsync Vcs-Browser: http://git.complete.org/gtkrsync Package: gtkrsync Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, ${haskell:Depends}, rsync Description: GUI front-end to display rsync status gtkrsync is a simple GUI that displays a running status display built from rsync --progress -v. This status display includes a per-file and overall status bar, overall estimated time to completion, and an expandable button that shows all rsync status output. . Unlike other GUI rsync frontends such as grsync, gtkrsync does not have any GUI tools for configuring or invoking rsync. gtkrsync is designed to be invoked from the command line or shell scripts, which already specify all the needed rsync options. It is thus ideal for scripted rsync runs that need a GUI, or for command-line users that would like a GUI to monitor their rsync progress. . This package provides two binaries. gtkrsync is a drop-in replacement for rsync. It fires up the GUI and invokes rsync, passing all args to it. When invoked this way, gtkrsync is able to detect if rsync exits in error and alerts the user. gtkrsync can also monitor both stdout and stderr from rsync, and displays both. The cancel button in gtkrsync also will kill off the rsync process. . The other binary is gtkrsyncp. This program accepts the output of rsync --progress -v on standard input and displays it in a GUI. It cannot detect whether rsync exited in error and cannot kill rsync when Cancel is pressed. However, this program may be useful in some cases when direct control of rsync is handled elsewhere. gtkrsync-1.0.4+nmu1/debian/copyright0000644000000000000000000000207411337541646014314 0ustar This package was debianized by John Goerzen on Mon, 16 Jul 2007 15:34:59 -0500. It was downloaded from http://software.complete.org/gtkrsync Upstream Author(s): John Goerzen Copyright: Copyright (C) 2007-2010 John Goerzen This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Debian users can find the GPL under /usr/share/common-licenses/GPL gtkrsync-1.0.4+nmu1/debian/docs0000644000000000000000000000000010770734436013220 0ustar gtkrsync-1.0.4+nmu1/debian/rules0000755000000000000000000000404712034304020013415 0ustar #!/usr/bin/make -f # -*- makefile -*- # Sample debian/rules that uses debhelper. # This file was originally written by Joey Hess and Craig Small. # As a special exception, when this file is copied by dh-make into a # dh-make output file, you may use that output file without restriction. # This special exception was added by Craig Small in version 0.37 of dh-make. # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 CFLAGS = -Wall -g ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) CFLAGS += -O0 else CFLAGS += -O2 endif configure: configure-stamp configure-stamp: dh_testdir # Add here commands to configure the package. touch configure-stamp build: build-stamp build-stamp: configure-stamp dh_testdir # Add here commands to compile the package. $(MAKE) DESTDIR=/usr cd docs && scons gtkrsync.1 #docbook-to-man debian/gtkrsync.sgml > gtkrsync.1 touch $@ clean: dh_testdir dh_testroot rm -f build-stamp configure-stamp # Add here commands to clean up after the build process. -$(MAKE) clean dh_clean install: build dh_testdir dh_testroot dh_clean -k dh_installdirs # Add here commands to install the package into debian/gtkrsync. #$(MAKE) DESTDIR=$(CURDIR)/debian/gtkrsync install ./setup copy --destdir=`pwd`/debian/gtkrsync # Build architecture-independent files here. binary-indep: build install # We have nothing to do by default. # Build architecture-dependent files here. binary-arch: build install dh_testdir dh_testroot dh_installchangelogs dh_installdocs dh_installexamples # dh_install # dh_installmenu # dh_installdebconf # dh_installlogrotate # dh_installemacsen # dh_installpam # dh_installmime # dh_python # dh_installinit # dh_installcron # dh_installinfo dh_installman docs/gtkrsync.1 dh_link usr/share/man/man1/gtkrsync.1.gz \ usr/share/man/man1/gtkrsyncp.1.gz dh_strip dh_compress dh_fixperms # dh_perl # dh_makeshlibs dh_installdeb dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install configure gtkrsync-1.0.4+nmu1/gtkrsync.hs0000644000000000000000000000471510770734436013344 0ustar {- Copyright (c) 2007 John Goerzen Please see the COPYRIGHT file -} import System.IO import Control.Concurrent.MVar import RsyncParser import RsyncGUI import System.Environment import System.Process import System.Posix.IO import System.Posix.Signals import System.Posix.Process import System.Exit main = do args <- getArgs rsyncbin <- catch (getEnv "RSYNC") (\_ -> return "rsync") (readfd, writefd) <- createPipe pid <- forkProcess (childFunc args rsyncbin readfd writefd) closeFd writefd hasExited <- newMVar False readh <- fdToHandle readfd hSetBuffering readh (BlockBuffering Nothing) rsyncinput <- hGetContents readh let rsyncstream = customlines rsyncinput exitmv <- newMVar Nothing gui <- initRsyncGUI (exitButton pid hasExited exitmv) installHandler sigCHLD (Catch (chldHandler gui pid hasExited exitmv)) Nothing -- Check to see if we died before installing the handler ps <- getProcessStatus False False pid case ps of Nothing -> return () Just x -> chldPs gui x hasExited exitmv runGUI gui rsyncstream exitmv exitButton pid mv exitmv = withMVar mv $ \hasexited -> if hasexited then exitApp exitmv else do -- Cancel signal handler since we don't want notification to -- user of exit due to user's own action installHandler sigCHLD Default Nothing -- No need to update the MVar here since there won't be -- anything else to read it. Besides, doing so would cause -- deadlock anyway. signalProcess sigKILL pid exitApp exitmv childFunc args rsyncbin readfd writefd = do closeFd readfd dupTo writefd stdOutput dupTo writefd stdError closeFd writefd executeFile rsyncbin True args Nothing chldHandler gui pid mv exitmv = do ps <- getProcessStatus True False pid case ps of Just ps -> chldPs gui ps mv exitmv Nothing -> return () chldPs gui ps mv exitmv = do installHandler sigCHLD Default Nothing swapMVar mv True case ps of Exited ExitSuccess -> return () Exited x -> do oobError gui ("rsync exited with unexpected error: " ++ show x) swapMVar exitmv (Just x) >> return () x -> do oobError gui ("rsync exited with unexpected condition: " ++ show x) swapMVar exitmv (Just (ExitFailure 255)) >> return () gtkrsync-1.0.4+nmu1/COPYING0000644000000000000000000004314510770734436012177 0ustar GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License. * arch-tag: Program license gtkrsync-1.0.4+nmu1/RsyncParser.hs0000644000000000000000000000144110770734436013744 0ustar {- Copyright (c) 2007 John Goerzen Please see the COPYRIGHT file -} module RsyncParser where import Data.List data LineType = SoftLine | HardLine deriving (Eq, Read, Show) -- | A line of input. The 'LineType' corresponds to the type of EOL -- character that occured **BEFORE** the String. type RsyncLine = (LineType, String) customlines :: String -> [RsyncLine] customlines "" = [] customlines x = case xs of [] -> [(HardLine, line)] -- ('\n' : '\r' : next) -> (HardLine, line) : customlines next ('\n' : next) -> (HardLine, line) : customlines next -- ('\r' : '\n' : next) -> (HardLine, line) : customlines next ('\r' : next) -> (SoftLine, line) : customlines next where (line, xs) = break (`elem` "\n\r") x gtkrsync-1.0.4+nmu1/COPYRIGHT0000644000000000000000000000140511337541646012427 0ustar Copyright (C) 2007-2010 John Goerzen This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA gtkrsync-1.0.4+nmu1/gtkrsync.gladep0000644000000000000000000000042510770734436014160 0ustar Gtkrsync gtkrsync FALSE gtkrsync-1.0.4+nmu1/screenshot2.png0000644000000000000000000012705110770734436014110 0ustar PNG  IHDR%k IDATxyXTU 0l(  ZZj.YiiFRni垖mZ.eY.RfKj.* 2y@fM=G=r{S{uN I$Iw̺Y 'at#9^I$Iz,άPTh5H$IF0$IQi7NM8NZn^PzYw\$IYd&R5:tigŵ)O VR#///ٕVuEpGn%$IC+;5U5:CUjq-`u6_AϢRpY?. ߨO(*\W$I*BgnҊkS^T-}dxa=V㺶+JּW@ǣh}IB]x{0>!Hf.c?A˝ժ;) d 7>Oi\;{J|IAڃe1\Ty RI9'6l @vz]c[x>x%U녚|ZYCFZON;BYa$w3ĻT IT(U>.@90TKRtaTJWBd#Rəi3ET|}BJP*FC)It'0;o!ZXk]LY5(j&}(Q) ox'%;[jr5[*5 };NYl}߃&#-3O1:s0\<*qhQ%fC ?Ë(w^K3xp*~n)wc ?W\jLԐq:->>k*"R.طˋ?emO2u:T OW?W>}5ݔ\>$U BJpV1oZŹL7*%N 7ѻgyRY^vJbצSv%i8s37xov楩/3"PC`\Ŀb\.ij^̓$U $IzH(8Qx ͸/=ƢWLyK"ZbF˂/ĻE3$^'s;7+e;H>W+7_se15XcY7=(FPИGyn=0RmjeJ[pMN(R-(NIKs6;_fQ) ,M^GP8}8FqKl|eqxTʅdtvǘz7ջdA2@4JB !Y)@{0 c`z;n;:DfH뉕$<׃I?g2,7qrٌeVjo/Nn8'+n>U_$PjP5<I7Q8vFqG}aKt/2oaWB\joT [UT9YzP*TPY(yW @RS?QB/$IR8( ¾L?,=8g~Hz?Qt\ >/3q?,e(5Z4ɨKqѨqvv" 2k-Ჴ[@ΣkYg; _f}[r3k`~7NcnBSF77ڒ?Hr)4)4tART9` o^:fi|oY 7,) P-(̋P:ҥ`O|*FR{Dj (NTqVr(CMv֮ZrE^pj<{i¾kI=sw[~a.!uIMD% g';:K2nřt^sϳA Jw mg$΂*jnAA;.|<?.r~Mx9JˀWj<9PP(5Z̅+9Q1sJƐĠ_얓vx.PV)Qi  Pg'2q_2cjyI6Vř4'}5C J>"I%&n/Txɕ;.gi~9܎ٵ}o| UE=͕s+yd6^;¿՘-[~ M?^]w`M\*i1N_:zuK?NvUY!r\aѸ{rwF.xC'->lP^Q'7=CBJ4!'spZT Bgܜd{copBR=Iz݃w*$ PSOg0M۳L[ iNtrN}'Yl;z%eҚ2gxXyʳyEgSSYW_B'B=yK$IYR[X/-IWn$aBPQI儳s3u9U.JHXN@FN=LJ+%ž4)~jIl$Iw>@^-TN8)KPI$0A0303:,1I$Ij1AFh!I$~tt:Ӓ$Iҽao ^4hىFSɵ^liP(5$ܸ@LLLy7*I )2&&޴?͢?PBަP=r%/۞2m(Ҏ/I`>D6yd&OͿp}|FAQ+CX t{kCY1N{3iB]j;D6+Ij^.#;_ypot ?U3eq \<X?@j6N$IrYۼ s9w-ՠ[$Yǒi17Dzf!:L]J|Fe[t6dR:Ydڱg7iuշ,eWTdז;Ktm[GZ|SHͤ)9 7ڕ.Iu֙Mw҅$t>1GPYܜVmQ0zrCׯgDռW%@9sV(5v0ũSAEZ;l37KiT9?F 9p*Ւ:.іoG{4jԈGFR9*-*ۛK/$IuҥWs7ՌgBH|~AOt`_m})I{"ªXDC/N %ILYyYt!'WB£<`#OשXf3cY4ot{snB>]7;~c@:iOǦMl_IKd $I`$P?ҳ3N2WkƒFc̷?fRR!1ce|aLo`-8z[#I`$)z/m;OpTSFtz֔l?sVޚCgMoN|`vbK|rIb$)mH4 a +;2Mgѩ,btE863Z^As?4 -複`$ɂP2n򝱦 EFү-r\YsC<;J,…LmEߙy4cހA%c^ƐwfS0o`ʲI\X;|"Zfz g܃VI%IBۄ6n?4R*۲7x0*MySO͞nέtJ|b(t/ؼqҭItWCdT!2Q(]L*M8bY}?ˮ܉ӗQCMN4 HnH6#I1]I +$D=7Nnc _ I<:їz0A WÈ`wqmW-{OHR>7jJn>4~7oog3 8;ޣVvm?taHeXXui?Wp|z]i$Kr|3"*-l2]EVo/#I2yL$I*r$IJ`$IR!I$TI~[I$Ú$IDG$IC`tP$IaLRRBI$Iy$IT*s +N4Y]xjٲǸxjr$-OpDZ Aqb;b\~6пCSC  ilr]rڽ{wkr%pB5{N+oS/ah=Cgs!ƶ6ЫpC0FקA`@ a뵼2u |D:AAAyxD&V 2bt:vBݨTeglK͐j|6 C2_kOxP9£݅OIQF $etcsMPCiت_OQՇ:}_Ndxթfe<4/ŋ8shvֹx=hb=3xf`V֐#qNWOӨ׌^כڦ&u<}ҷhl>z3Ƕ״Քض||S|Aqۮ1e޹?S4[~g[}Y 8KמX^7bǑ3l1ԕw5dSl1zM"_D^N|6o4?[[{av|>/s+[ oˁ6}2+DQ Ta$3:"ХKyq 2/ܔ'hS_ykt:S ds4Pҟlx/n3_*c*+vrw|tD[hhq;>7;z2$QҔ?ט9b S:M7OOsY;]}XvJ^]ZcWέ/ct:6]^\n\+lר1;2fes~[u?-i!>p'Mba/VZdklDM&বn?)̂ߍhݺut҅FGʅ\?Qܩ_ӹUc"S|(ŐuݔlǜCEPѶZk}#V&U"44P#41S'RޞG_hp=,jY<VlY41KoFV[4b cvesUtɹ=L+4m4X>\ܢoNGqdm>Ec,vۻgqq/q9c)v.HystcC>cѳ;qy}հsh~qqqϕ+IZaE틹1C1O{X Zgw!eYHwV3MtW%҅Ik/0ci>Jފ[ bg.zm?jZg%_un֣^ZDS~Bvi/EǓJxQy39̏i ӲAŔV^LϢOU_]ІwLzOu g 2w;Vȗo Bq =#y+cΧd_H<}.hp>5xNNYxfJD ۖ$,k?^cț_qjVYu(ƛ6ncƭL˴# 99ܡe_gAfS\S]߾cUB Հ%LGSǯStEBCs~a'( igk]ʥ j/;v oSꇅPz+?>,s +UBdc`퇏NXӪz8!#5n)f/"WY,[}e+Qlt/Sc)-AIX*ZaO+BG:ꅅP\m El۞XдkQ9$*ykU7"c 9y_zW*ǓN˿ jIb;½*@5sFy2k7 IDAT'Kcd//{5J:){]%?J0)!!(٣<_&=SE]iΝ?bZG!I9,"$I|q$Iyr_$Iry$IT*Fә=$IT5d\׺P'*£~$wtDz$I}˔7wТn{dRx6+7GzV@C/QlF=(K1>LoZf7 $I*MvJ$:v~ˌ3XnDr19k t: mZOtT9FAQ+CX =G!ԬL`x'yuSC(K(^viozjT W }`▏!{o8))}qz߂_ iOu,qCg<ߥ+7@VpV.ŊZ;Ddql2T΅_U>{?|~v_^}kp`ROqEE֎ qmyK׶5} Ʒ:úL?ߋh>]$In:Ia#d›Ư ~&CdTx"gG9{7Ikfm1_>4tzFT1Ml{ F5M'H8pgL Py糜ܼ.n k@P]+cͫ^VKꐺG[>V(}ZFhH*GW%cJfR(Id{(-Ϙ{_LeWgdwFyVy\+ߞ`jn~xo'A#r;o:|!y#U1ߧ!:U(!ߏB@CG[ӱyBy g<voĐyS@`y)ߞvbozLXԡPr0$ys$IwڏT pcyޞ;N~4o؛y_fLs.>Y;ocjiZ4?BpQh/9C.1mͬ5X&Od=+ڽ)O-w5RNGWҮ;=}{_3;=ak0]ZIJ`ZshNlG@./Nv/[:kk~u?F;wמ=LS7 ,Ԍly7G=wg6& Ѱ{4q&Ԥ i;΁9#y͘Ly&D?髈<֤! )tI`Ud]c6ePdʢx-; "?hT}Sfio,g7f҅|JNt6i\,G~[ƏkwQꌌe+Oh"N*> bG1i0W"vMƯ0{Q5UǦ8g,YW,;]$4̫(JKZ#x5ٟi$I|=|\S f_c4:L$.P{#8c "3`P&TU$I*5` ?#c _?g$犺{0[vd8I$>CdʯP(HLLtt5$I{T{<&Iz _8&I${r$IJ`$IR!DL|7 2k.5x˥Zƥ?SR-CodN#((ŋ)/R?A**^~ C([`J+X ̻y5y &$$-;ϫ%gҖcv5-dgdTքQǘo ߡ)!ӴC6^L5ꏂI63{J>LU !R=fl1Uhr=1;5Yoߤ`"]xh abONݿK8}<^*Wn#¼ y:%q~^b/8wϟfᨦlz0-6nϒϲ=>ϙ#[izk}V5{% ryΟ=znJ=JGmlٛ}=;24R/߾\TFc(`zXLdx\_jU@pp;,zѴ^ik?~E!(՞T)yIx<iC)y^q)Sj]Dv3@Th0!Q0hI;0QhO cV<-d֊l,z;:ZGǸEyǧQ'qU)P\yGǯ? i<[}WjW7攕aXݠTԞS WY`P{&S{gRʹD>{r VT4p*3-V?k>BCC)_cYehl>z3Ƕ״{'YnBQp #ז>/s+[ oˁ6}b=\?]Oi9?WƵ}sq{Ybh4'/ʎ\|;~}t$Hc/i3/{8Pi8f>ּWOg(1qK6R /8ZDž Ǚ>~=Z{N3s@]pr `М^6&ZHY1g̣7 ,2̼/iQ>,ed,U Rj4k}6)l܎v70e$.|Eo>kπNid3Z3e1d:&,)..XwʤsJf󔆬VpR/hT@zM^mNfbږ@ۄżbY4jFVjO*k`scÿx ՞n?oѨX.JfO}>_ShIctl5S_gOU\4$VSV]( T:M=o܂]uLϊK_ 6ۣ҄3~*rNLfLƱuP)wzF|W$dzYъՃ;Qy2{‰a5ɭs&ϸ=_d}3y8v% ޓ[˸2p6zx>c(:j:=z[>[ned9'1/ŋexsFҍaLc`|QQP\ql}xt6/`9J[_F܇, U:&ɡj_tiMPPQ5G $00_n(* cG>{O++UtnZ傈ӆ-N/|?\K7-4T S׃>n_N}oqמA4BH9wI۫x)my5LpH¼"_ljYS 3aHeXXy3S.,fe`g?fBA⩞8IfuDK.v?9׺uhݺ5zr׮]%K 5+k;s ]5f߷K fҥt҅FGʅ\?QY\emr!mR6Jҽ&gml-;y*ipBG?Zkhzc9TJ JS,OE̔NBFCjv-I_'^lǜCEPѶZk}1#i ]z C/2%Iw`ε#9oIFelދthbӉzunƛ/|IKT_ݨ5\o6)>-14PI# R/lWa3ꄘ^?jʌ $((=Ӏq#=jo+QZR^ o~nٻ}o&LIt߲ݖYVk7LE .Z`EMjd$OK$IB0$IRxlҥw$I#_&I$9BN^HLL$I҃LQ Ta$3:JHn4%In>9Ï ~hN~:^WA$9lMX܃`,IàT`t::?N6N?LE?SJƒ$= JuƐuiy;UndU}a\%IzxX`mfӰٶmY~KG<4 2 yeQ4X(ȚY#hR;2~eR 3llKfu , Q5}vgOBDPחQ9əjY*u{0$= |rFXh;vdРA|',ZsFWcϤyC8F2gE/GPYܜVmQ0:IIFSIŰbϳmqS3(6 Gpٺcͫ^VKꐺGpx]$InܶmڵbI/DMoNI{f6 aCQP(IHy|1a1oR(]h9[~ܮ{U,TjB"j |^WyS$Ih٨Q#._\bOAs)QҔe4P$&&>l0 =g/p߿cfw_͟HMQ=kvuEU.$= ~ᘋKѯit҄s"21Fo`yfdufΣ\@DXukҐr~)zlL3 aڵ1W$m>?':h.<8rFhy'7\3nB NGyXSM+?ؾ.z-0 ӿZ!_Ďߖq\e^yyY=wzmI E^79rp$aఇ]>WQPܞNKZ#x5ٟV܃$ATb"4N;907:ѡ$Id 0FSYrz2N΀CcℒzcI$[L>n/nK^O$Ipr/U$I҃Igu$Iu֦͛W8Æ mڵk $IB 6q "B }q ;*sïTSZ3)- !;SJĄCuH[Ta3uaWJ]}~ҲNϔM@l&r:Q0fvxGtdh<qirUnQU'{qz޶I :Ό%9ˈ1+ؙ ~3˷u.8))ҥKơBA3OF?/TeLu\Bzc4҈7yO gmu;faMMonY{~=|qoĚUC-~1K_#xjDBgV.؇y]~fb⟔LӴ!P:yY\6wXZVNެ*w-T(8jSo[R6=B"\T Bzls?ӧO/4'h_≙'E!? "O_%$ //o|aȺfJ_8D{R V[?#%v 9_*kИ%4|CZh滻>œyqnn̾[Y47KoA֭IɤsN#zm!`^'ɼǮuܝM+0fߴlHלJ'BF--dOMjOmI\c%)=,MFU~AwcK+jZL][$gBdgYcHLnM YFq&K,ŵ,@]#j{yX-#W}XkKBt =Ꙧzj/i^i0/+Won->+ /jrv{b1d.UIFӴ1;I(TvoM9fK8qB4o\8qq{0o_?<4J20f~ȵlPP2W7G3Ӊz7/a¢pmǖ5qXSzT⵾a~e%JCfy.SLV!T⒳@ds|Gcdn]=.iW7[}+%*NdϩXmKuPʵ~{Q#(T+h:U~q8bKRtvʆ ڵ+/\̩DP_u5_k S Vhݵ"$)m _wOuذ1K,ZVx6]cWYQewD}x󿬎ƬblfMʄY;bz_=^\2-"f^BV]mek`Q)@'ܴ:DqF,Zl[}Vp_tQZk=u?Z^KZO/6!ZzM_O%UV-,GwgE6m`iF\~ݮ=t! TK*ڋZZ폧_v ]}]؎pʕ$t%%%mvy6liС̛ IDATCY`Ae_~ef̘uLc]H%,>_,W{oƌ$#7_ h[Qx/"I`1y(~F~$-{إ$I$'`${/~g*m|2f}w#)[^XncQ1 mDT.ZT+SZZVI1K^zj3P]lsRd0d&=%|߶Xv/\ŁnUL^lt1sWOVc85{:2VQ뱠=ck3fU'1;мVM;)gVM('ߋR۲e6رD!cL;`2 B!\L1!ƞEtbf!x¯Jj7)'=x8MZg[uTl0f' 2"7~Ēמ\ƬS gҋ=Sg˿SQ#Dź"ۖ-<%O#V.<}ˉ}~6{w](IǑ!b慼? DF|"{Ex&mZl2'^Yy wOѤHq93 }#* / ?-[|x!E2 ӖS߭TWcVok.<Dg%>}%ݽDcϘԪ⑈@*jۻ7b*8m&,OxֽNJzˇ:^Cxf6/Hqy3 RF5`6W:/ua׿h{vتZ1iqe$ o :}}f}JR_{ޙGQelCbA" K#"(8ð(2_Ed"."n K4!aN^!JuWui}'ϓ{sϭ[=\u[Ǜ~g`P`G"ze ͉ >ߊwߣqw0RĘ={-ӟ?`n!mx :4T+/wj0޸ ݋*j4,q]Lh/=ƃ}>v7!sFZe3wŐWgww[ϛ~e ?nzE:?hsXa OOw։s"g\]cR9ӟ炷؇(-v^*^ٽqu|3]2 aqPbH|WCn|FlwvI.,,tU9%v7\\Iʮu5N]Wwt^ucǖbPeϯfdL+Z]"9d7lVfff 033y7n#~&? 촗esle\~5czݹEo~tꢥ _OeoАH>6Ѻm!y|YnLi;+_YiU)#I:Jy]^?,~ s+ &RiŜ\̮+o흗 é b;һ4a%x$7FgIi^*"/חm#4=]CGTOKb˔gYl(ˇ`ҴOGKx!$Rs@2׺#2y$wiC@1 {ߺ<$ɯwك҆Vns-z-  (uڢ1ibNטwu(a+dpAwow0]Cz\& *p__;f c0ƈ8yhq ٶ{ wTzOL??my<'E|DSd`2S28,{iV-8H7ٴ{ЖLd=|/;B]DljSȥl:)bԶ4$JpY *ׯBM/o mO~O< SVquJÝ\]w哽nݺr*o1 _N@LPqK_EEEE.0*****5zQP/FM)5鳯[k˟ooKaQc Lnݪm暠-͵&/Ǚcm/HS~럌pc8G9P[`Kԏ>׾%-#>4NmWg Ӯ4y?lCWො|CmqvKEƐ]`&XKBChc>\))qڪ)zLqϔ}*o]e 2lS8zyYVӖFgkfUH4'ז#~@In}b?ecGIJc`Psۓ ؆/ޮ6Fֺ!{mIz{KŋЗ 1.(wg2RR Lzv@^QՑ/#o_o9D#5 ߏ'\7!^`e ٌNjv{\[snODXDXaNZ5sЊ~~ Boَܖ!/>(+Vd}8lUR[74jReabXܮ$I)W%~|>&rzqzČ{/Q~uS_Uz.s*nss;|w:DI/wufȐ9%3yyv[A'tO_$(!튜{Rr1 l+:*-?Wm:JQS>{xud9[5گIj]́1W}T~?TFQ뺒WUjs@0J=?P*IWUN`9/ֵK*nP;B.ŝ!64^L)Ee4`"l$J.0u(R9 Y>6~Wo/WCzpQGՃ}3d({1o\3FC^/0F16l&=Hx;ڐ@:mŧ1o]7aEQ"Wq`ZGaj+/ talmT:R5ɭc ӡID ]SҿƖF2NF>;O _kћue @i~u&׹{)bJ_!5n(p J!<[YU{}E<4@|[>5a$kѢ]j5ٶ}`smʺ\bb[18- \oUmS(c8Q}nrvIN1OK9U1)[$(UzI!&pgY$c/U}{vdDy,qӾ֨dd&FFC(n쯷+b_R0HQtrQ@jTݟ+n۟<*9"&=$ԤM& LRj4|PqXV=^Ά`!mGJ+|yv25F5\կW6lӡ|}i=HO0'ΎyI:6įIv6 K_j+>Ny4 |t䙽 iJ/럷\l3B8yݧn,fVf^|~{\-lofU95{2}o;X8; bL|s^ތ?w07Ida^MOСZA}lCBxN&FOJ')Ѱu1S rnV:ƃ}>v7a/F.;qţX~f`pSu>3&RooEX*ޞ -®&l\J+M׈/J}LNc06 K>3.ERq:zr2JlK& ='A7TM :x3Ns1QZ*LL{!f/#/sZ^RXN_F]Ȼ%;oMɥ`JQrnz@YI+Ctt4XpNj<5>o;b ~~u0#,`Z4.![O /=Ġ V 6MZNtJIQʣ?Hm/Pg fA^.,Ϝ0X*B8)[WHdv]`y]0Z f޸Kb҄<{ ~y H!I^x/L+;<]CGTOKP^>}x<26^ yeRDR@+333ɼ>.vsmߙ妩TsrÜhk5Xxߜ U;#tkWx Zu[9_pLB2O(YTwnva ֫\2?Q?i)ZDݳp@v=R2UJS ꣴx}cmS/W}JPc ?dj&?ˋcmJךd{V;$U65TGV[J IDAT!QymILw* f^D 4D=F˕]B7LU,ÖMa0טǑeLhٚYh4G8ɵ%7at}=z›r6`4Gcˑ቎X?$ZFa0Ѷ0tZ'E1h4z<$Z@o> ?J>{%&6AMɃ;h48M`n>U,IX01v'i3oq{Tw\=YEj އ7(?F.͹$7T~ߩ4Iڊ.99g't~a %mI`Kqhl1l93l^3CmI{[_E6ڊ.r8:tE!#-.h/{f0؅wlPnuΕģqUr2ro*\oP 1T7E:=Im"jC-odO GЖ'Inq }rw!#-.\Te^SՑ;#o_o9di_SL~|S*1_\Mґҽ,ML0j/ŽcDlx~y>/(Ð(ffGwBNWCښ-t{b% eEĊpЊ>PvSVe8R|v$\ }1AY6$냜Eas 5K1,nS|Roꌫxo|q8o=bƽݗ(jx*=஭LqxdH?׾O<.0CA_/9ŵK =I;E\i[{l)߮I*//C¶>A"rUЪVG\I>`+Ħ9BdھJq86{"('Юzݧl?vu4wDl6:/O&C#;ꩭ q]8ݘ+wpp#"[tǯ_ސI`ipn,$moh5m\ ѣe$Iدk{U#e[T%)|W.mpchf4`lvoS~M]_)7VM&#LQmh Qr~yyF(u%]J櫨>Q5)/_Wd JG4u!"1H4 gM"EVSVQQQQi _Pk7Čzq:bz7dc+ z9cnk&F1/t?>k,[BC.dA9IB6KASzSS gXQFZcʋEk}9[ym_Z:?Ƥl(ُGuu{ʢױd]>1}*qsB(j+>y#BAsD.z)C3DC畔*#O 䮉q5@^`"ow|_Î}1{p EjvwsSn'Ndٙm)X/2rRDʶ3gY~/&cӝOQkV'[]yBUl =g k+?cRW5cKOS׭oPX[T۾G´oƤ|>8l\Goзp-Ff!sXt~drDO׸z_yƖWfS&kJ c |Ls;S4,T\aA-Ch%>O0pn;ln13cKC,W}[c Aq쿣\!ܮMNOcx3Ÿ1+[$(UCL ϲHxB=Ru:u:]RhG76aыYfwg21:U&3W^v:]+:DA<[\l+>Kc*k6M@IOS1*nQ^ugpzosog$DSޅ|=Fvy L䮬뒢pMPԔ+&a9/:8Y{Roȴ SF!1Yt\q,YVPg),'Y|E'oIWL*e "~u #'J)5CudR\6mm %BY_ߟ`}2-,㞹qKo\/3*d2 dʀ+,^`ΰQH"U.͂I)!% AEvɣrDu[ny${o,i[k8w-j4|hrX*.Іm:▯2i)fAٱs28dSOԕ (QFZoq:O?cRWH2H\aS].,sڗ\<4q"ILUԖ1L~d h+—g'Si?}K EuRJFζ7C=&q<7tMTg`Px>N^";5q# ;ѼR.H4ѽgHg.)a";,+^Wv;!_8VŶk<"ze ͉ >ߊwѹ}k}1m>9/{ƤlMw0$Y<݄s:(@SthVPN!B w24J|ciƌjęogDF^L&ȹY8Ob#gmÝ`l>$,A|[+'5O& ='A7TM :3&ue Di0e3텘{nWkϣKzIa!8}%;tO ~WCqZ6.~馇 '4 R)9@.6r7$^u!::h,8'5H]k|Ѻm!pYnLi;?8!| We qAHzZqy׾_͘wn?`q['h_5h'%u'6sx^֌Dgy9S>v2k9mӱ*e$IG) Q맿@e5rayv_x۪MݺE'&Kv~Z1>DxZ[}x<26^ ye@R@+333ɼ>.vspk5N}D&Îo13L1"æ/sN(|5[hh19qXa},oΆ*=t 8&!'\f&{aHhc?T7,}Bn٫=M:u:g+߼qUa~vmpU^3mc omO~%p{=3ʤNc-wq큌zڴ%$#"G8ce.epX..ӌxEa[Kpt:oWϦ/dʧث}<-:c\wn;0nvU.ԟQF (Wx l`b)&bԶx]d4Pkn.%ĊX`T~:EM;o mO~~lY_HxdGڕ?4\5׵>o7>k'Tj՗*****uQQQQQFEEEEF Riq(WmO1-O}뷿d[T5Crf8yNjsGE-0ՑܖoHԤ7){^[rg@E!L Ѷ(|rR+еUS")TޞJ e1)1 p8)4 >[3 Fq>\<8>Oo!\Cx6XWr[?8fh |p9r\?qD3 3v&8~NK(_oDKMgRA[GbvDĦ0h)yvFg#1 Mbէp|\j% ?&r׮\4?m-nꎫ'3@ 4ZfeGqzԗvtXbw^fIxS! ̨eo U\=1:gl?d-+O@Tq{t黱̭8t209CA[o/.ooW][h?|3~}cȼx%~Kg?A=BͧO遗.usywfmFG>q}'f(ȿ]+TR)+wzjٽf@x5~&{* obl10(ҹIV]lypWrmy#}==uňc@K^o qE_v*ۭxxsW%~!pG.rnyΆ`wIWaPjʗlƐ`ibdFxT;حW v,G#bϻyAEl6l6#<gu/֜o+?V(9"V+V1:C}ǜ*8.(Cơg_&9b@苩 ՈŶ Y? ({]hV.ШIm]aq/瓒xx'Tg\-} l-yx3DQSL}mWB+68Cw{ݾJ3d|U\\ܓy/JKdKIywvENܽ\wUy tٖ?ϴ[)t%)|W-:q켕>*_)=u* L0GXP|u Kd4hZX^s{͟ eZ)?J.;;-з#߽ {`m=;fM]K%v؋3z|a̚Y%v؋jCHSI99[pwuh jR\ `޴})SBU#e[T%)|W=ʢAqO2JQ5*9oD̜Kˏ_7sA*  o,Ʊ7 Ae+k쥹0(&fy'x2g mz7?wQOmU© _ѽ#7٢;~TL2DKc4CM uCog]H'ѽE8xlk^Fisbo-#aH~D^۫J)ru%(GMuo;C3cs< x;Eĵ:(mWM%;^cG&FDDfנѨڻ7T~?FQ뺒WUPz*${7L-|OT*IWUj]'qF̀%?.0* oB.ŝ!6ͼS~@QY : ҠP:F}p cq~D>.0*****N|u)XE7ħsbsuO86rmNPq]/ݖջ|0߼}:"dVn_YH6KASzSS }=؊Ocވn^psLc >>k,[BCē-9?3@(#Q|Fa"5ྍ_v\4@!nmy;6-`2`4qҡLE> }0myZZK# 7ԭ+[JscQS'3\>1}bqsB(Zyh輒_k¢j~?:U_.0\9Y~f[ ዌd|'팳|>8l\Goзp-FU?wR%4t?B^u\n}p#(cKOca_˾Xt+`,C!+@~j1}=-  ;}%mI*6N DŽ3嵕F@n̼[W5cKOS׭oPX[Tڍ۾G´rڷOecRIP^y h\l1Y{ z#vYlٌ1>u&׹{)b:#yܶ1nQ;JfS&[Oʖrt>_],"Xb3R~9[l':4rǿIS(݃Y]%1:f?y2 7fԭ+[$(UCL ϲHxB=Ru:u:]RhG76aыYfwg21:U&3W^v:]+:˼rT?l.:.c՝77n/yEz9T. ԇ1@w!`q]xx,#"+:s]3bji ↅco gxTMYAhȴbI83l[%xY֓%\8+e1 ,,'Y"+9"&=JmRfdǬİFFwE"~?lv|kUH"~u #(a.oqW)/Ud2)[ć6X<maȈXzZ+>--/cZ^3[\ Vj8O'@M&P_U-ۗy 32nߘqJkE>38mgh#uA2c<ɳ9ʟ?%+3ޚGJ G!Iٻ|tgWIHZ`\*햜g`PscUa/WМxۗHmcss뇷x3f$qCV7 IDAT'A*CCW ;@ܽHK_=Cabe/Fܬx|4(u&gQX`՗,Zїobkz,[Y204Ͽ}eRX1nzXqg] 0xuvw!\+>mÝ`l>$,A|ѻXiZ%KL e K  KUȥtތ?ߟ`L; S=^ٽqu;ݨWCnW}uE֔\4I 79뛞RPVxJ/ºhg#0N{Y6}^v`FvYB+i\%C8s6χ%/;ˊY\\L+| D.(Փ-9?$}1~㌷NNzk:uyS>.vs 1h6Q,,7ke|ʿZɬMǪ$dLj?m)XK򽋃4c^#)qtXi%&:8plgkǕoƳi恡-EzΫҼ#EOt c|$g^Ie4`bIKyZAm\}ln6`0])nJm爯4H4ЖtQlǖ aJ*|4.]i0_p׿X3T~jk'LLPB_EEEER#Fi&?(֖xAMGM}ўMpM`K_ m9X@D 01qlDu?-#0h}:-j4|y-M7AKmoŶ^MajqS N+ ='6FbtŪO/h,KV.L]Ii<~ :[ a܍&z›%N r莝YEj އ7(?ڔ<;%bj\VE~ɿT$mEΌh̓<:DlEՆ䬥84VE6Zg𙡉䤼=Ik%b"mElho}H:"ې\v=3b»\f(j:JVxoOE $AiBj:ܳjcYM)<Z|IQOyq;r.8wR1$.̷ j>TA[rRޞb1 %{/C نDԤq[U+j:brxΆ`wIV r4^24PCc|?p'ڔ<;,09?9/n6eJ|:lϨFӮI]<|{Ӗ;9kEb'im\ Tm+ HPζ 2mOVG\I{1'B#sP Laaoqbc^BsXt~d/]+ŵ|\+9[u^|'Um%2鮾9-SEFr2@\HvFq10y/ed,`sɕq0jvj/wd:!:f~i7>w<'6<WpcBϙJ-$NJVo_kر/f?ym[bp# k ?{$LlLJ0 =Gr;TZ˚$Cj4ܔQ o/dHʺ^ům={VN&h "Q]5">E3V5i[OF'eֱ!>M8-_ BűrsKb4u:=/ɛ%Qʯ, .{ \64̪xGIV=ꂸa[AS0T,'}ɤ`|t10)VjT;CVRy$BbXR~XQ[G):8>yw ;/lًx)L~r('"'zLXjp#xD8?d~[X=s;2<x<}IQdd&FFC(ܘbH՗Ke EuVL6)=??W8 C8sOo2y!+PaYxF[%nف-QżTd|ye,7&&mݐj'PJ&PqկW6lӡ|}i=HO0'ΎyIڞz/n|lK a7&td)*Y&RlOh&YWjbKXRe+Ll{'lʝ3H>oRO^1n2oWO:Wf\YyzG(R¤(=c\)?WS4ܜ~,*j=Ҷ'S@ )j))c#z2/iY})[;3̗'g[~<7 $c=O|+n~<Y_o2oۋzI/e?DcMlʶgۣ)ו&oF]mq|QZ#<<pQar 2w$>7^Ra+eU/H c]F6%(9WՊx)㵾qjڕ1SjccO~Ǭᇮc7^Mjb1ذ'_դ2=ׁ} 2?h(Ǧem/pߌٸ0+7p?g_EaaQV& 1dAS^G_oB2nnw5*}\SmMoHA卽8Blʶ03T w)/G^2ZqYxq -xl*yQk)_'6>Ҏz1QVVFeeU]eLt'Ƞ/K2r1} 2Qō,ZTk `>ت̇(LJ/t);+9ʵ?St7G)hҧGIOӉUck?|}B魝-I[eT/j9MXK4""2ӏ=E#*g,#E6,b/TIrZV#>@I=vR:oS:d\+j2t~Ӟ}`XS3 GtOCot)̤=_oLyR^tB*/_CbAllkۀ~.>EgBKr7XݟP̀buSLJٖl#N:)#fb"EBH n\6*XޝZP@<:ar>RC Z9m)$Wѐi+k?N!Q6z&_nݓ>;U i +|7/&[ccڸ*4 0GV Ciә;,--`+|}=c̲6NLM'WH, 889X)BOceC~&] 4g$5JDއ,ADtP4`|^Gʋ~ E}6/%YBl̤-eyk8\?cv5?"[w{c\λfTRoq~p--L^hw7‰{m7nXd1\'c. c1p_]_C`>spطJ o>̐u#lpxz.`jRH[+S3CU;e#3w`(^{E@T! $ ixo`-0st]?j|DX1c8R*a`CD9JCLc)!>, ez#yoyG@%iؒ^ 1d8ćA őhUXK,>$\Zb&qh$φ=; G VŎ5rJl=ey|%NsuZ`L2_=D+ͥ5:RH4[aKVGBz!.K-7nj4x>eF&/K,tP5deHWESYG!/n2=ѹmǿu1y$ڄ)2D=}3.AXmGkĖZ3gmޅѕ_&OPs[p$ibu^7&K,tP͙!a[򷓏}tkeC$$P:k5[[pͼڄ)7gi<_=}&iw A߶5bFتӼx-ۇۣ) m51}ոq>:D#uW,rjYjj?/sbuM):zÄG%5>U  {7cZ %\l J/^!0G~<xn[l^Ix'1R{I}}[q4衞 nFY>F%i.^ 3p4t}C.@QQ! n~RfܦBw[]3\U=$-9֬6aʥUzaQ &bvĖX[;؜`|<- / ̣?>Hk|_0tR]P./P[u@p8 &Y[KC_g/cA\[E[b ~ P|GPu-\, ^X#ŘGXZ20)'.G^yX>Y뷔ha L|o7J 2:rk1{ٜ`v~<'uR{Aރk־Qj(UJ$[7o7CVgW`P((JAg) UWeL?c3~;Ư~[fe? .#pG+ɀh4V0wyf4>FZ&L%6I,<8!-[1vRb̏#,kRHwb?-:,gL ċ=6l` {b9[t!34Ekzҗ_5϶aYowΑ@І^0[:i%FhH_^HVg}X IDATG R߸ׅ),KnI5[}"JI#:t7h#KrGDA+'QP˷,gSRHitXK4} L=P^g%6Uw.]PNǶ-$ƣB<|\WvcDֵ,$RwWY2!:t׍m. )b;_ M u,LYI$srjw\Awd㹥,X9y>u'BI{vrh;0ߤNv(3`w.+jro?tyj3>]RLJ\O!&M g4<!a0`djѾ=*NJcy;FߢGεG/ہbtرl<"#Xu\F"04ƾ mYn|mIaC5 7mTaA@_/O`ިl=>R1շ+cƣJ_̋ufYHyO0Jb),,Dqq. b䣩 SqU^sf^[|M-S߲ntknt Ƚx7#oKv, mn,ݹLJ$|/tAN,Y~O_9_9Ar{Lӗp\/x AZU4n=';?fTa ~ 4 ƽ=::<5h ^;R0̲L{O0&&''OɑV@9EFD: ~^FzRDP 5jI}A %_%jCcF4sSBiaOwl͞ҨCpsfƫi4""J۞Lq3nFzkw/9r\*JQySelA_J֎#uLG7Wi|c*s?ʽ(ՃKjQ>1y}hҩOCyY9[clRNӟI2>N>M4ͭq y{cg{u-bSh 9hc&9$Hn˨0;LM߾VHp}W;&Sba=,j2*[- ],Aхj*ǺJ2/4ѡ,˜g6Lp(J%5kN2'n`]1̺(<˯\ w>.yë&M{xSxkԯhhj >Ǟ* :k8»̯U?+'!!~׆c0p|LJwoba㥶WJw +ƪi"k%-@Zt&+ר1qnW4n蠻q sC7&:יeIy1fLHE "Jٝ6NLM'WH, 8˅7vkӄ*9ǶjHK B0M7TSꋉ@ E =0tqIٺAWLqR'?ׇ[NHn^?wkC )ԦprX{wjA*+gILT ӸӪROҦ3wT|7M#(HTP]]h鷙JVNBaJ9Ua4dJ O0byYcDEVXXHZ %EmN^V1Gp~$Ӗ`V c1GS+cۃˣ)$''#99Y[j|IuM둞bׄg1\[nŠAp5/ir,c1GŤIR &22Ҹd&c[Gǎ►%M0A``cI ["88-uYxx86l誶0sɓ'#55nk] P^^0s7|Mp쇖eeencیo0P1Vg %3&c1igo Kf2sɾѐcZvw\YdHsXͮcNxfg1<0s `cO01\'c. c1 1Ɯ$00&wڒ'<0ƘdD= 1Ɯ诳h+=00{G\N>Z4ETD$7^Y3Z'xa1'(((=[@-jr]OYhFShث8v_ c9Yշ|?y6:~ma Pyy@ݰSagU8Es8pEcL DڦEڶ9#"pOyĘNRyIkF'`bkqO|cD6ŀsWaphxa1'1`l5Ӕ"Az id!E)8y<23m1vh m  #$z!1XrKCd(cڱ7wa4\pc"ԽvB5`c#ir2{*<}COPxv }h ȼP|CcxM2x4:-V?*/<6{-.m}]Rq4esSbU"yrxwۘd~ZsKe}uA=aU^E7Ųh1u36} sh/c&Gl7]'qċx` ;}.?UG[7~(,^=g#==9`c/سx-李]"-yl>:@ ^٘XG ڢtJe@ nrq@:;ݘv5c.ޜʯ`U~`c~`Y5^Ӕ:Ȯ]\,"g{˔Yp|wGEܝx&1qx ƴvbVsHL QQQhѩVlˮFNFZ6C1HV\Ѳ擋iZԮ ]v!)) s[?pw|1jx )~KJ&)`c}M>R˹Uc.tM1\'c. c1 1ƘKc%.2k.w7 c 31*qW[cIsX<P9 <c1S;c6#k a1vkč{IENDB`gtkrsync-1.0.4+nmu1/gtkrsync.cabal0000644000000000000000000000266311337542524013767 0ustar Name: gtkrsync Version: 1.0.4 License: GPL Maintainer: John Goerzen Author: John Goerzen Stability: Beta Copyright: Copyright (c) 2007-2010 John Goerzen license-file: COPYRIGHT build-type: Simple extra-source-files: COPYING, docs/gtkrsync.1, docs/man.gtkrsync.sgml, docs/SConstruct, docs/sgml-common/ChangeLog, docs/sgml-common/COPYING, docs/sgml-common/COPYRIGHT, docs/sgml-common/Makefile.common, docs/sgml-common/ps2epsi, docs/sgml-common/SConstruct, gtkrsync.gladep, Makefile, screenshot1.png, screenshot2.png, RsyncGUI.hs, RsyncParser.hs homepage: http://hg.complete.org/gtkrsync Category: Network Synopsis: Gnome rsync progress display Description: gtkrsync is a simple GUI that displays a running status display built from rsync. This status display includes a per-file and overall status bar, overall estimated time to completion, and an expandable button that shows all rsync status output. Build-Depends: base < 5, unix, gtk, gconf, glade, regex-posix, MissingH, process data-files: gtkrsync.glade Executable: gtkrsync Main-Is: gtkrsync.hs GHC-Options: -O2 Executable: gtkrsyncp Main-Is: gtkrsyncp.hs GHC-Options: -O2 gtkrsync-1.0.4+nmu1/Makefile0000644000000000000000000000131610770734436012576 0ustar # arch-tag: Primary makefile # Copyright (c) 2004-2006 John Goerzen # DESTDIR ?= /usr/local all: setup # GHC build ./setup configure --prefix=$(DESTDIR) ./setup build install: ./setup install @echo "Please manually install docs/gtkrsync.1" hugsbuild: setup ./setup configure --hugs ./setup build setup: Setup.lhs ghc -package Cabal Setup.lhs -o setup clean: clean-code clean-doc clean-code: -./setup clean -cd libsrc && ../setup clean -rm -rf dist libsrc/dist *.ho *.hi *.o *.a setup *~ -rm -f `find . -name "*~"` `find . -name "*.o"` -rm -f `find . -name "*.cm*"` clean-doc: -cd doc && scons -c && scons -c html pdf text ps gtkrsync.1 -rm -rf docs/.sconsign* .depend test -rm -f docs/manpage* gtkrsync-1.0.4+nmu1/docs/0000755000000000000000000000000011337541652012061 5ustar gtkrsync-1.0.4+nmu1/docs/sgml-common/0000755000000000000000000000000010770734436014315 5ustar gtkrsync-1.0.4+nmu1/docs/sgml-common/COPYING0000644000000000000000000004315510770734436015360 0ustar GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License. # arch-tag: License for sgml-common gtkrsync-1.0.4+nmu1/docs/sgml-common/ps2epsi0000644000000000000000000000326410770734436015632 0ustar #!/bin/sh # $RCSfile: ps2epsi,v $ $Revision: 1.4.2.2 $ # arch-tag: ps2epsi customized for sgml-common tmpfile=/tmp/ps2epsi$$ export outfile if [ $# -lt 1 -o $# -gt 2 ]; then echo "Usage: `basename $0` file.ps [file.epsi]" 1>&2 exit 1 fi infile=$1; if [ $# -eq 1 ] then case "${infile}" in *.ps) base=`basename ${infile} .ps` ;; *.cps) base=`basename ${infile} .cps` ;; *.eps) base=`basename ${infile} .eps` ;; *.epsf) base=`basename ${infile} .epsf` ;; *) base=`basename ${infile}` ;; esac outfile=${base}.epsi else outfile=$2 fi ls -l ${infile} | awk 'F==1 { cd="%%CreationDate: " $6 " " $7 " " $8; t="%%Title: " $9; f="%%For:" U " " $3; c="%%Creator: Ghostscript ps2epsi from " $9; next; } /^%!/ {next;} /^%%Title:/ {t=$0; next;} /^%%Creator:/ {c=$0; next;} /^%%CreationDate:/ {cd=$0; next;} /^%%For:/ {f=$0; next;} !/^%/ { print "/ps2edict 30 dict def"; print "ps2edict begin"; print "/epsititle (" t "\\n) def"; print "/epsicreator (" c "\\n) def"; print "/epsicrdt (" cd "\\n) def"; print "/epsifor (" f "\\n) def"; print "end"; exit(0); } ' U="$USERNAME$LOGNAME" F=1 - F=2 ${infile} >$tmpfile gs -q -dNOPAUSE -dSAFER -dDELAYSAFER -r72 -sDEVICE=bit -sOutputFile=/dev/null $tmpfile ps2epsi.ps $tmpfile <${infile} 1>&2 rm -f $tmpfile ( cat << BEGINEPS save countdictstack mark newpath /showpage {} def /setpagedevice {pop} def %%EndProlog %%Page 1 1 BEGINEPS cat ${infile} | sed -e '/^%%BeginPreview:/,/^%%EndPreview[^!-~]*$/d' -e '/^%!PS-Adobe/d'\ -e '/^%%[A-Za-z][A-Za-z]*[^!-~]*$/d' -e '/^%%[A-Za-z][A-Za-z]*: /d' cat << ENDEPS %%Trailer cleartomark countdictstack exch sub { end } repeat restore %%EOF ENDEPS ) >> ${outfile} exit 0 gtkrsync-1.0.4+nmu1/docs/sgml-common/COPYRIGHT0000644000000000000000000000322410770734436015611 0ustar Copyright for all code except ps2epsi ------------------------------------- # Copyright (C) 2002, 2003 John Goerzen # # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Copyright for ps2epsi --------------------- This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. My local changes were to the page size. # arch-tag: Copyright statements and information for sgml-common gtkrsync-1.0.4+nmu1/docs/sgml-common/Makefile.common0000644000000000000000000001536010770734436017251 0ustar # -*- Mode: makefile; -*- # arch-tag: Primary sgml-common top-level Makefile # Common Makefile for SGML documents # # Copyright (C) 2002, 2003 John Goerzen # # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # The following variables should be set: # MASTERBASE -- basename of master file -- example: my-guide # BASICDEPS -- various dependencies of the master file. For instance, # this might include files included in the SGML. It could also be empty. # TOPNODE -- Basename of top id for HTML link. MASTER := $(MASTERBASE).sgml FIGUREDIRS := $(wildcard figures/*) DOINDEX ?= yes ###################################################################### # Index generation ###################################################################### ifeq ($(DOINDEX), yes) INDEXSGMLFILE := index/index.sgml INDEXDATAFILE := index/HTML.index $(INDEXSGMLFILE): $(INDEXDATAFILE) @echo " *** Generating SGML index from index list" collateindex.pl -i ch.index -g -o index/index.sgml index/HTML.index $(INDEXDATAFILE): $(MASTER) $(BASICDEPS) # jade -t sgml -d docbook.dsl -V html-index $(MASTER) # jade -t sgml -V html-index $(MASTER) @echo " *** Generating index list from document" -rm -r index mkdir index collateindex.pl -i ch.index -N -o index/index.sgml #mkdir html-temp #docbook2html --output html-temp -V html-index $(MASTER) docbook-2-html -O -V -O html-index $(HTMLARGS) $(MASTER) mv $(MASTERBASE)-html/HTML.index index/ rm -r $(MASTERBASE)-html endif # DOINDEX ###################################################################### # Text generation ###################################################################### $(MASTERBASE).txt: $(MASTER) $(BASICDEPS) $(INDEXSGMLFILE) @echo " *** Generating text output" docbook2txt $(MASTER) ###################################################################### # PostScript generation ###################################################################### $(MASTERBASE).ps: $(MASTER) $(BASICDEPS) $(INDEXSGMLFILE) $(EPSFILES) @echo " *** Generating PostScript output" # This works too: docbook2ps -V paper-size=Letter $(MASTER) docbook-2-ps -q -O -V -O paper-size=Letter $(PSARGS) $(MASTER) ###################################################################### # Figure generation ###################################################################### %_1.epi: %.ps $(get-epi) %_2.epi: %.ps $(get-epi) %_3.epi: %.ps $(get-epi) %_4.epi: %.ps $(get-epi) %_5.epi: %.ps $(get-epi) %_6.epi: %.ps $(get-epi) %_7.epi: %.ps $(get-epi) %_8.epi: %.ps $(get-epi) %_9.epi: %.ps $(get-epi) %_10.epi: %.ps $(get-epi) %_11.epi: %.ps $(get-epi) %_12.epi: %.ps $(get-epi) %_1_l.epi: %.ps $(get-epil) %_2_l.epi: %.ps $(get-epil) %_3_l.epi: %.ps $(get-epil) %_4_l.epi: %.ps $(get-epil) %_5_l.epi: %.ps $(get-epil) %_6_l.epi: %.ps $(get-epil) %_7_l.epi: %.ps $(get-epil) %_8_l.epi: %.ps $(get-epil) %_9_l.epi: %.ps $(get-epil) %_10_l.epi: %.ps $(get-epil) %_11_l.epi: %.ps $(get-epil) %_12_l.epi: %.ps $(get-epil) %.png: %_l.epi @echo " *** Generating PNG image for $<" gs -q -dTextAlphaBits=4 -dGraphicsAlphaBits=4 -r90 -dBATCH -dNOPAUSE \ -dSAFER -sOutputFile=$@ -sDEVICE=png16m $< -c showpage %.ps: %.pdf pdftops $< ###################################################################### # HTML generation ###################################################################### define copy-figures-worker mkdir html/figures for DIRECTORY in $(FIGUREDIRS); do mkdir html/$$DIRECTORY; cp -v $$DIRECTORY/*.png html/$$DIRECTORY/; done endef define copy-figures $(if $(FIGUREDIRS),$(copy-figures-worker)) endef html/index.html: $(MASTER) $(BASICDEPS) $(INDEXSGMLFILE) $(PNGFILES) @echo " *** Generating HTML output" -rm -r html mkdir html #docbook2html --output html $(MASTER) docbook-2-html $(HTMLARGS) $(MASTER) mv $(MASTERBASE)-html/* html/ rmdir $(MASTERBASE)-html $(copy-figures) # tidy -m html/*.html ln -s $(TOPNODE).html html/index.html -cp -v /usr/share/gtk-doc/data/*.png html/ ###################################################################### # Cleaning ###################################################################### clean: -rm -f `find . -name "*~"` `find . -name "*.png"` `find . -name "*.epi"` -rm -r html-temp html index $(MASTERBASE).txt -rm *.aux *.log *.dvi *.tex *.jtex *.ps *.html *.log *.out jadetex.cfg -rm *.ps html/*.html figures/topology/*.epi figures/topology/*.png -rm *.log *.pdb -rm `find . -name ".ps"` `find . -name "*.epi"` *.pdf -rm `find . -name "*.png"` ###################################################################### # Utility functions ###################################################################### GETPAGE=$(shell echo $(1) | sed -e "s/^.*_\([0-9]*\).epi/\\1/g") define get-epi @echo " *** Generating EPI image for $<" psselect -q $(call GETPAGE,$@) $< temp.ps psresize -w 6.375in -h 8.25in temp.ps temp2.ps ../sgml-common/ps2epsi temp2.ps $@ rm temp.ps temp2.ps endef GETPAGEL=$(shell echo $(1) | sed -e "s/^.*_\([0-9]*\)_l.epi/\\1/g") define get-epil @echo " *** Generating large EPI image for $<" psselect -q $(call GETPAGEL,$@) $< temp.ps psresize -w 8.5in -h 11in temp.ps temp2.ps ../sgml-common/ps2epsi temp2.ps $@ rm temp.ps temp2.ps endef pdf: $(MASTERBASE).pdf $(MASTERBASE).pdf: $(MASTERBASE).ps ps2pdf14 $(MASTERBASE).ps plucker: $(MASTERBASE).pdb $(MASTERBASE).pdb: html plucker-build --bpp=4 --compression=zlib --doc-name="$(MASTERBASE)" \ -H file:`pwd`/html/index.html -M 5 \ --maxheight=320 --maxwidth=310 \ --staybelow=file:`pwd`/html --title="$(MASTERBASE)" -p . \ -f $(MASTERBASE) ########################################################################### # These are obsolete but should still work. ########################################################################### $(MASTERBASE).dvi: $(MASTERBASE).tex @echo " *** Generating DVI file." jadetex unix-guide.tex jadetex unix-guide.tex jadetex unix-guide.tex $(MASTERBASE).tex: $(MASTER) $(BASICDEPS) $(INDEXSGMLFILE) @echo " *** Generating TeX files." docbook2tex -V paper-size=Letter $(MASTER) # jade -t tex -V tex-backend -d \ # /usr/share/sgml/docbook/stylesheet/dsssl/modular/print/docbook.dsl \ # $(MASTER) gtkrsync-1.0.4+nmu1/docs/sgml-common/SConstruct0000644000000000000000000001646510770734436016363 0ustar # vim: set filetype=python : # arch-tag: general-purpose SCons build file for sgml-common from glob import glob import os, re ############################################################ # Setup ############################################################ SConsignFile('.sconsign-master') #Import('env') d = env.Dictionary() if not 'JADE' in d: d['JADE'] = 'jade' if not 'INDEXNODE' in d: d['INDEXNODE'] = 'ch.index' if not 'GTKIMGPATH' in d: d['GTKIMGPATH'] = '/usr/share/gtk-doc/data' if not 'PS2EPSI' in d: d['PS2EPSI'] = '../sgml-common/ps2epsi' def removeindex(l): while 'index/index.sgml' in l: l.remove('index/index.sgml') master = d['MASTERBASE'] mastersgml = master + '.sgml' sources = [mastersgml] + glob('*/*.sgml') + glob('*/*/*.sgml') removeindex(sources) db2htmlcmd = 'docbook-2-html -D $JADE ${HTMLARGS} ${SOURCE}' db2htmlindexcmd = 'docbook-2-html -D $JADE -O -V -O html-index ${HTMLARGS} ${SOURCE}' ################################################## # SCANNERS ################################################## def recursescan(scanner, node, env): result = scanner(node, env) retval = [] for item in result: retval.append(item) retval.extend(recursescan(scanner, item, env)) return retval SGML_includes_re = re.compile(r']+SYSTEM[^>]+"(.+)"', re.M) def SGML_includes_scan(node, env, path): ret = SGML_includes_re.findall(node.get_contents()) removeindex(ret) return ret SGML_includes_scanner = Scanner(name = 'SGML_includes', function = SGML_includes_scan, recursive = 1, skeys = ['.sgml', '.ent']) SGML_image_pdf_re = re.compile(r'<(graphic|imagedata).+?fileref="([^"]+\.pdf)"', re.S) SGML_image_png_re = re.compile(r'<(graphic|imagedata).+?fileref="([^"]+\.png)"', re.S) def SGML_image_scanner(node, env, path, arg): root, ext = os.path.splitext(str(node)) contents = node.get_contents() return SGML_includes_scan(node, env, path) + \ [os.getcwd() + '/' + x[1] for x in arg.findall(contents)] SGML_pdf_scanner = Scanner(name = 'SGML_pdf', function = SGML_image_scanner, argument = SGML_image_pdf_re, recursive = 1) SGML_png_scanner = Scanner(name = 'SGML_png', function = SGML_image_scanner, argument = SGML_image_png_re, recursive = 1) ################################################## # BUILDERS ################################################## #### PLAIN TEXT Btxt = Builder(action="docbook2txt $SOURCE", src_suffix='.sgml', suffix='.txt') #### PDF / POSTSCRIPT Bpdf = Builder(action="docbook-2-pdf -D ${JADE} -q -O -V -O paper-size=Letter ${PDFARGS} ${SOURCE}", src_suffix='.sgml', suffix='.pdf') Bpdf2ps = Builder(action="pdftops ${SOURCE}", src_suffix='.pdf', suffix='.ps') #### MAN PAGES # FIXME: test this Bman = Builder(action="docbook2man $SOURCE", src_suffix='.sgml', suffix='.1') #### HTML Bhtml = Builder(action = [ \ 'if test -d ${TARGET.dir} ; then rm -r ${TARGET.dir} ; fi', 'mkdir ${TARGET.dir}', db2htmlcmd, 'mv ${MASTERBASE}-html/* ${TARGET.dir}/', 'rmdir ${MASTERBASE}-html', 'ln -s ${TOPNODE}.html ${TARGET.dir}/index.html', 'cp ${GTKIMGPATH}/*.png ${TARGET.dir}/']) #### PNG Bepip2png = Builder(action = 'gs -q -dTextAlphaBits=4 -dGraphicsAlphaBits=4 ' +\ '-r90 -dBATCH -dNOPAUSE -dSAFER -sOutputFile=$TARGET ' + \ '-sDEVICE=png16m $SOURCE -c showpage', suffix='.png', src_suffix='.pngepi') #### EPI from PS def getpagenumfromname(target, source, env, for_signature): return re.search('^.*_(\d+)\.(png){0,1}epi$', str(target[0])).group(1) d['GETPAGE'] = getpagenumfromname Aps2epi = Action(['psselect -q ${GETPAGE} $SOURCE temp.ps', 'psresize -w ${WIDTH} -h ${HEIGHT} temp.ps temp2.ps', '$PS2EPSI temp2.ps $TARGET', 'rm temp.ps temp2.ps']) Bps2epi = Builder(action=Aps2epi, src_suffix='.ps', suffix='.epi') Bps2epip = Builder(action=Aps2epi, src_suffix='.ps', suffix='.pngepi') Bepi2pdf = Builder(action="epstopdf -o=${TARGET} ${SOURCE}", suffix='.pdf', src_suffix='.epi') #### PLUCKER Bplucker = Builder(action = 'plucker-build --bpp=4 --compression=zlib ' + \ '--doc-name="${MASTERBASE}" -H file:${SOURCE.abspath} -M 5 ' + \ '--maxheight=320 --maxwidth=310 --staybelow=file:`pwd`/${SOURCE.dir} ' + \ '--title="${MASTERBASE}" -p . -f ${MASTERBASE}') ################################################## # General setup ################################################## env.Append(BUILDERS = {'Text': Btxt, 'PDF2PS': Bpdf2ps, 'PDF': Bpdf, 'HTML': Bhtml, 'Plucker': Bplucker, 'PS2EPI': Bps2epi, 'PS2EPIP': Bps2epip, 'EPI2PDF': Bepi2pdf, 'EPIP2PNG': Bepip2png, 'MAN': Bman}) #### INDEX GENERATION if 'DOINDEX' in d: Bindex = Builder(action = ['if test -d ${TARGET.dir} ; then rm -r ${TARGET.dir} ; fi', "mkdir ${TARGET.dir}", "collateindex.pl -i $INDEXNODE -N -o $TARGET", db2htmlindexcmd, "mv ${MASTERBASE}-html/HTML.index ${TARGET.dir}/", "rm -r ${MASTERBASE}-html", "collateindex.pl -i $INDEXNODE -g -o $TARGET ${TARGET.dir}/HTML.index"]) env['BUILDERS']['Index'] = Bindex index = env.Index('index/index.sgml', mastersgml) env.Depends(index, sources) env.Clean(index, 'index') deps = sources + [index] else: deps = sources ################################################## # BUILD RULES ################################################### # Text text = env.Text(mastersgml) env.Depends(text, deps) env.Alias('text', text) # PDF pdfsgml = File(mastersgml) pdf = env.PDF(pdfsgml) figsindoc = [x for x in recursescan(SGML_pdf_scanner, pdfsgml, env) if str(x).endswith('.pdf')] epipdf = [] for file in figsindoc: pdfname = re.sub('_\d+\.pdf$', '.pdf', str(file)) if pdfname == str(file): # This is not a filename that fits our pattern; add unmodified. epipdf.append(file) continue psfile = env.PDF2PS(source = pdfname) epifile = env.PS2EPI(str(file).replace(".pdf", ".epi"), psfile, WIDTH='6.375in', HEIGHT='8.25in') epipdf.append(env.EPI2PDF(source = epifile)) env.Depends(pdf, deps) env.Depends(pdf, epipdf) env.Alias('pdf', pdf) env.Clean(pdf, ['jadetex.cfg', '${MASTERBASE}.aux', '${MASTERBASE}.dvi', '${MASTERBASE}.jtex', '${MASTERBASE}.log', '${MASTERBASE}.out', 'jade-out.fot']) # PS ps = env.PDF2PS(source = pdf) env.Alias('ps', ps) # HTML htmlsgml = File(mastersgml) buildhtml = env.HTML('html/index.html', htmlsgml) figsindoc = [x for x in recursescan(SGML_png_scanner, htmlsgml, env) if str(x).endswith('.png')] epipng = [] for file in figsindoc: pdfname = re.sub('_\d+\.png$', '.pdf', str(file)) if pdfname == str(file): # This is not a filename that fits our pattern; add unmodified. epipng.append(file) continue psfile = env.PDF2PS(source = pdfname) epifile = env.PS2EPIP(str(file).replace(".png", ".pngepi"), psfile, WIDTH='8.5in', HEIGHT='11in') epipng.append(env.EPIP2PNG(source = epifile)) env.Depends(buildhtml, epipng) env.Depends(buildhtml, deps) pnginstalls = env.InstallAs(['html/' + str(x) for x in epipng], epipng) env.Depends(pnginstalls, buildhtml) html = env.Alias('html', buildhtml) html = env.Alias('html', pnginstalls) env.Clean(buildhtml, 'html') # Plucker plucker = env.Plucker(master + '.pdb', 'html/index.html') env.Alias('plucker', plucker) env.Default(html) gtkrsync-1.0.4+nmu1/docs/sgml-common/ChangeLog0000644000000000000000000001155410770734436016075 0ustar # do not edit -- automatically generated by arch changelog # arch-tag: automatic-ChangeLog--jgoerzen@complete.org--projects/sgml-common--head--1.0 # 2004-05-21 14:28:00 GMT John Goerzen patch-20 Summary: Fixed text target Revision: sgml-common--head--1.0--patch-20 modified files: ChangeLog SConstruct 2004-02-27 15:22:59 GMT John Goerzen patch-19 Summary: Added manpage generation support Revision: sgml-common--head--1.0--patch-19 modified files: ChangeLog SConstruct 2004-02-03 19:50:11 GMT John Goerzen patch-18 Summary: More clearing up of REs Revision: sgml-common--head--1.0--patch-18 modified files: ChangeLog SConstruct 2004-02-03 19:40:22 GMT John Goerzen patch-17 Summary: Tightened up re for finding image tags Revision: sgml-common--head--1.0--patch-17 modified files: ChangeLog SConstruct 2004-02-03 19:28:03 GMT John Goerzen patch-16 Summary: More changes to support scanner Revision: sgml-common--head--1.0--patch-16 Removed outdated code and made more bugfixes relevant to documents without images or with only pre-generated images. new files: ChangeLog modified files: SConstruct 2004-02-03 18:41:51 GMT John Goerzen patch-15 Summary: HTML gen now basically functional with scanning Revision: sgml-common--head--1.0--patch-15 modified files: SConstruct 2004-02-03 17:41:51 GMT John Goerzen patch-14 Summary: Auto-scanning is now close for PDFs. Revision: sgml-common--head--1.0--patch-14 modified files: SConstruct 2004-02-03 16:59:02 GMT John Goerzen patch-13 Summary: Scanners starting to work Revision: sgml-common--head--1.0--patch-13 modified files: SConstruct 2004-02-03 16:22:51 GMT John Goerzen patch-12 Summary: Cleaned up HTML situation Revision: sgml-common--head--1.0--patch-12 modified files: SConstruct 2004-02-02 22:33:50 GMT John Goerzen patch-11 Summary: SConstruct file now working Revision: sgml-common--head--1.0--patch-11 modified files: SConstruct 2004-02-02 22:07:27 GMT John Goerzen patch-10 Summary: Fixed nasty PNG gen bug Revision: sgml-common--head--1.0--patch-10 modified files: SConstruct 2004-02-02 21:57:32 GMT John Goerzen patch-9 Summary: Checkpointing some more... Revision: sgml-common--head--1.0--patch-9 modified files: SConstruct 2004-02-02 21:37:29 GMT John Goerzen patch-8 Summary: Checkpointing some more... Revision: sgml-common--head--1.0--patch-8 modified files: SConstruct 2004-02-02 20:19:02 GMT John Goerzen patch-7 Summary: Checkpointing Revision: sgml-common--head--1.0--patch-7 modified files: SConstruct 2004-02-02 19:18:40 GMT John Goerzen patch-6 Summary: Added Plucker Revision: sgml-common--head--1.0--patch-6 modified files: SConstruct 2004-02-02 19:09:16 GMT John Goerzen patch-5 Summary: Added cleanup rules Revision: sgml-common--head--1.0--patch-5 modified files: SConstruct 2004-02-02 18:58:11 GMT John Goerzen patch-4 Summary: sources now checks only chapters/ to prevent dep cycle with index Revision: sgml-common--head--1.0--patch-4 modified files: Makefile.common SConstruct {arch}/=tagging-method 2004-02-02 17:51:27 GMT John Goerzen patch-3 Summary: Experimental SCons conversion Revision: sgml-common--head--1.0--patch-3 new files: SConstruct 2003-10-21 20:24:04 GMT John Goerzen patch-2 Summary: Added plain text generation target Revision: sgml-common--head--1.0--patch-2 Added plain text generation target modified files: ./Makefile.common 2003-09-10 14:27:58 GMT John Goerzen patch-1 Summary: Minor updates to PNG generation and gtk-doc icon locations Revision: sgml-common--head--1.0--patch-1 modified files: Makefile.common 2003-09-10 14:24:24 GMT John Goerzen base-0 Summary: initial import Revision: sgml-common--head--1.0--base-0 (automatically generated log message) new files: COPYING COPYRIGHT Makefile.common ps2epsi gtkrsync-1.0.4+nmu1/docs/man.gtkrsync.sgml0000644000000000000000000001653711337541646015402 0ustar gtkrsync"> gtkrsync"> gtkrsyncp"> rsync"> ]> gtkrsync Manual gtkrsyncReference For
jgoerzen@complete.org
JohnGoerzen
gtkrsync 1 John Goerzen gtkrsync GUI front-end for rsync gtkrsync args for rsync gtkrsyncp Description >krsync; is a graphical interface for displaying the progress of an &rsync;(1) session. It displays a running status display from parsing the output of rsync --progress -v (with --no-inc-recursive with &rsync; v3.0 or above). This status display includes a per-file and overall status bar, overall estimated time to completion, and an expandable button that shows all rsync status output. Unlike other GUI rsync frontends such as grsync, >krsync; does not have any GUI tools for configuring or invoking rsync. >krsync; is designed to be invoked from the command line or shell scripts, which already specify all the needed rsync options. It is thus ideal for scripted &rsync; runs that need a GUI, or for command-line users that would like a GUI to monitor their &rsync; progress. >krsync; is a drop-in replacement for rsync. It fires up the GUI and invokes &rsync;, passing all args to it. When invoked this way, >krsync; is able to detect if &rsync; exits in error and alerts the user. >krsync; can also monitor both stdout and stderr from &rsync;, and displays both. The cancel button in >krsync; also will kill off the &rsync; process. You must make sure to pass --progress -v on the >krsync; command line in order to get enough information out of &rsync; to build a proper GUI. If ysing &rsync; version 3.0 or above, you must also add --no-inc-recursive to your command line. These newer versions of &rsync; use incremental tree scanning by default. As a result, they do not emit information up front about the expected number of files to transfer, and thus >krsync; would lack enough information to display its progress bars. Besides >krsync;, the other binary is >krsyncp;. This program accepts the output of rsync --progress -v on standard input and displays it in a GUI. It cannot detect whether &rsync; exited in error and cannot kill &rsync; when Cancel is pressed. However, this program may be useful in some cases when direct control of &rsync; is handled elsewhere. Options All options passed to >krsync; are sent directly to rsync(1). >krsyncp; takes no options. EXIT VALUES >krsync; and >krsyncp; both return 0 on success or 20 if the user clicked Cancel or closed the window before the &rsync; was complete. 20 is also the code that &rsync; uses to indicate a transfer interrupted by the user. In all other cases, >krsync; returns the result code that &rsync; returned. >krsyncp; returns 0. ENVIRONMENT VARIABLES >krsync; will look for an RSYNC environment variable. If set, it is taken to be the name of the &rsync; binary. If not given, rsync is used. >krsyncp; does not use this variable. This application uses no other environment variables directly, but other programs or standard libraries may do so. DISPLAY, for instance, must be set for the X libraries to work. Users using &rsync; over ssh may find the SSH_ASKPASS variable useful. This is interpreted directly by ssh and can specify a GUI tool to use to prompt the user for a password when needed. Copyright >krsync;, all associated scripts and programs, this manual, and all build scripts are Copyright © 2007-2010 John Goerzen. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Author &package;, its modules, documentation, executables, and all included files, except where noted, was written by John Goerzen jgoerzen@complete.org and copyright is held as stated in the COPYRIGHT section. &package; may be downloaded from the Debian packaging system or at . &package; may also be downloaded using git by running git clone git://git.complete.org/gtkrsync. See Also rsync(1), gtkrsync(1), gtkrsyncp(1), ssh(1).
gtkrsync-1.0.4+nmu1/docs/SConstruct0000644000000000000000000000226310770734436014122 0ustar # Copyright (C) 2004 John Goerzen # arch-tag: primary build for docs # # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA env = Environment() env.Export("env") env.Append(MASTERBASE = 'hg', TOPNODE = 'hg', DOINDEX = 1, HTMLARGS = '-s local', PDFARGS = '-s local=printlocal') execfile('sgml-common/SConstruct') manpages = [] for manpage in ['gtkrsync']: manpages.append(env.MAN('%s.1' % manpage, 'man.%s.sgml' % manpage)) env.Alias('manpages', manpages) gtkrsync-1.0.4+nmu1/docs/gtkrsync.10000644000000000000000000001207011337541646014012 0ustar .\" This manpage has been automatically generated by docbook2man .\" from a DocBook document. This tool can be found at: .\" .\" Please send any bug reports, improvements, comments, patches, .\" etc. to Steve Cheng . .TH "GTKRSYNC" "1" "19 February 2010" "John Goerzen" "gtkrsync Manual" .SH NAME gtkrsync \- GUI front-end for rsync .SH SYNOPSIS \fBgtkrsync\fR [ \fB\fIargs for rsync\fB\fR\fI ...\fR ] \fBgtkrsyncp\fR .SH "DESCRIPTION" .PP \fBgtkrsync\fR is a graphical interface for displaying the progress of an \fBrsync\fR(1) session. It displays a running status display from parsing the output of rsync --progress -v (with --no-inc-recursive with \fBrsync\fR v3.0 or above). This status display includes a per-file and overall status bar, overall estimated time to completion, and an expandable button that shows all rsync status output. .PP Unlike other GUI rsync frontends such as grsync, \fBgtkrsync\fR does not have any GUI tools for configuring or invoking rsync. \fBgtkrsync\fR is designed to be invoked from the command line or shell scripts, which already specify all the needed rsync options. It is thus ideal for scripted \fBrsync\fR runs that need a GUI, or for command-line users that would like a GUI to monitor their \fBrsync\fR progress. .PP \fBgtkrsync\fR is a drop-in replacement for rsync. It fires up the GUI and invokes \fBrsync\fR, passing all args to it. When invoked this way, \fBgtkrsync\fR is able to detect if \fBrsync\fR exits in error and alerts the user. \fBgtkrsync\fR can also monitor both stdout and stderr from \fBrsync\fR, and displays both. The cancel button in \fBgtkrsync\fR also will kill off the \fBrsync\fR process. You must make sure to pass --progress -v on the \fBgtkrsync\fR command line in order to get enough information out of \fBrsync\fR to build a proper GUI. .PP If ysing \fBrsync\fR version 3.0 or above, you must also add --no-inc-recursive to your command line. These newer versions of \fBrsync\fR use incremental tree scanning by default. As a result, they do not emit information up front about the expected number of files to transfer, and thus \fBgtkrsync\fR would lack enough information to display its progress bars. .PP Besides \fBgtkrsync\fR, the other binary is \fBgtkrsyncp\fR\&. This program accepts the output of rsync --progress -v on standard input and displays it in a GUI. It cannot detect whether \fBrsync\fR exited in error and cannot kill \fBrsync\fR when Cancel is pressed. However, this program may be useful in some cases when direct control of \fBrsync\fR is handled elsewhere. .SH "OPTIONS" .PP All options passed to \fBgtkrsync\fR are sent directly to \fBrsync\fR(1). \fBgtkrsyncp\fR takes no options. .SH "EXIT VALUES" .PP \fBgtkrsync\fR and \fBgtkrsyncp\fR both return 0 on success or 20 if the user clicked Cancel or closed the window before the \fBrsync\fR was complete. 20 is also the code that \fBrsync\fR uses to indicate a transfer interrupted by the user. .PP In all other cases, \fBgtkrsync\fR returns the result code that \fBrsync\fR returned. \fBgtkrsyncp\fR returns 0. .SH "ENVIRONMENT VARIABLES" .PP \fBgtkrsync\fR will look for an RSYNC environment variable. If set, it is taken to be the name of the \fBrsync\fR binary. If not given, rsync is used. \fBgtkrsyncp\fR does not use this variable. .PP This application uses no other environment variables directly, but other programs or standard libraries may do so. DISPLAY, for instance, must be set for the X libraries to work. .PP Users using \fBrsync\fR over \fBssh\fR may find the SSH_ASKPASS variable useful. This is interpreted directly by \fBssh\fR and can specify a GUI tool to use to prompt the user for a password when needed. .SH "COPYRIGHT" .PP \fBgtkrsync\fR, all associated scripts and programs, this manual, and all build scripts are Copyright (C) 2007-2010 John Goerzen. .PP This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. .PP This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. .PP You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA .SH "AUTHOR" .PP \fBgtkrsync\fR, its modules, documentation, executables, and all included files, except where noted, was written by John Goerzen and copyright is held as stated in the COPYRIGHT section. .PP \fBgtkrsync\fR may be downloaded from the Debian packaging system or at \&. .PP \fBgtkrsync\fR may also be downloaded using git by running \fBgit clone git://git.complete.org/gtkrsync\fR\&. .SH "SEE ALSO" .PP \fBrsync\fR(1), \fBgtkrsync\fR(1), \fBgtkrsyncp\fR(1), \fBssh\fR(1). gtkrsync-1.0.4+nmu1/gtkrsync.glade0000644000000000000000000003251610770734436014006 0ustar 400 True gtkrsync GTK_WINDOW_TOPLEVEL GTK_WIN_POS_NONE False False False True False False GDK_WINDOW_TYPE_HINT_NORMAL GDK_GRAVITY_NORTH_WEST True False True False 0 True 0 0.5 GTK_SHADOW_ETCHED_IN True 0.5 0.5 1 1 0 0 12 0 True False 0 True GTK_PROGRESS_LEFT_TO_RIGHT 0 0.10000000149 PANGO_ELLIPSIZE_NONE 0 False False True Scanning data... False False GTK_JUSTIFY_LEFT False False 0.5 0.5 0 0 PANGO_ELLIPSIZE_NONE -1 False 0 0 False False True <b>Per-File Progress</b> False True GTK_JUSTIFY_LEFT False False 0.5 0.5 0 0 PANGO_ELLIPSIZE_NONE -1 False 0 label_item 0 True True True 0 0.5 GTK_SHADOW_ETCHED_IN True 0.5 0.5 1 1 0 0 12 0 True False 0 True GTK_PROGRESS_LEFT_TO_RIGHT 0 0.10000000149 PANGO_ELLIPSIZE_NONE 0 False False True Initializing... False False GTK_JUSTIFY_LEFT False False 0.5 0.5 0 0 PANGO_ELLIPSIZE_NONE -1 False 0 0 False False True <b>Overall Progress</b> False True GTK_JUSTIFY_LEFT False False 0.5 0.5 0 0 PANGO_ELLIPSIZE_NONE -1 False 0 label_item 0 True True True True False 0 True True GTK_POLICY_ALWAYS GTK_POLICY_ALWAYS GTK_SHADOW_IN GTK_CORNER_TOP_LEFT 174 True True False False True GTK_JUSTIFY_LEFT GTK_WRAP_NONE False 0 0 0 0 0 0 True <b>Messages</b> False True GTK_JUSTIFY_LEFT False False 0.5 0.5 0 0 PANGO_ELLIPSIZE_NONE -1 False 0 label_item 0 True True True False 0 True False False GTK_JUSTIFY_LEFT False False 0.5 0.5 0 0 PANGO_ELLIPSIZE_NONE -1 False 0 0 True False True True gtk-cancel True GTK_RELIEF_NORMAL True 0 False False 0 True True gtkrsync-1.0.4+nmu1/gtkrsyncp.hs0000644000000000000000000000066710770734436013526 0ustar {- Copyright (c) 2007 John Goerzen Please see the COPYRIGHT file -} import System.IO import Control.Concurrent.MVar import RsyncParser import RsyncGUI import System.Exit main = do hSetBuffering stdin (BlockBuffering Nothing) rsyncinput <- getContents let rsyncstream = customlines rsyncinput exitmv <- newMVar Nothing gui <- initRsyncGUI (exitApp exitmv) runGUI gui rsyncstream exitmv gtkrsync-1.0.4+nmu1/RsyncGUI.hs0000644000000000000000000001416610770734436013144 0ustar {- Copyright (c) 2007 John Goerzen Please see the COPYRIGHT file -} module RsyncGUI where import System.IO import Control.Concurrent.MVar import Control.Concurrent import Data.List import Text.Regex.Posix import Graphics.UI.Gtk import Graphics.UI.Gtk.Glade import Control.Monad import System.Exit import Data.Progress.Tracker import System.Time.Utils import RsyncParser import Paths_gtkrsync(getDataFileName) data GUIParts = GUIParts { lfile :: Label, ltotal :: Label, mainwin :: Window, pbfile :: ProgressBar, pbtotal :: ProgressBar, messages :: TextView, messageswin :: ScrolledWindow, btdone :: Button} initRsyncGUI :: IO () -> IO GUIParts initRsyncGUI exitfunc = do initGUI timeoutAddFull (yield >> return True) priorityDefaultIdle 50 gladefn <- getDataFileName "gtkrsync.glade" Just xml <- xmlNew gladefn -- Just xml <- xmlNew "gtkrsync.glade" window' <- xmlGetWidget xml castToWindow "mainwindow" onDestroy window' exitfunc pbfile' <- xmlGetWidget xml castToProgressBar "progressbarfile" pbtotal' <- xmlGetWidget xml castToProgressBar "progressbaroverall" lfile' <- xmlGetWidget xml castToLabel "labelfile" ltotal' <- xmlGetWidget xml castToLabel "labeloverall" messages' <- xmlGetWidget xml castToTextView "messages" messageswin' <- xmlGetWidget xml castToScrolledWindow "messageswindow" button' <- xmlGetWidget xml castToButton "donebutton" onClicked button' exitfunc let gui = GUIParts lfile' ltotal' window' pbfile' pbtotal' messages' messageswin' button' forkIO mainGUI return gui runGUI gui rsyncstream exitmv = do streamWithMsgActions <- procmessages gui rsyncstream procstream gui streamWithMsgActions modifyMVar_ exitmv mvdone labelSetText (lfile gui) "" labelSetText (ltotal gui) "Sync process has finished" progressBarSetFraction (pbfile gui) 1.0 progressBarSetText (pbfile gui) "" progressBarSetFraction (pbtotal gui) 1.0 progressBarSetText (pbtotal gui) "" buttonSetLabel (btdone gui) "gtk-close" where mvdone Nothing = return (Just ExitSuccess) mvdone (Just x) = return (Just x) exitApp exitmv = do mainQuit ec <- takeMVar exitmv case ec of Nothing -> exitWith (ExitFailure 20) Just x -> exitWith x procmessages gui stream = do buf <- textViewGetBuffer (messages gui) iter <- textBufferGetEndIter buf mark <- textBufferCreateMark buf Nothing iter True -- tag <- textTagNew Nothing -- set tag [textTagFamily := "Monospace"] -- textBufferApplyTag buf tag iter iter return $ map (\x -> (procmsg gui buf mark x, snd x)) stream procmsg gui buf mark (ltype, msg) = do end <- textBufferGetEndIter buf ipoint <- textBufferGetIterAtMark buf mark textBufferDelete buf ipoint end textBufferInsert buf ipoint ('\n' : msg) lines <- textBufferGetLineCount buf when (lines > 500) $ do start <- textBufferGetStartIter buf eol <- textBufferGetIterAtLine buf 1 textBufferDelete buf start eol -- scroll to the end of the buffer adj <- scrolledWindowGetVAdjustment (messageswin gui) upper <- adjustmentGetUpper adj adjustmentSetValue adj upper -- Update the iterator the new offset case ltype of HardLine -> do end <- textBufferGetEndIter buf textBufferMoveMark buf mark end SoftLine -> return () -- leave the mark where it is return () procstream gui stream = do (totalfiles, remainingstream) <- procscanning gui stream progress <- newProgress "total" totalfiles mapM_ (procprogress gui progress) remainingstream procscanning gui [] = return (0, []) procscanning gui ((action,x):xs) | isSuffixOf "files..." x = action >> labelSetText (ltotal gui) ("Scanned " ++ (head (words x)) ++ " files") >> progressBarPulse (pbtotal gui) >> procscanning gui xs | isSuffixOf "files to consider" x = action >> labelSetText (ltotal gui) "" >> progressBarSetFraction (pbtotal gui) 0.0 >> return (read . head . words $ x, xs) | otherwise = action >> procscanning gui xs procprogress gui progress (action, line) | progressl /= [] = do action case head progressl of [_, bytes, pct] -> progressBarSetFraction (pbfile gui) ((read pct) / 100) >> progressBarSetText (pbfile gui) (pct ++ "%") x -> fail $ "Couldn't handle " ++ show x case tocheck of [] -> return () [[_, thisfile, total]] -> progressBarSetFraction (pbtotal gui) (1.0 - (ithisfile / itotal)) >> progressBarSetText (pbtotal gui) ("File " ++ show (floor (itotal - ithisfile)) ++ " of " ++ total ++ " (" ++ show (intpct) ++ "%)") >> setP progress (floor (itotal - ithisfile)) >> setetr where itotal = read total ithisfile = read thisfile intpct = floor (100 * (1.0 - (ithisfile / itotal))) setetr = do etr <- getETR progress labelSetText (ltotal gui) ("ETA: " ++ renderSecs etr) x -> fail $ "Tocheck couldn't handle " ++ show x | otherwise = action >> labelSetText (lfile gui) line where progressl :: [[String]] progressl = line =~ "^ *([0-9]+) +([0-9]+)%" -- .+[0-9]+:[0-9]+:[0-9]+" =~ line tocheck = line =~ "xfer#[0-9]+, to-check=([0-9]+)/([0-9]+)" oobError gui msg = do dlg <- messageDialogNew (Just (mainwin gui)) [] MessageError ButtonsOk ("An error has been detected:\n\n" ++ msg ++ "\n\nExpand the Messages area in the main window for details.") dialogRun dlg widgetDestroy dlg gtkrsync-1.0.4+nmu1/screenshot1.png0000644000000000000000000003677010770734436014116 0ustar PNG  IHDR7m IDATxwx%wK#! ! $zPT,tE(MTH"R&(E H=JBBzr#K.Cngvfvegwg&tF!];]3 tnx۠&! gNW67wB<;ސ|?##F!PIbHru8yҳIOKʄBXGzr<T xe>r$ޱ5.Wl˨z%Kh,Ҍg ÷\pn.8*[J>r{ǒ6+ל0 -H^JmP8\ö ק&P[sKz5[XBB(uϟ٪\3rϠ:sYզRrZם;:փrI]pU2՛-ȌY({sT8%IȈv 8ZQTj m vil}~|!%)&f;5i0\s~F埉$3Uu ߿&9~4ox>}''$SV[ӈIdҳnWOBܾNiutoy)6s1ݜ%3puF.㰞uX]G{ \/KNSl]uzl*|x9Xb]ؗ(Erh.#>UAoC㈶%}B-*Ü+=뱷],Oe):'rJg}rVLй,'m}U.:JV!NL?Po"\I S{KqV{N?tܩٹ BIk;=uj6ZK%?c~ArK[xQ)T @j-L'߃qǘF}})xXf<^ *Gc25+V;s]X>gx TTh4h bэkVv)]X2e܌_̛UbV%EiZZ-35}|Q]9|p&m#QS o*=ߟÚ )N^}mޙiN*ZoŐ͒8_^v+*VIl+z g/d,_Nj. *ÞW'->K"BNpkm>KJ+U#/MI^B<&Bmuyr_}^3~ . -ל"_+^\$) ]MҒIMM=mbaVt!y8p7(%Cp1Z:&y9Ԯ^e$x/LF/.>~(*(bbNհءKR./I#"j%Eiݏۉh@?IƑZ{cW"*ײoPٻOS:ƯwC97 NdU) ;DB ܃Q 0Wyϼ9?g;sN^7drj1銂fTZgHSpj#RҪ*pYX kمޞF߹R;`n7άew絷[,s;-PUa2SLIWyKKpoQӍ { Mn oaq\:Πr2Be*=I n5+AhQS^YM]AO{{\{,)7{XSz/\sr]n-q 2nwEb%B].aooOs6?^gNzm:[ATh"k&rw>yVtA[sSq%QK͝CiφL׫?8M3Q3V•rMFgɌS+ɿcȬソSVڑ@FBEӒc?K_Y6V$;|<0 ="!߃ڵO<<`e{=÷[Pn~]K lùJ|yar~Ow'33lvŻrexq =y/.6 u3z} K.k&< ;t&z 7ui'>_0_3SsVLcz8DZ7cپc/W_G+!@Zj23W'sGQ4T:|_{vt}*Kɥ+1lݿ$:s!2!g\,vlsYPn:m )W3}f;-.8{hKbgoG&A|Qӑg6pA\j`>ЭCzr# (*WJU޹Q$ߊ%=1̴і E[3=(!c#z0~CGhrsKztE˂y8{H,<r9X3$%%t+ߤ}renO?Eœ| uESK1sN;TY(C twlPq`P`_J$}qԸzαp (G ƙ'PG 8 @3q6doNPeqs&õL{bJ+!g&=kF5%XR{1~dlo&q$֞ ABB;b©L P;i{8֫fyV {W'91e+~cTQY6CpW]J!T !+߻.OQٰ&]I/vw%}z:(j{Ԏ:KcQs_۹oY:[ҠEQvr'xhKxq1 g:rm /EYk.2[SJD"J *՝9btg>,睡.EZZ- BstNJi,VS7mI~7PjP&αvw9(7_=ٿd_%\yB!=W 7_B!Zv$ȋB!l0:NWg!k>i+cI6mτ(h% E+DFFڴXQRedd$8i).N볞_[Og{ʙrܸqw_%uZz]uBae"7n&La\71WӇаF^^UCq?k!_Z9|[^OƎW^nka`wW9OwO+եdϐyOnGPio+5`梨ٴkT /<}V.8]!{ ߼}i}<ҹg[⏮eHNdǰ&E;vBPfI)LqdVZq܆ޟw-? N(X3;GdqEUY~[%Ӿ0&TD>āMN !5 0k׮5ܱcG⌟^-@F5qSXlρ߇aLnC*,;@3gWTZLqڔWaZq|>ݼ>N$ _H~! y9]|IP pCoʷx2ԯ_'+R!޹-,͍E/BWǎm3N2& =k1;dl###qryqΚ/=)7osMrMdk=s^y~MYرt]F }PTn޸ݝtC<掣 ;su|㳖VT4F5(l!9-cǎ4WO.2?W-vSRfF']ܗ/Cy 8m˒G- ǧjRL/h\jTwѰ+!גyۑK-.ߒ 1}娳?va0E}BQV}v%Jk59;qMkVild5OɀBn1 iǎVXQp S RړԘi(*]!&%,юb7KXhvӡkV@U`_wD ~Cst;7>ٕϗmg[ݑϠ(EKMX{3瓯,NBk( ؎>*qꄨٔ>mM!kڵŻ#l'4NqsP2! 0Dm1k:RvBY~7M!j&30xgx'~>B򵙲qALJt{?k!̈9QQmmZK>CЦiKD.L~q۳ū ^_!Чл~i7,ăH&"赢 _#m`CRcl c֭8z~%C; ,+ ]JK-䗫qpه8x݁#D6oo|sok:[I1)W/7d&2O,ܺθmүޫ #.oCA"FB]%3sl2VVxŚM') ! 0B!lBB#&lr_Ba(-`ccB!}V 0;vVQB!V 0qqq*J!#@"Ba`1~~~˻ݰFPXزw[֏z=FiӦ\FI&8*!*5) ߡQzQ> mJH+r x] 6^LJrw-̓ٽ{]kLbK{7&`Z|Rku>/q_t=Bos|E}0#gҽ`Ϛߵ0O ݩBC)G=z-ŘS ϟ2!yO֔~~~9C4Ere/L^It1Za(ݸ}6*K!3Io%د4aO}qL2ar)erIUC^N&?oQt:>5C(DM0+E޲ϭ5z+ t:{fXa|;ZBWg- jqrDV -p՝>Luyf & Wt Pٗ9ĝYd+cY ڑg{O%9f1y`lݰYl_x=Z3t8$A^L˾Lp2o򵣠r;wakVDi-VC>͉}+qI!-Sq^Cђi'ʳbI.Df]sv62r57/zof́SD`)ty 37_E篣gSi߉cǑlt/y- i}o9TnY95&kϑt k:.2rbvNѳMx}gvCmOG2R6gx NƤp>gر(ne}2?v'q4YqZFq:5hʆ44`֟~Aa}8ZdMֱcG' qFҡYBPL $31}iu2dK)$v*'00@C#9d.49oQm?{L0lpk FRw" gmk._~$/5oL//s/kQ0 0VֱP{(ΜnUs ,c{rw?MTT$}ۚߛ rTugۭ Rom1٧t{\4l3 O\`K-E!`ZWV읪ZTvQ3^z >YRT݆D?̍_l#_^ע:'o6^ޅ'f/symO%d(VEڭ(f2'eJVF8Awgr?+l^m).fc>{oZ ;L2SUL_*+=/HٗFGw iD'!SVxy64pGQ}~Yu0@B:|/;--aIJQuފߝ;XICMLZփ(@^oߌ~%:y97I08?N^җYceg fnFS.\s] T@hg!lLfSڇ#005dp):Ϗ'Zʣ95a_ 845}f qu(WO0Iz:Be)ڀm15UͪP&#p|wt4)> -# .:z||y̕]0WoAo KV ;t6+FQ X -|>IDAT %-=Iv-5`X9 Td*fDcza}YD]M~q_(_gwf ֻ)WB/ɂcBXjɂ߽y~A#FGXq*]TG\y۳orz޵ޫ*W.b78cْ͐1?ZVe|K}aLL ש>},JB[`֮]k9{^v5Ѻ<@F1J}.&@cL=Z˔gNLͺ)Ө&Nv*+590tY߁1ƹ:zNoXl:S{ 0y|y/f!t :84.~"07?LZzW}5{myR(+{XsPɝ1 컝T 2fspg°N^zf Mm5"vp։%8޴Wczt|i^vdd$uryq|ygcyTɻ-Iy3>/L-c{u|& ʁ}ӨE˵B{RR "O?yozkeܾ~{zrND;1e+1RfFptq_v8L:k*ExiIoTa˸qE=\4ʲIYW01qeSEîTV^K%oG.|K*D rŭo¨˵B[L_VEJCM~ Kfjfk\1U< ?g[q5܀6}#R^i&3Gwu1޸Yh;jس1. cF-@5kⰭgld5OɀBȊ"?6=_3*+ 0yYW!AUxa=BJ{;mYcE !-XV׀M{Vѯ}SҎo9߱D:McտR?/LιʩP𷗰d; Ұv&jBz$BqIBa`B؄qW]Quw39OmZǥ?S2!L`Dt:~~~&?.^h: ub.6 .o<٤QOTL?mڞyۮu[|#l9nѱߵc*)x{s LQ?ϵo .h/&~W<)eԸ S)]T]Sj |ml L}2*y|~S*5ExHxɏ}Iψte,Ø9sz̛{~s>g~CڷJJmKbveTTbmәDsV"nϤsAϽJf>MÌhIy!Anʿh^3FSP@Q}NIty{~=[z 惷1d'9`])pX̐^,eik1zyov'vEi+{Nj?Mj4%s;SƻĝveWbȈcJ ' 0M!.d]d ҧлvǷP귴u;z+JnmIVގ>EɻkF<]q;À!6f'#84u$=ygUs~f <_x:ϒ9x#ţI(T``W|=/(jg^>+?O&g]b?iaf.8=[TT.`Btzw>Z|Og;R93GY赢 K>qW3R7R3Lᯑs~!iNoS_dzp^S<$O[h{/eQM+< [Ӻ/ k3GMbӾ96+o=&Ť<Ɨ4̦, UnѡrymFͼOU^t˴[ZAy7%Ӱdµ%ͲS|"O+9ԯ87#欌Y68=3I݇Ӆbρtw4OrZ&ZA\WƪY}z&v|(43FL1DY"32jͣaU55|~4V{/< z 4!!lJ;C=`\٢%`d:<׹[DUkrNc^f#d*}Yy3| F+VoOI㪡]T'x(ϗrLʍ_q|G ק]ߝɹGRS㯰yOMM%555zWGH\}z? wa9'_I = _1eKew1d)H[RcuV֭[jQ{fS,cZ;/'f#z}g|to_dv f&,c3v+3^ *-=l?z X!MG-6 0ªj ^StaOG ハOʾ89I `XSgo]N*#f ؽs >==y KlA m6]WL~ڲW6sQt{=_n(-ƴkr$U͚&4]૒lM,3Cf":6n4N}څ>t ݮLqQo&hQ6gx NƤp>gر3"g[v-͛7ͭX)wI>cU||.oz4`lVXh;vиzpo{0B<:,:@h*ٸ@!2!6!F!MHBa6#K! !zQO$1d# !+;Z(!⾘)&O ! 0B!lBxht:?G3l.OnkTC더j1/x* ' M3oբw4P'e KA'sGlt.qO»/2ԍvR]* WxgLnID6Oqӡh6}XiB< F<.{6-gD`w `$=#tN޹D`X=;=VCծkƼNDf),-j4?eB*bu_\jĥx}'jˎ#㹴~Ow[G?xOjdd{*Ok+P 4yn>K/'^P+e&y .y.\8IZUAIM>'_,J\KENeL!IxEEE1E7ghPoK\?8o jG'Ms P}g&/_'(ΒCXXV&}*Cb]< -ӐrnCUst}*{ͤYWi! #W0smPǮlݺV ʡV/n5sWIMM%555Ee ד2@?pBE`C-{-X͆-_P3tz;_3 ._8:w'Մti|'ٓk>}~_Gk#Zm.ϛ[N򦙼Nvh[C`y-saQXڜXxB#&-ZnBGL# !|^tʟ)2l~ dLi Y/ B,0K.-4Ș;i>׹IfE^q fֳrӋu3'rMk{el5>UK?ZzGa6}i<|v;J{\㗝0sum+!.#""ׯ[ҥK8::;i~QJ9'ʻKO`&LkGQ[pJm?#9jо0&TD>āMNorծM^Fʉ-,_5qbcԇ;GdqEUY~|d#Bǁf|gZ*_p'rݾ-0|ӭaM`?iT';}5cl\dP*W)5ՙ֋lw|"`In w>7/3jm"xXNÃYhRll,'5'{f6 jN>2OͬL3hg?jlQ=jfkl;WoƢQC*:w58VB sf,16kGuv @ե6i!!UVyRIN̑+ w%Jk59;qMBTz$5f(*=R0f4^&_;FwŗL;v m+!cݞ4^(&|iH@p80y)<kos&v|_/L>?st^_cҎ~Û]|vEQ Mh!j]> iWQ4P|NMCЖʹ_V\!EyXYQfiy9+Va'!̣pԔ4fMYGގ!U3x #?p`,E+\_eWm^OBa iٟB(BQ77݄(mn !ģ*..~7ၶvZۭ6D&B&F!MHBa`B؄!6!F!MHB+tHd-F!@ӱ ml tn2i![GOoNcC,.'wnAX2Jݦ|8=: 0BaZ*&;\gKErw6KK}/_`70hۂ!쫘hM]l+{K x>*@E*|o|owjE|JQEO^K1t:N.HjR=D6IUC^N9Ҙ?˕ſL0z"&]W F!$U&mXݤ )1׉IIbm-1|!LbݰY3'j.ĥMaDEE\)s$!={3{1k7(ֻ#|A/0헿H0.ưny2 tE"V3u-@3Fw iD'!SVAwgrNJl`d`\ȑII{snS9G)_i?R=cų3W#|t?y7z o9@* EƴW28G-bbMLBBeyKbج]N:ɒBaM!0s$&%X20) 0Bq :|,-a%F!lQ !7B؄!6!F!MHBa`B؄ import Distribution.Simple > main = defaultMain