wok rev 20040

Add: Kleanny v1.0 By The SliTaz DevTeam.
author Leonardo Laporte <hackdorte@yandex.com>
date Sun Aug 27 10:17:57 2017 -0300 (2017-08-27)
parents 49e861a5cc92
children 943ee4cf046f
files kleanny/description.txt kleanny/receipt kleanny/stuff/AUTHORS kleanny/stuff/DEV_README kleanny/stuff/LICENSE kleanny/stuff/README kleanny/stuff/kleanny kleanny/stuff/res/base/cleanup.cgi kleanny/stuff/res/base/data kleanny/stuff/res/base/deps.fail.html kleanny/stuff/res/base/quit kleanny/stuff/res/base/result.cgi kleanny/stuff/res/base/status.cgi kleanny/stuff/res/desktop/kleanny.desktop kleanny/stuff/res/icon/24/kleanny.png kleanny/stuff/res/icon/256/kleanny.png kleanny/stuff/res/icon/48/kleanny.png kleanny/stuff/res/icon/64/kleanny.png kleanny/stuff/res/template/design kleanny/stuff/res/template/javascript kleanny/stuff/res/template/scheme kleanny/stuff/res/theme/gtkrc kleanny/stuff/res/theme/splashscreen.svg
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/kleanny/description.txt	Sun Aug 27 10:17:57 2017 -0300
     1.3 @@ -0,0 +1,4 @@
     1.4 +**Kleanny** is an application that cleans cache and history files. An
     1.5 +effective solution to remove unnecessary files and keep your hard drive
     1.6 +free of junk. Kleanny analyzes the installed programs and search the cache to be cleaned.
     1.7 +
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/kleanny/receipt	Sun Aug 27 10:17:57 2017 -0300
     2.3 @@ -0,0 +1,45 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="kleanny"
     2.7 +VERSION="1.0"
     2.8 +CATEGORY="system-tools"
     2.9 +SHORT_DESC="The Cache Cleaner for SliTaz."
    2.10 +MAINTAINER="devel@slitaz.org"
    2.11 +LICENSE="GPLv3"
    2.12 +WEB_SITE="http://people.slitaz.org/~leonardolaporte/sh/kleanny"
    2.13 +
    2.14 +DEPENDS="bash librsvg yad-gtk2-html"
    2.15 +
    2.16 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.17 +genpkg_rules()
    2.18 +{
    2.19 +
    2.20 +local_dir="var/www/cgi-bin/kleanny"
    2.21 +launcher_dir="usr/share/applications"
    2.22 +
    2.23 +	mkdir -p $fs/$local_dir $fs/$launcher_dir
    2.24 +
    2.25 +	cp -a stuff/* $fs/$local_dir
    2.26 +	cp -a stuff/res/desktop/kleanny.desktop $fs/$launcher_dir
    2.27 +
    2.28 +}
    2.29 +
    2.30 +post_install()
    2.31 +{
    2.32 +
    2.33 +startup_app="$1/var/www/cgi-bin/kleanny/kleanny"
    2.34 +quit_app="$1/var/www/cgi-bin/kleanny/res/base/quit"
    2.35 +
    2.36 +	chmod +x $startup_app $quit_app
    2.37 +	cd $1/usr/bin && ln -s $startup_app kleanny
    2.38 +	exit
    2.39 +
    2.40 +}
    2.41 +
    2.42 +post_remove()
    2.43 +{
    2.44 +
    2.45 +	# Remove the symbolic link.
    2.46 +	rm -rf $1/usr/bin/kleanny && exit
    2.47 +
    2.48 +}
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/kleanny/stuff/AUTHORS	Sun Aug 27 10:17:57 2017 -0300
     3.3 @@ -0,0 +1,1 @@
     3.4 +Leonardo Laporte "hackdorte" <hackdorte@yandex.com>
     4.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     4.2 +++ b/kleanny/stuff/DEV_README	Sun Aug 27 10:17:57 2017 -0300
     4.3 @@ -0,0 +1,9 @@
     4.4 +Please, if you improve the application include your name in 
     4.5 +the AUTHORS file. All source code is in "stuff" directory.
     4.6 +
     4.7 +I dedicate this work to all SliTaz Developers.
     4.8 +
     4.9 +Thank you.
    4.10 +
    4.11 +Leonardo Laporte
    4.12 +hackdorte@yandex.com
     5.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     5.2 +++ b/kleanny/stuff/LICENSE	Sun Aug 27 10:17:57 2017 -0300
     5.3 @@ -0,0 +1,674 @@
     5.4 +                    GNU GENERAL PUBLIC LICENSE
     5.5 +                       Version 3, 29 June 2007
     5.6 +
     5.7 + Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
     5.8 + Everyone is permitted to copy and distribute verbatim copies
     5.9 + of this license document, but changing it is not allowed.
    5.10 +
    5.11 +                            Preamble
    5.12 +
    5.13 +  The GNU General Public License is a free, copyleft license for
    5.14 +software and other kinds of works.
    5.15 +
    5.16 +  The licenses for most software and other practical works are designed
    5.17 +to take away your freedom to share and change the works.  By contrast,
    5.18 +the GNU General Public License is intended to guarantee your freedom to
    5.19 +share and change all versions of a program--to make sure it remains free
    5.20 +software for all its users.  We, the Free Software Foundation, use the
    5.21 +GNU General Public License for most of our software; it applies also to
    5.22 +any other work released this way by its authors.  You can apply it to
    5.23 +your programs, too.
    5.24 +
    5.25 +  When we speak of free software, we are referring to freedom, not
    5.26 +price.  Our General Public Licenses are designed to make sure that you
    5.27 +have the freedom to distribute copies of free software (and charge for
    5.28 +them if you wish), that you receive source code or can get it if you
    5.29 +want it, that you can change the software or use pieces of it in new
    5.30 +free programs, and that you know you can do these things.
    5.31 +
    5.32 +  To protect your rights, we need to prevent others from denying you
    5.33 +these rights or asking you to surrender the rights.  Therefore, you have
    5.34 +certain responsibilities if you distribute copies of the software, or if
    5.35 +you modify it: responsibilities to respect the freedom of others.
    5.36 +
    5.37 +  For example, if you distribute copies of such a program, whether
    5.38 +gratis or for a fee, you must pass on to the recipients the same
    5.39 +freedoms that you received.  You must make sure that they, too, receive
    5.40 +or can get the source code.  And you must show them these terms so they
    5.41 +know their rights.
    5.42 +
    5.43 +  Developers that use the GNU GPL protect your rights with two steps:
    5.44 +(1) assert copyright on the software, and (2) offer you this License
    5.45 +giving you legal permission to copy, distribute and/or modify it.
    5.46 +
    5.47 +  For the developers' and authors' protection, the GPL clearly explains
    5.48 +that there is no warranty for this free software.  For both users' and
    5.49 +authors' sake, the GPL requires that modified versions be marked as
    5.50 +changed, so that their problems will not be attributed erroneously to
    5.51 +authors of previous versions.
    5.52 +
    5.53 +  Some devices are designed to deny users access to install or run
    5.54 +modified versions of the software inside them, although the manufacturer
    5.55 +can do so.  This is fundamentally incompatible with the aim of
    5.56 +protecting users' freedom to change the software.  The systematic
    5.57 +pattern of such abuse occurs in the area of products for individuals to
    5.58 +use, which is precisely where it is most unacceptable.  Therefore, we
    5.59 +have designed this version of the GPL to prohibit the practice for those
    5.60 +products.  If such problems arise substantially in other domains, we
    5.61 +stand ready to extend this provision to those domains in future versions
    5.62 +of the GPL, as needed to protect the freedom of users.
    5.63 +
    5.64 +  Finally, every program is threatened constantly by software patents.
    5.65 +States should not allow patents to restrict development and use of
    5.66 +software on general-purpose computers, but in those that do, we wish to
    5.67 +avoid the special danger that patents applied to a free program could
    5.68 +make it effectively proprietary.  To prevent this, the GPL assures that
    5.69 +patents cannot be used to render the program non-free.
    5.70 +
    5.71 +  The precise terms and conditions for copying, distribution and
    5.72 +modification follow.
    5.73 +
    5.74 +                       TERMS AND CONDITIONS
    5.75 +
    5.76 +  0. Definitions.
    5.77 +
    5.78 +  "This License" refers to version 3 of the GNU General Public License.
    5.79 +
    5.80 +  "Copyright" also means copyright-like laws that apply to other kinds of
    5.81 +works, such as semiconductor masks.
    5.82 +
    5.83 +  "The Program" refers to any copyrightable work licensed under this
    5.84 +License.  Each licensee is addressed as "you".  "Licensees" and
    5.85 +"recipients" may be individuals or organizations.
    5.86 +
    5.87 +  To "modify" a work means to copy from or adapt all or part of the work
    5.88 +in a fashion requiring copyright permission, other than the making of an
    5.89 +exact copy.  The resulting work is called a "modified version" of the
    5.90 +earlier work or a work "based on" the earlier work.
    5.91 +
    5.92 +  A "covered work" means either the unmodified Program or a work based
    5.93 +on the Program.
    5.94 +
    5.95 +  To "propagate" a work means to do anything with it that, without
    5.96 +permission, would make you directly or secondarily liable for
    5.97 +infringement under applicable copyright law, except executing it on a
    5.98 +computer or modifying a private copy.  Propagation includes copying,
    5.99 +distribution (with or without modification), making available to the
   5.100 +public, and in some countries other activities as well.
   5.101 +
   5.102 +  To "convey" a work means any kind of propagation that enables other
   5.103 +parties to make or receive copies.  Mere interaction with a user through
   5.104 +a computer network, with no transfer of a copy, is not conveying.
   5.105 +
   5.106 +  An interactive user interface displays "Appropriate Legal Notices"
   5.107 +to the extent that it includes a convenient and prominently visible
   5.108 +feature that (1) displays an appropriate copyright notice, and (2)
   5.109 +tells the user that there is no warranty for the work (except to the
   5.110 +extent that warranties are provided), that licensees may convey the
   5.111 +work under this License, and how to view a copy of this License.  If
   5.112 +the interface presents a list of user commands or options, such as a
   5.113 +menu, a prominent item in the list meets this criterion.
   5.114 +
   5.115 +  1. Source Code.
   5.116 +
   5.117 +  The "source code" for a work means the preferred form of the work
   5.118 +for making modifications to it.  "Object code" means any non-source
   5.119 +form of a work.
   5.120 +
   5.121 +  A "Standard Interface" means an interface that either is an official
   5.122 +standard defined by a recognized standards body, or, in the case of
   5.123 +interfaces specified for a particular programming language, one that
   5.124 +is widely used among developers working in that language.
   5.125 +
   5.126 +  The "System Libraries" of an executable work include anything, other
   5.127 +than the work as a whole, that (a) is included in the normal form of
   5.128 +packaging a Major Component, but which is not part of that Major
   5.129 +Component, and (b) serves only to enable use of the work with that
   5.130 +Major Component, or to implement a Standard Interface for which an
   5.131 +implementation is available to the public in source code form.  A
   5.132 +"Major Component", in this context, means a major essential component
   5.133 +(kernel, window system, and so on) of the specific operating system
   5.134 +(if any) on which the executable work runs, or a compiler used to
   5.135 +produce the work, or an object code interpreter used to run it.
   5.136 +
   5.137 +  The "Corresponding Source" for a work in object code form means all
   5.138 +the source code needed to generate, install, and (for an executable
   5.139 +work) run the object code and to modify the work, including scripts to
   5.140 +control those activities.  However, it does not include the work's
   5.141 +System Libraries, or general-purpose tools or generally available free
   5.142 +programs which are used unmodified in performing those activities but
   5.143 +which are not part of the work.  For example, Corresponding Source
   5.144 +includes interface definition files associated with source files for
   5.145 +the work, and the source code for shared libraries and dynamically
   5.146 +linked subprograms that the work is specifically designed to require,
   5.147 +such as by intimate data communication or control flow between those
   5.148 +subprograms and other parts of the work.
   5.149 +
   5.150 +  The Corresponding Source need not include anything that users
   5.151 +can regenerate automatically from other parts of the Corresponding
   5.152 +Source.
   5.153 +
   5.154 +  The Corresponding Source for a work in source code form is that
   5.155 +same work.
   5.156 +
   5.157 +  2. Basic Permissions.
   5.158 +
   5.159 +  All rights granted under this License are granted for the term of
   5.160 +copyright on the Program, and are irrevocable provided the stated
   5.161 +conditions are met.  This License explicitly affirms your unlimited
   5.162 +permission to run the unmodified Program.  The output from running a
   5.163 +covered work is covered by this License only if the output, given its
   5.164 +content, constitutes a covered work.  This License acknowledges your
   5.165 +rights of fair use or other equivalent, as provided by copyright law.
   5.166 +
   5.167 +  You may make, run and propagate covered works that you do not
   5.168 +convey, without conditions so long as your license otherwise remains
   5.169 +in force.  You may convey covered works to others for the sole purpose
   5.170 +of having them make modifications exclusively for you, or provide you
   5.171 +with facilities for running those works, provided that you comply with
   5.172 +the terms of this License in conveying all material for which you do
   5.173 +not control copyright.  Those thus making or running the covered works
   5.174 +for you must do so exclusively on your behalf, under your direction
   5.175 +and control, on terms that prohibit them from making any copies of
   5.176 +your copyrighted material outside their relationship with you.
   5.177 +
   5.178 +  Conveying under any other circumstances is permitted solely under
   5.179 +the conditions stated below.  Sublicensing is not allowed; section 10
   5.180 +makes it unnecessary.
   5.181 +
   5.182 +  3. Protecting Users' Legal Rights From Anti-Circumvention Law.
   5.183 +
   5.184 +  No covered work shall be deemed part of an effective technological
   5.185 +measure under any applicable law fulfilling obligations under article
   5.186 +11 of the WIPO copyright treaty adopted on 20 December 1996, or
   5.187 +similar laws prohibiting or restricting circumvention of such
   5.188 +measures.
   5.189 +
   5.190 +  When you convey a covered work, you waive any legal power to forbid
   5.191 +circumvention of technological measures to the extent such circumvention
   5.192 +is effected by exercising rights under this License with respect to
   5.193 +the covered work, and you disclaim any intention to limit operation or
   5.194 +modification of the work as a means of enforcing, against the work's
   5.195 +users, your or third parties' legal rights to forbid circumvention of
   5.196 +technological measures.
   5.197 +
   5.198 +  4. Conveying Verbatim Copies.
   5.199 +
   5.200 +  You may convey verbatim copies of the Program's source code as you
   5.201 +receive it, in any medium, provided that you conspicuously and
   5.202 +appropriately publish on each copy an appropriate copyright notice;
   5.203 +keep intact all notices stating that this License and any
   5.204 +non-permissive terms added in accord with section 7 apply to the code;
   5.205 +keep intact all notices of the absence of any warranty; and give all
   5.206 +recipients a copy of this License along with the Program.
   5.207 +
   5.208 +  You may charge any price or no price for each copy that you convey,
   5.209 +and you may offer support or warranty protection for a fee.
   5.210 +
   5.211 +  5. Conveying Modified Source Versions.
   5.212 +
   5.213 +  You may convey a work based on the Program, or the modifications to
   5.214 +produce it from the Program, in the form of source code under the
   5.215 +terms of section 4, provided that you also meet all of these conditions:
   5.216 +
   5.217 +    a) The work must carry prominent notices stating that you modified
   5.218 +    it, and giving a relevant date.
   5.219 +
   5.220 +    b) The work must carry prominent notices stating that it is
   5.221 +    released under this License and any conditions added under section
   5.222 +    7.  This requirement modifies the requirement in section 4 to
   5.223 +    "keep intact all notices".
   5.224 +
   5.225 +    c) You must license the entire work, as a whole, under this
   5.226 +    License to anyone who comes into possession of a copy.  This
   5.227 +    License will therefore apply, along with any applicable section 7
   5.228 +    additional terms, to the whole of the work, and all its parts,
   5.229 +    regardless of how they are packaged.  This License gives no
   5.230 +    permission to license the work in any other way, but it does not
   5.231 +    invalidate such permission if you have separately received it.
   5.232 +
   5.233 +    d) If the work has interactive user interfaces, each must display
   5.234 +    Appropriate Legal Notices; however, if the Program has interactive
   5.235 +    interfaces that do not display Appropriate Legal Notices, your
   5.236 +    work need not make them do so.
   5.237 +
   5.238 +  A compilation of a covered work with other separate and independent
   5.239 +works, which are not by their nature extensions of the covered work,
   5.240 +and which are not combined with it such as to form a larger program,
   5.241 +in or on a volume of a storage or distribution medium, is called an
   5.242 +"aggregate" if the compilation and its resulting copyright are not
   5.243 +used to limit the access or legal rights of the compilation's users
   5.244 +beyond what the individual works permit.  Inclusion of a covered work
   5.245 +in an aggregate does not cause this License to apply to the other
   5.246 +parts of the aggregate.
   5.247 +
   5.248 +  6. Conveying Non-Source Forms.
   5.249 +
   5.250 +  You may convey a covered work in object code form under the terms
   5.251 +of sections 4 and 5, provided that you also convey the
   5.252 +machine-readable Corresponding Source under the terms of this License,
   5.253 +in one of these ways:
   5.254 +
   5.255 +    a) Convey the object code in, or embodied in, a physical product
   5.256 +    (including a physical distribution medium), accompanied by the
   5.257 +    Corresponding Source fixed on a durable physical medium
   5.258 +    customarily used for software interchange.
   5.259 +
   5.260 +    b) Convey the object code in, or embodied in, a physical product
   5.261 +    (including a physical distribution medium), accompanied by a
   5.262 +    written offer, valid for at least three years and valid for as
   5.263 +    long as you offer spare parts or customer support for that product
   5.264 +    model, to give anyone who possesses the object code either (1) a
   5.265 +    copy of the Corresponding Source for all the software in the
   5.266 +    product that is covered by this License, on a durable physical
   5.267 +    medium customarily used for software interchange, for a price no
   5.268 +    more than your reasonable cost of physically performing this
   5.269 +    conveying of source, or (2) access to copy the
   5.270 +    Corresponding Source from a network server at no charge.
   5.271 +
   5.272 +    c) Convey individual copies of the object code with a copy of the
   5.273 +    written offer to provide the Corresponding Source.  This
   5.274 +    alternative is allowed only occasionally and noncommercially, and
   5.275 +    only if you received the object code with such an offer, in accord
   5.276 +    with subsection 6b.
   5.277 +
   5.278 +    d) Convey the object code by offering access from a designated
   5.279 +    place (gratis or for a charge), and offer equivalent access to the
   5.280 +    Corresponding Source in the same way through the same place at no
   5.281 +    further charge.  You need not require recipients to copy the
   5.282 +    Corresponding Source along with the object code.  If the place to
   5.283 +    copy the object code is a network server, the Corresponding Source
   5.284 +    may be on a different server (operated by you or a third party)
   5.285 +    that supports equivalent copying facilities, provided you maintain
   5.286 +    clear directions next to the object code saying where to find the
   5.287 +    Corresponding Source.  Regardless of what server hosts the
   5.288 +    Corresponding Source, you remain obligated to ensure that it is
   5.289 +    available for as long as needed to satisfy these requirements.
   5.290 +
   5.291 +    e) Convey the object code using peer-to-peer transmission, provided
   5.292 +    you inform other peers where the object code and Corresponding
   5.293 +    Source of the work are being offered to the general public at no
   5.294 +    charge under subsection 6d.
   5.295 +
   5.296 +  A separable portion of the object code, whose source code is excluded
   5.297 +from the Corresponding Source as a System Library, need not be
   5.298 +included in conveying the object code work.
   5.299 +
   5.300 +  A "User Product" is either (1) a "consumer product", which means any
   5.301 +tangible personal property which is normally used for personal, family,
   5.302 +or household purposes, or (2) anything designed or sold for incorporation
   5.303 +into a dwelling.  In determining whether a product is a consumer product,
   5.304 +doubtful cases shall be resolved in favor of coverage.  For a particular
   5.305 +product received by a particular user, "normally used" refers to a
   5.306 +typical or common use of that class of product, regardless of the status
   5.307 +of the particular user or of the way in which the particular user
   5.308 +actually uses, or expects or is expected to use, the product.  A product
   5.309 +is a consumer product regardless of whether the product has substantial
   5.310 +commercial, industrial or non-consumer uses, unless such uses represent
   5.311 +the only significant mode of use of the product.
   5.312 +
   5.313 +  "Installation Information" for a User Product means any methods,
   5.314 +procedures, authorization keys, or other information required to install
   5.315 +and execute modified versions of a covered work in that User Product from
   5.316 +a modified version of its Corresponding Source.  The information must
   5.317 +suffice to ensure that the continued functioning of the modified object
   5.318 +code is in no case prevented or interfered with solely because
   5.319 +modification has been made.
   5.320 +
   5.321 +  If you convey an object code work under this section in, or with, or
   5.322 +specifically for use in, a User Product, and the conveying occurs as
   5.323 +part of a transaction in which the right of possession and use of the
   5.324 +User Product is transferred to the recipient in perpetuity or for a
   5.325 +fixed term (regardless of how the transaction is characterized), the
   5.326 +Corresponding Source conveyed under this section must be accompanied
   5.327 +by the Installation Information.  But this requirement does not apply
   5.328 +if neither you nor any third party retains the ability to install
   5.329 +modified object code on the User Product (for example, the work has
   5.330 +been installed in ROM).
   5.331 +
   5.332 +  The requirement to provide Installation Information does not include a
   5.333 +requirement to continue to provide support service, warranty, or updates
   5.334 +for a work that has been modified or installed by the recipient, or for
   5.335 +the User Product in which it has been modified or installed.  Access to a
   5.336 +network may be denied when the modification itself materially and
   5.337 +adversely affects the operation of the network or violates the rules and
   5.338 +protocols for communication across the network.
   5.339 +
   5.340 +  Corresponding Source conveyed, and Installation Information provided,
   5.341 +in accord with this section must be in a format that is publicly
   5.342 +documented (and with an implementation available to the public in
   5.343 +source code form), and must require no special password or key for
   5.344 +unpacking, reading or copying.
   5.345 +
   5.346 +  7. Additional Terms.
   5.347 +
   5.348 +  "Additional permissions" are terms that supplement the terms of this
   5.349 +License by making exceptions from one or more of its conditions.
   5.350 +Additional permissions that are applicable to the entire Program shall
   5.351 +be treated as though they were included in this License, to the extent
   5.352 +that they are valid under applicable law.  If additional permissions
   5.353 +apply only to part of the Program, that part may be used separately
   5.354 +under those permissions, but the entire Program remains governed by
   5.355 +this License without regard to the additional permissions.
   5.356 +
   5.357 +  When you convey a copy of a covered work, you may at your option
   5.358 +remove any additional permissions from that copy, or from any part of
   5.359 +it.  (Additional permissions may be written to require their own
   5.360 +removal in certain cases when you modify the work.)  You may place
   5.361 +additional permissions on material, added by you to a covered work,
   5.362 +for which you have or can give appropriate copyright permission.
   5.363 +
   5.364 +  Notwithstanding any other provision of this License, for material you
   5.365 +add to a covered work, you may (if authorized by the copyright holders of
   5.366 +that material) supplement the terms of this License with terms:
   5.367 +
   5.368 +    a) Disclaiming warranty or limiting liability differently from the
   5.369 +    terms of sections 15 and 16 of this License; or
   5.370 +
   5.371 +    b) Requiring preservation of specified reasonable legal notices or
   5.372 +    author attributions in that material or in the Appropriate Legal
   5.373 +    Notices displayed by works containing it; or
   5.374 +
   5.375 +    c) Prohibiting misrepresentation of the origin of that material, or
   5.376 +    requiring that modified versions of such material be marked in
   5.377 +    reasonable ways as different from the original version; or
   5.378 +
   5.379 +    d) Limiting the use for publicity purposes of names of licensors or
   5.380 +    authors of the material; or
   5.381 +
   5.382 +    e) Declining to grant rights under trademark law for use of some
   5.383 +    trade names, trademarks, or service marks; or
   5.384 +
   5.385 +    f) Requiring indemnification of licensors and authors of that
   5.386 +    material by anyone who conveys the material (or modified versions of
   5.387 +    it) with contractual assumptions of liability to the recipient, for
   5.388 +    any liability that these contractual assumptions directly impose on
   5.389 +    those licensors and authors.
   5.390 +
   5.391 +  All other non-permissive additional terms are considered "further
   5.392 +restrictions" within the meaning of section 10.  If the Program as you
   5.393 +received it, or any part of it, contains a notice stating that it is
   5.394 +governed by this License along with a term that is a further
   5.395 +restriction, you may remove that term.  If a license document contains
   5.396 +a further restriction but permits relicensing or conveying under this
   5.397 +License, you may add to a covered work material governed by the terms
   5.398 +of that license document, provided that the further restriction does
   5.399 +not survive such relicensing or conveying.
   5.400 +
   5.401 +  If you add terms to a covered work in accord with this section, you
   5.402 +must place, in the relevant source files, a statement of the
   5.403 +additional terms that apply to those files, or a notice indicating
   5.404 +where to find the applicable terms.
   5.405 +
   5.406 +  Additional terms, permissive or non-permissive, may be stated in the
   5.407 +form of a separately written license, or stated as exceptions;
   5.408 +the above requirements apply either way.
   5.409 +
   5.410 +  8. Termination.
   5.411 +
   5.412 +  You may not propagate or modify a covered work except as expressly
   5.413 +provided under this License.  Any attempt otherwise to propagate or
   5.414 +modify it is void, and will automatically terminate your rights under
   5.415 +this License (including any patent licenses granted under the third
   5.416 +paragraph of section 11).
   5.417 +
   5.418 +  However, if you cease all violation of this License, then your
   5.419 +license from a particular copyright holder is reinstated (a)
   5.420 +provisionally, unless and until the copyright holder explicitly and
   5.421 +finally terminates your license, and (b) permanently, if the copyright
   5.422 +holder fails to notify you of the violation by some reasonable means
   5.423 +prior to 60 days after the cessation.
   5.424 +
   5.425 +  Moreover, your license from a particular copyright holder is
   5.426 +reinstated permanently if the copyright holder notifies you of the
   5.427 +violation by some reasonable means, this is the first time you have
   5.428 +received notice of violation of this License (for any work) from that
   5.429 +copyright holder, and you cure the violation prior to 30 days after
   5.430 +your receipt of the notice.
   5.431 +
   5.432 +  Termination of your rights under this section does not terminate the
   5.433 +licenses of parties who have received copies or rights from you under
   5.434 +this License.  If your rights have been terminated and not permanently
   5.435 +reinstated, you do not qualify to receive new licenses for the same
   5.436 +material under section 10.
   5.437 +
   5.438 +  9. Acceptance Not Required for Having Copies.
   5.439 +
   5.440 +  You are not required to accept this License in order to receive or
   5.441 +run a copy of the Program.  Ancillary propagation of a covered work
   5.442 +occurring solely as a consequence of using peer-to-peer transmission
   5.443 +to receive a copy likewise does not require acceptance.  However,
   5.444 +nothing other than this License grants you permission to propagate or
   5.445 +modify any covered work.  These actions infringe copyright if you do
   5.446 +not accept this License.  Therefore, by modifying or propagating a
   5.447 +covered work, you indicate your acceptance of this License to do so.
   5.448 +
   5.449 +  10. Automatic Licensing of Downstream Recipients.
   5.450 +
   5.451 +  Each time you convey a covered work, the recipient automatically
   5.452 +receives a license from the original licensors, to run, modify and
   5.453 +propagate that work, subject to this License.  You are not responsible
   5.454 +for enforcing compliance by third parties with this License.
   5.455 +
   5.456 +  An "entity transaction" is a transaction transferring control of an
   5.457 +organization, or substantially all assets of one, or subdividing an
   5.458 +organization, or merging organizations.  If propagation of a covered
   5.459 +work results from an entity transaction, each party to that
   5.460 +transaction who receives a copy of the work also receives whatever
   5.461 +licenses to the work the party's predecessor in interest had or could
   5.462 +give under the previous paragraph, plus a right to possession of the
   5.463 +Corresponding Source of the work from the predecessor in interest, if
   5.464 +the predecessor has it or can get it with reasonable efforts.
   5.465 +
   5.466 +  You may not impose any further restrictions on the exercise of the
   5.467 +rights granted or affirmed under this License.  For example, you may
   5.468 +not impose a license fee, royalty, or other charge for exercise of
   5.469 +rights granted under this License, and you may not initiate litigation
   5.470 +(including a cross-claim or counterclaim in a lawsuit) alleging that
   5.471 +any patent claim is infringed by making, using, selling, offering for
   5.472 +sale, or importing the Program or any portion of it.
   5.473 +
   5.474 +  11. Patents.
   5.475 +
   5.476 +  A "contributor" is a copyright holder who authorizes use under this
   5.477 +License of the Program or a work on which the Program is based.  The
   5.478 +work thus licensed is called the contributor's "contributor version".
   5.479 +
   5.480 +  A contributor's "essential patent claims" are all patent claims
   5.481 +owned or controlled by the contributor, whether already acquired or
   5.482 +hereafter acquired, that would be infringed by some manner, permitted
   5.483 +by this License, of making, using, or selling its contributor version,
   5.484 +but do not include claims that would be infringed only as a
   5.485 +consequence of further modification of the contributor version.  For
   5.486 +purposes of this definition, "control" includes the right to grant
   5.487 +patent sublicenses in a manner consistent with the requirements of
   5.488 +this License.
   5.489 +
   5.490 +  Each contributor grants you a non-exclusive, worldwide, royalty-free
   5.491 +patent license under the contributor's essential patent claims, to
   5.492 +make, use, sell, offer for sale, import and otherwise run, modify and
   5.493 +propagate the contents of its contributor version.
   5.494 +
   5.495 +  In the following three paragraphs, a "patent license" is any express
   5.496 +agreement or commitment, however denominated, not to enforce a patent
   5.497 +(such as an express permission to practice a patent or covenant not to
   5.498 +sue for patent infringement).  To "grant" such a patent license to a
   5.499 +party means to make such an agreement or commitment not to enforce a
   5.500 +patent against the party.
   5.501 +
   5.502 +  If you convey a covered work, knowingly relying on a patent license,
   5.503 +and the Corresponding Source of the work is not available for anyone
   5.504 +to copy, free of charge and under the terms of this License, through a
   5.505 +publicly available network server or other readily accessible means,
   5.506 +then you must either (1) cause the Corresponding Source to be so
   5.507 +available, or (2) arrange to deprive yourself of the benefit of the
   5.508 +patent license for this particular work, or (3) arrange, in a manner
   5.509 +consistent with the requirements of this License, to extend the patent
   5.510 +license to downstream recipients.  "Knowingly relying" means you have
   5.511 +actual knowledge that, but for the patent license, your conveying the
   5.512 +covered work in a country, or your recipient's use of the covered work
   5.513 +in a country, would infringe one or more identifiable patents in that
   5.514 +country that you have reason to believe are valid.
   5.515 +
   5.516 +  If, pursuant to or in connection with a single transaction or
   5.517 +arrangement, you convey, or propagate by procuring conveyance of, a
   5.518 +covered work, and grant a patent license to some of the parties
   5.519 +receiving the covered work authorizing them to use, propagate, modify
   5.520 +or convey a specific copy of the covered work, then the patent license
   5.521 +you grant is automatically extended to all recipients of the covered
   5.522 +work and works based on it.
   5.523 +
   5.524 +  A patent license is "discriminatory" if it does not include within
   5.525 +the scope of its coverage, prohibits the exercise of, or is
   5.526 +conditioned on the non-exercise of one or more of the rights that are
   5.527 +specifically granted under this License.  You may not convey a covered
   5.528 +work if you are a party to an arrangement with a third party that is
   5.529 +in the business of distributing software, under which you make payment
   5.530 +to the third party based on the extent of your activity of conveying
   5.531 +the work, and under which the third party grants, to any of the
   5.532 +parties who would receive the covered work from you, a discriminatory
   5.533 +patent license (a) in connection with copies of the covered work
   5.534 +conveyed by you (or copies made from those copies), or (b) primarily
   5.535 +for and in connection with specific products or compilations that
   5.536 +contain the covered work, unless you entered into that arrangement,
   5.537 +or that patent license was granted, prior to 28 March 2007.
   5.538 +
   5.539 +  Nothing in this License shall be construed as excluding or limiting
   5.540 +any implied license or other defenses to infringement that may
   5.541 +otherwise be available to you under applicable patent law.
   5.542 +
   5.543 +  12. No Surrender of Others' Freedom.
   5.544 +
   5.545 +  If conditions are imposed on you (whether by court order, agreement or
   5.546 +otherwise) that contradict the conditions of this License, they do not
   5.547 +excuse you from the conditions of this License.  If you cannot convey a
   5.548 +covered work so as to satisfy simultaneously your obligations under this
   5.549 +License and any other pertinent obligations, then as a consequence you may
   5.550 +not convey it at all.  For example, if you agree to terms that obligate you
   5.551 +to collect a royalty for further conveying from those to whom you convey
   5.552 +the Program, the only way you could satisfy both those terms and this
   5.553 +License would be to refrain entirely from conveying the Program.
   5.554 +
   5.555 +  13. Use with the GNU Affero General Public License.
   5.556 +
   5.557 +  Notwithstanding any other provision of this License, you have
   5.558 +permission to link or combine any covered work with a work licensed
   5.559 +under version 3 of the GNU Affero General Public License into a single
   5.560 +combined work, and to convey the resulting work.  The terms of this
   5.561 +License will continue to apply to the part which is the covered work,
   5.562 +but the special requirements of the GNU Affero General Public License,
   5.563 +section 13, concerning interaction through a network will apply to the
   5.564 +combination as such.
   5.565 +
   5.566 +  14. Revised Versions of this License.
   5.567 +
   5.568 +  The Free Software Foundation may publish revised and/or new versions of
   5.569 +the GNU General Public License from time to time.  Such new versions will
   5.570 +be similar in spirit to the present version, but may differ in detail to
   5.571 +address new problems or concerns.
   5.572 +
   5.573 +  Each version is given a distinguishing version number.  If the
   5.574 +Program specifies that a certain numbered version of the GNU General
   5.575 +Public License "or any later version" applies to it, you have the
   5.576 +option of following the terms and conditions either of that numbered
   5.577 +version or of any later version published by the Free Software
   5.578 +Foundation.  If the Program does not specify a version number of the
   5.579 +GNU General Public License, you may choose any version ever published
   5.580 +by the Free Software Foundation.
   5.581 +
   5.582 +  If the Program specifies that a proxy can decide which future
   5.583 +versions of the GNU General Public License can be used, that proxy's
   5.584 +public statement of acceptance of a version permanently authorizes you
   5.585 +to choose that version for the Program.
   5.586 +
   5.587 +  Later license versions may give you additional or different
   5.588 +permissions.  However, no additional obligations are imposed on any
   5.589 +author or copyright holder as a result of your choosing to follow a
   5.590 +later version.
   5.591 +
   5.592 +  15. Disclaimer of Warranty.
   5.593 +
   5.594 +  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
   5.595 +APPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
   5.596 +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
   5.597 +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
   5.598 +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
   5.599 +PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
   5.600 +IS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
   5.601 +ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
   5.602 +
   5.603 +  16. Limitation of Liability.
   5.604 +
   5.605 +  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
   5.606 +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
   5.607 +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
   5.608 +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
   5.609 +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
   5.610 +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
   5.611 +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
   5.612 +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
   5.613 +SUCH DAMAGES.
   5.614 +
   5.615 +  17. Interpretation of Sections 15 and 16.
   5.616 +
   5.617 +  If the disclaimer of warranty and limitation of liability provided
   5.618 +above cannot be given local legal effect according to their terms,
   5.619 +reviewing courts shall apply local law that most closely approximates
   5.620 +an absolute waiver of all civil liability in connection with the
   5.621 +Program, unless a warranty or assumption of liability accompanies a
   5.622 +copy of the Program in return for a fee.
   5.623 +
   5.624 +                     END OF TERMS AND CONDITIONS
   5.625 +
   5.626 +            How to Apply These Terms to Your New Programs
   5.627 +
   5.628 +  If you develop a new program, and you want it to be of the greatest
   5.629 +possible use to the public, the best way to achieve this is to make it
   5.630 +free software which everyone can redistribute and change under these terms.
   5.631 +
   5.632 +  To do so, attach the following notices to the program.  It is safest
   5.633 +to attach them to the start of each source file to most effectively
   5.634 +state the exclusion of warranty; and each file should have at least
   5.635 +the "copyright" line and a pointer to where the full notice is found.
   5.636 +
   5.637 +    <one line to give the program's name and a brief idea of what it does.>
   5.638 +    Copyright (C) <year>  <name of author>
   5.639 +
   5.640 +    This program is free software: you can redistribute it and/or modify
   5.641 +    it under the terms of the GNU General Public License as published by
   5.642 +    the Free Software Foundation, either version 3 of the License, or
   5.643 +    (at your option) any later version.
   5.644 +
   5.645 +    This program is distributed in the hope that it will be useful,
   5.646 +    but WITHOUT ANY WARRANTY; without even the implied warranty of
   5.647 +    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   5.648 +    GNU General Public License for more details.
   5.649 +
   5.650 +    You should have received a copy of the GNU General Public License
   5.651 +    along with this program.  If not, see <http://www.gnu.org/licenses/>.
   5.652 +
   5.653 +Also add information on how to contact you by electronic and paper mail.
   5.654 +
   5.655 +  If the program does terminal interaction, make it output a short
   5.656 +notice like this when it starts in an interactive mode:
   5.657 +
   5.658 +    <program>  Copyright (C) <year>  <name of author>
   5.659 +    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
   5.660 +    This is free software, and you are welcome to redistribute it
   5.661 +    under certain conditions; type `show c' for details.
   5.662 +
   5.663 +The hypothetical commands `show w' and `show c' should show the appropriate
   5.664 +parts of the General Public License.  Of course, your program's commands
   5.665 +might be different; for a GUI interface, you would use an "about box".
   5.666 +
   5.667 +  You should also get your employer (if you work as a programmer) or school,
   5.668 +if any, to sign a "copyright disclaimer" for the program, if necessary.
   5.669 +For more information on this, and how to apply and follow the GNU GPL, see
   5.670 +<http://www.gnu.org/licenses/>.
   5.671 +
   5.672 +  The GNU General Public License does not permit incorporating your program
   5.673 +into proprietary programs.  If your program is a subroutine library, you
   5.674 +may consider it more useful to permit linking proprietary applications with
   5.675 +the library.  If this is what you want to do, use the GNU Lesser General
   5.676 +Public License instead of this License.  But first, please read
   5.677 +<http://www.gnu.org/philosophy/why-not-lgpl.html>.
     6.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     6.2 +++ b/kleanny/stuff/README	Sun Aug 27 10:17:57 2017 -0300
     6.3 @@ -0,0 +1,10 @@
     6.4 +**Kleanny** is an application that cleans cache and history files. An
     6.5 +effective solution to remove unnecessary files and keep your hard drive
     6.6 +free of junk. Kleanny analyzes the installed programs and search the cache
     6.7 +to be cleaned.
     6.8 +
     6.9 +The source code is available at http://hg.slitaz.org and released under
    6.10 +the GPLv3 license.
    6.11 +
    6.12 +Please share your questions and suggestions in our forum. 
    6.13 +http://forum.slitaz.org
     7.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     7.2 +++ b/kleanny/stuff/kleanny	Sun Aug 27 10:17:57 2017 -0300
     7.3 @@ -0,0 +1,269 @@
     7.4 +#!/bin/bash
     7.5 +#
     7.6 +#           Provided By The SliTaz Development Team.
     7.7 +#          Copyright (C) 2017 The SliTaz Association.
     7.8 +#
     7.9 +# This program is free software: you can redistribute it and/or modify
    7.10 +# it under the terms of the GNU General Public License as published by
    7.11 +# the Free Software Foundation, either version 3 of the License, or
    7.12 +# (at your option) any later version.
    7.13 +#
    7.14 +# This program is distributed in the hope that it will be useful,
    7.15 +# but WITHOUT ANY WARRANTY; without even the implied warranty of
    7.16 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    7.17 +# GNU General Public License for more details.
    7.18 +#
    7.19 +# You should have received a copy of the GNU General Public License
    7.20 +# along with this program.  If not, see <http://www.gnu.org/licenses/>.
    7.21 +#
    7.22 +# @@ Kleanny Database.
    7.23 +. /var/www/cgi-bin/kleanny/res/base/data
    7.24 +
    7.25 +# ----------------------------------------------------------------------------
    7.26 +# Check DEPENDS
    7.27 +
    7.28 +CHK_BASH="/var/lib/tazpkg/installed/bash"          # Check Bash
    7.29 +CHK_YAD="/var/lib/tazpkg/installed/yad-gtk2-html"  # Check Yad with HTML.
    7.30 +CHK_SVG="/var/lib/tazpkg/installed/librsvg"        # Check Librsvg.
    7.31 +CHK_FAIL="file:///$localdata/base/deps.fail.html"  # Report missing DEPS.
    7.32 +
    7.33 +# ----------------------------------------------------------------------------
    7.34 +# It is important to check if any dependencies have been removed by user.
    7.35 +
    7.36 +checkDEPS(){
    7.37 +if [ -e "$CHK_BASH" ] && [ -e "$CHK_YAD" ] && [ -e "$CHK_SVG" ]
    7.38 +then
    7.39 +  # OK! Let's check the logs now...
    7.40 +  checkLOG
    7.41 +else
    7.42 +  # Oops! Let's report the problem in the default browser.
    7.43 +  browser $CHK_FAIL
    7.44 +exit
    7.45 +fi
    7.46 +}
    7.47 +
    7.48 +# ----------------------------------------------------------------------------
    7.49 +# Search caches and files to be reported (LOGFILE).
    7.50 +#
    7.51 +# !! To add new entries please enter only the caches.
    7.52 +#    Keep the configuration files off the list.
    7.53 +#
    7.54 +#  Example:
    7.55 +#
    7.56 +#  $userdir/.thunderbird >> Includes settings. This is not good.
    7.57 +#  $userdir/.cache/thunderbird >> Includes cache only. That's nice!
    7.58 +
    7.59 +ASH_HISTORY="$userdir/.ash_history"
    7.60 +BASH_HISTORY="$userdir/.bash_history"
    7.61 +CACHE_THUMBNAILS="$userdir/.thumbnails"
    7.62 +CACHE_MIDORI="$userdir/.cache/midori"
    7.63 +CACHE_TRANSMISSION="$userdir/.cache/transmission"
    7.64 +CACHE_WINE="$userdir/.cache/wine"
    7.65 +CACHE_GCHROME="$userdir/.cache/google-chrome"
    7.66 +CACHE_THUNDERBIRD="$userdir/.cache/thunderbird"
    7.67 +
    7.68 +# ----------------------------------------------------------------------------
    7.69 +# Write the report of caches and files to remove (REMFILE).
    7.70 +
    7.71 +CLEAN_THUMBNAILS="$CACHE_THUMBNAILS/*"      # Thumbnails images cache.
    7.72 +CLEAN_MIDORI="$CACHE_MIDORI/*"              # Midori Browser cache.
    7.73 +CLEAN_TRANSMISSION="$CACHE_TRANSMISSION/*"  # Transmission P2P cache.
    7.74 +CLEAN_WINE="$CACHE_WINE/*"                  # Wine user cache.
    7.75 +CLEAN_GCHROME="$CACHE_GCHROME/*"            # Google Chrome cache.
    7.76 +CLEAN_THUNDERBIRD="$CACHE_THUNDERBIRD/*"    # Thunderbird cache.
    7.77 +
    7.78 +# ----------------------------------------------------------------------------
    7.79 +# Settings to directory temporary and logs
    7.80 +
    7.81 +CREATE_LOG_DIR="$(mkdir -p $tmpdir)"      # Create the log directory.
    7.82 +SET_TMPDIR_TO_ALL="$(chmod 777 $tmpdir)"  # Set permission to log directory.
    7.83 +LOGFILE="status.log"   # Report: Caches and files to read.
    7.84 +REMFILE="remove.log"   # Report: Caches and files to remove.
    7.85 +DEL_OLD_LOGS="$(rm -rf $tmpdir/$LOGFILE $tmpdir/$REMFILE)"  # Delete old logs.
    7.86 +
    7.87 +export APP_LOGFILE="$tmpdir/$LOGFILE"  # Recognize the output to status.log.
    7.88 +export APP_REMFILE="$tmpdir/$REMFILE"  # Recognize the output to remove.log.
    7.89 +
    7.90 +# ----------------------------------------------------------------------------
    7.91 +# Check the old logs to avoid conflicts with future verification.
    7.92 +#
    7.93 +# !! Kleanny needs this action to verify that the user uninstalls some
    7.94 +#    software and an old log is no longer useful. This is important!
    7.95 +
    7.96 +# @@ The first step the application should do.
    7.97 +checkLOG(){
    7.98 +[ -e "$tmpdir" ] && $DEL_OLD_LOGS || $CREATE_LOG_DIR
    7.99 +writeLOG
   7.100 +}
   7.101 +
   7.102 +# @@ Write the log files.
   7.103 +writeLOG(){
   7.104 +
   7.105 +# ----------------------------------------------------------------------------
   7.106 +# Report caches and files to status (status.log).
   7.107 +
   7.108 +cat <<-'LOG' >> ${APP_LOGFILE}
   7.109 +# Automatically generated by KLEANNY Application.
   7.110 +# The list of caches and files to be reported.
   7.111 +# [ dir: /tmp/kleanny/status.log ]
   7.112 +
   7.113 +ASH_HISTORY="$userdir/.ash_history"
   7.114 +BASH_HISTORY="$userdir/.bash_history"
   7.115 +CACHE_THUMBNAILS="$userdir/.thumbnails"
   7.116 +CACHE_MIDORI="$userdir/.cache/midori"
   7.117 +CACHE_TRANSMISSION="$userdir/.cache/transmission"
   7.118 +CACHE_WINE="$userdir/.cache/wine"
   7.119 +CACHE_GCHROME="$userdir/.cache/google-chrome"
   7.120 +CACHE_THUNDERBIRD="$userdir/.cache/thunderbird"
   7.121 +
   7.122 +CACHES="$(echo \
   7.123 +LOG
   7.124 +
   7.125 +# ----------------------------------------------------------------------------
   7.126 +# Report caches and files to cleanup action (remove.log).
   7.127 +
   7.128 +cat <<-'DELETE' >> ${APP_REMFILE}
   7.129 +# Automatically generated by KLEANNY Application.
   7.130 +# The list of caches and files to be removed.
   7.131 +# ******** Please do not edit this file. ********
   7.132 +# [ dir: /tmp/kleanny/remove.log ]
   7.133 +
   7.134 +ASH_HISTORY="$userdir/.ash_history"
   7.135 +BASH_HISTORY="$userdir/.bash_history"
   7.136 +CACHE_THUMBNAILS="$userdir/.thumbnails"
   7.137 +CACHE_MIDORI="$userdir/.cache/midori"
   7.138 +CACHE_TRANSMISSION="$userdir/.cache/transmission"
   7.139 +CACHE_WINE="$userdir/.cache/wine"
   7.140 +CACHE_GCHROME="$userdir/.cache/google-chrome"
   7.141 +CACHE_THUNDERBIRD="$userdir/.cache/thunderbird"
   7.142 +
   7.143 +CLEAN_THUMBNAILS="$CACHE_THUMBNAILS/*"
   7.144 +CLEAN_MIDORI="$CACHE_MIDORI/*"
   7.145 +CLEAN_TRANSMISSION="$CACHE_TRANSMISSION/*"
   7.146 +CLEAN_WINE="$CACHE_WINE/*"
   7.147 +CLEAN_GCHROME="$CACHE_GCHROME/*"
   7.148 +CLEAN_THUNDERBIRD="$CACHE_THUNDERBIRD/*"
   7.149 +
   7.150 +cleanup(){
   7.151 +DELETE
   7.152 +
   7.153 +if [ -e "$ASH_HISTORY" ]
   7.154 +then
   7.155 +cat <<-'LOG' >> ${APP_LOGFILE}
   7.156 +$ASH_HISTORY \
   7.157 +LOG
   7.158 +cat <<-'DELETE' >> ${APP_REMFILE}
   7.159 +rm -rf $ASH_HISTORY && touch $ASH_HISTORY && chmod 777 $ASH_HISTORY
   7.160 +DELETE
   7.161 +fi
   7.162 +
   7.163 +if [ -e "$BASH_HISTORY" ]
   7.164 +then
   7.165 +cat <<-'LOG' >> ${APP_LOGFILE}
   7.166 +$BASH_HISTORY \
   7.167 +LOG
   7.168 +cat <<-'DELETE' >> ${APP_REMFILE}
   7.169 +rm -rf $BASH_HISTORY && touch $BASH_HISTORY && chmod 777 $BASH_HISTORY
   7.170 +DELETE
   7.171 +fi
   7.172 +
   7.173 +if [ -e "$CACHE_THUMBNAILS" ]
   7.174 +then
   7.175 +cat <<-'LOG' >> ${APP_LOGFILE}
   7.176 +$CACHE_THUMBNAILS \
   7.177 +LOG
   7.178 +cat <<-'DELETE' >> ${APP_REMFILE}
   7.179 +rm -rf $CLEAN_THUMBNAILS
   7.180 +DELETE
   7.181 +fi
   7.182 +
   7.183 +if [ -e "$CACHE_MIDORI" ]
   7.184 +then
   7.185 +cat <<-'LOG' >> ${APP_LOGFILE}
   7.186 +$CACHE_MIDORI \
   7.187 +LOG
   7.188 +cat <<-'DELETE' >> ${APP_REMFILE}
   7.189 +rm -rf $CLEAN_MIDORI
   7.190 +DELETE
   7.191 +fi
   7.192 +
   7.193 +if [ -e "$CACHE_TRANSMISSION" ]
   7.194 +then
   7.195 +cat <<-'LOG' >> ${APP_LOGFILE}
   7.196 +$CACHE_TRANSMISSION \
   7.197 +LOG
   7.198 +cat <<-'DELETE' >> ${APP_REMFILE}
   7.199 +rm -rf $CLEAN_TRANSMISSION
   7.200 +DELETE
   7.201 +fi
   7.202 +
   7.203 +if [ -e "$CACHE_WINE" ]
   7.204 +then
   7.205 +cat <<-'LOG' >> ${APP_LOGFILE}
   7.206 +$CACHE_WINE \
   7.207 +LOG
   7.208 +cat <<-'DELETE' >> ${APP_REMFILE}
   7.209 +rm -rf $CLEAN_WINE
   7.210 +DELETE
   7.211 +fi
   7.212 +
   7.213 +if [ -e "$CACHE_GCHROME" ]
   7.214 +then
   7.215 +cat <<-'LOG' >> ${APP_LOGFILE}
   7.216 +$CACHE_GCHROME \
   7.217 +LOG
   7.218 +cat <<-'DELETE' >> ${APP_REMFILE}
   7.219 +rm -rf $CLEAN_GCHROME
   7.220 +DELETE
   7.221 +fi
   7.222 +
   7.223 +if [ -e "$CACHE_THUNDERBIRD" ]
   7.224 +then
   7.225 +cat <<-'LOG' >> ${APP_LOGFILE}
   7.226 +$CACHE_THUNDERBIRD)"
   7.227 +LOG
   7.228 +cat <<-'DELETE' >> ${APP_REMFILE}
   7.229 +rm -rf $CLEAN_THUNDERBIRD
   7.230 +DELETE
   7.231 +fi
   7.232 +
   7.233 +cat <<-'DELETE' >> ${APP_REMFILE}
   7.234 +}
   7.235 +DELETE
   7.236 +
   7.237 +cat <<-'DELETE' >> ${APP_LOGFILE}
   7.238 +
   7.239 +STATUS_REPORT="$(du -hcs $CACHES | grep total | sed 's/[*total* ]//g')"
   7.240 +
   7.241 +DELETE
   7.242 +
   7.243 +# @@ Set the correct permission for the temporary directory and all files.
   7.244 +$SET_TMPDIR_TO_ALL
   7.245 +
   7.246 +# @@ Call Kleanny startup.
   7.247 +startUP
   7.248 +
   7.249 +}
   7.250 +
   7.251 +startUP(){
   7.252 +
   7.253 +# @@ A beautiful splash screen.
   7.254 +splash=$(yad --gtkrc="$localtheme/gtkrc" \
   7.255 +    --window-icon="$localicon/48/kleanny.png" \
   7.256 +    --title="$APP_NAME" --center \
   7.257 +    --image="$localtheme/splashscreen.svg" \
   7.258 +    --no-buttons --undecorated --timeout="3" \
   7.259 +    --auto-close --auto-kill)
   7.260 +
   7.261 +# Launch Kleanny.
   7.262 +kleanny=$(yad --gtkrc="$localtheme/gtkrc" \
   7.263 +    --window-icon="$localicon/48/kleanny.png" \
   7.264 +    --title="$APP_NAME" --center --no-buttons \
   7.265 +    --browser --html --mime="text/html" \
   7.266 +    --width="320" --height="481" --undecorated \
   7.267 +    --borders="0" --uri="$localwww/res/base/status.cgi")
   7.268 +
   7.269 +}
   7.270 +
   7.271 +# @@ First step.
   7.272 +checkDEPS
     8.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     8.2 +++ b/kleanny/stuff/res/base/cleanup.cgi	Sun Aug 27 10:17:57 2017 -0300
     8.3 @@ -0,0 +1,47 @@
     8.4 +#!/bin/bash
     8.5 +#
     8.6 +#           Provided By The SliTaz Development Team.
     8.7 +#          Copyright (C) 2017 The SliTaz Association.
     8.8 +#
     8.9 +# This program is free software: you can redistribute it and/or modify
    8.10 +# it under the terms of the GNU General Public License as published by
    8.11 +# the Free Software Foundation, either version 3 of the License, or
    8.12 +# (at your option) any later version.
    8.13 +#
    8.14 +# This program is distributed in the hope that it will be useful,
    8.15 +# but WITHOUT ANY WARRANTY; without even the implied warranty of
    8.16 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    8.17 +# GNU General Public License for more details.
    8.18 +#
    8.19 +# You should have received a copy of the GNU General Public License
    8.20 +# along with this program.  If not, see <http://www.gnu.org/licenses/>.
    8.21 +#
    8.22 +# @@ Kleanny Scheme File.
    8.23 +. /var/www/cgi-bin/kleanny/res/base/data
    8.24 +. /var/www/cgi-bin/kleanny/res/template/scheme
    8.25 +
    8.26 +# @@ Kleanny.
    8.27 +source /tmp/kleanny/remove.log
    8.28 +
    8.29 +header
    8.30 +
    8.31 +appMETAINFO
    8.32 +
    8.33 +cleanup
    8.34 +
    8.35 +cat <<OUTPUT
    8.36 +
    8.37 +<section id="cleanup">
    8.38 +  <div id="scope">
    8.39 +    <div id="coupler"></div>
    8.40 +    <div id="gearONE" class="spin"></div>
    8.41 +    <div id="gearTWO" class="spin"></div>
    8.42 +    <p id="needle"></p>
    8.43 +    <p id="lines"></p>
    8.44 +  </div>
    8.45 +</section>
    8.46 +
    8.47 +OUTPUT
    8.48 +
    8.49 +appFOOTER
    8.50 +redirect
     9.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     9.2 +++ b/kleanny/stuff/res/base/data	Sun Aug 27 10:17:57 2017 -0300
     9.3 @@ -0,0 +1,23 @@
     9.4 +# Kleanny Database File.
     9.5 +
     9.6 +APP_NAME="kleanny"
     9.7 +APP_TITLE="Kleanny"
     9.8 +APP_VERSION="1.0"
     9.9 +APP_LICENSE="GPLv3"
    9.10 +APP_DESC="The Cache Cleaner"
    9.11 +
    9.12 +APP_ENCODING="UTF-8"
    9.13 +APP_DESIGN="/var/www/cgi-bin/kleanny/res/template/design"     # Stylesheet.
    9.14 +APP_SCRIPT="/var/www/cgi-bin/kleanny/res/template/javascript" # Javascript.
    9.15 +
    9.16 +localdata="/var/www/cgi-bin/kleanny/res"         # APP resource directory.
    9.17 +localicon="/var/www/cgi-bin/kleanny/res/icon"    # APP icons directory.
    9.18 +localtheme="/var/www/cgi-bin/kleanny/res/theme"  # APP YAD theme directory.
    9.19 +
    9.20 +localdir="/var/www/cgi-bin/kleanny"              # APP real directory.
    9.21 +localwww="http://localhost/cgi-bin/kleanny"      # Call to YAD browser.
    9.22 +tmpdir="/tmp/$APP_NAME"                          # Temporary directory.
    9.23 +userdir="/home/$USER"                            # Real user directory.
    9.24 +
    9.25 +slitaz_website="http://www.slitaz.org/"          # SliTaz GNU/Linux Website.
    9.26 +slitaz_devteam="http://people.slitaz.org/"       # SliTaz DevTeam Website.
    10.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    10.2 +++ b/kleanny/stuff/res/base/deps.fail.html	Sun Aug 27 10:17:57 2017 -0300
    10.3 @@ -0,0 +1,111 @@
    10.4 +<!DOCTYPE html><html><head><meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1" />
    10.5 +<!--
    10.6 +*           Provided By The SliTaz Development Team.
    10.7 +*          Copyright (C) 2017 The SliTaz Association.
    10.8 +*
    10.9 +* This program is free software: you can redistribute it and/or modify
   10.10 +* it under the terms of the GNU General Public License as published by
   10.11 +* the Free Software Foundation, either version 3 of the License, or
   10.12 +* (at your option) any later version.
   10.13 +*
   10.14 +* This program is distributed in the hope that it will be useful,
   10.15 +* but WITHOUT ANY WARRANTY; without even the implied warranty of
   10.16 +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   10.17 +* GNU General Public License for more details.
   10.18 +*
   10.19 +* You should have received a copy of the GNU General Public License
   10.20 +* along with this program.  If not, see <http://www.gnu.org/licenses/>.
   10.21 +*
   10.22 +-->
   10.23 +<title>Kleanny APP : Dependencies not found.</title>
   10.24 +<style type="text/css">
   10.25 +<!--
   10.26 +* {
   10.27 +box-sizing:border-box;
   10.28 +-o-box-sizing:border-box;
   10.29 +-moz-box-sizing:border-box;
   10.30 +-webkit-box-sizing:border-box;
   10.31 +}
   10.32 +a {
   10.33 +color:chocolate;}
   10.34 +html, body {
   10.35 +background-color:whitesmoke;
   10.36 +color:#303030;
   10.37 +font-family:serif;
   10.38 +font-size:14px;
   10.39 +margin:20px auto;
   10.40 +min-width:280px;
   10.41 +text-align:center;}
   10.42 +body {
   10.43 +border:02px solid lightgray;
   10.44 +padding:10px;
   10.45 +width:70%;}
   10.46 +h1 {
   10.47 +border-bottom:06px double lightgray;
   10.48 +margin:20px;
   10.49 +padding:20px;
   10.50 +}
   10.51 +h5 {
   10.52 +border-top:01px solid lightgray;
   10.53 +font-size:10px;
   10.54 +padding:20px 10px;
   10.55 +text-transform:uppercase;
   10.56 +}
   10.57 +b,h1,h2,h3,h4,h5,h6,strong {
   10.58 +color:#101010;}
   10.59 +p, ul, li {
   10.60 +text-align:left;
   10.61 +}
   10.62 +li {
   10.63 +line-height:01.540001em;
   10.64 +list-style-type:square;
   10.65 +margin-bottom:10px;
   10.66 +}
   10.67 +span {
   10.68 +color:brown;}
   10.69 +-->
   10.70 +</style>
   10.71 +</head>
   10.72 +<body>
   10.73 +
   10.74 +<h1>Kleanny : <span>Check Error!</span></h1>
   10.75 +
   10.76 +<blockquote><big>Sorry. Some dependencies not found.</big></blockquote>
   10.77 +<p>Kleanny needs some dependencies to work correctly.</p>
   10.78 +<p><b>Check the list below and please install.</b></p>
   10.79 +
   10.80 +<ul>
   10.81 +  <li>
   10.82 +    <b>Bash</b>&nbsp;<small>The GNU bourne SHell.</small><br>
   10.83 +    <a href="http://tazpanel:82/pkgs.cgi?info=bash">
   10.84 +      http://tazpanel:82/pkgs.cgi?info=bash
   10.85 +    </a>
   10.86 +  </li>
   10.87 +  <li>
   10.88 +    <b>librsvg</b>&nbsp;<small>SVG Rendering Library.</small><br>
   10.89 +    <a href="http://tazpanel:82/pkgs.cgi?info=librsvg">
   10.90 +      http://tazpanel:82/pkgs.cgi?info=librsvg
   10.91 +    </a>
   10.92 +  </li>
   10.93 +  <li>
   10.94 +    <b>Yad</b>&nbsp;<small>Gtk2 with HTML support.</small><br>
   10.95 +    <a href="http://tazpanel:82/pkgs.cgi?info=yad-gtk2-html">
   10.96 +      http://tazpanel:82/pkgs.cgi?info=yad-gtk2-html
   10.97 +    </a>
   10.98 +  </li>
   10.99 +</ul>
  10.100 +
  10.101 +<p>
  10.102 +  If you do not know how to solve this problem please share your question in
  10.103 +  our <a href="http://forum.slitaz.org/">forum</a>.
  10.104 +</p>
  10.105 +
  10.106 +<h5>
  10.107 +  Kleanny App | GPLV3 License<br>
  10.108 +  <small>Provided by the SliTaz DevTeam.</small><br><br>
  10.109 +  <samp>Copyright (C) 2017 SliTaz Association.</samp><br><br>
  10.110 +  <a href="http://www.slitaz.org/">www.slitaz.org</a>
  10.111 +</h5>
  10.112 +
  10.113 +</body>
  10.114 +</html>
    11.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    11.2 +++ b/kleanny/stuff/res/base/quit	Sun Aug 27 10:17:57 2017 -0300
    11.3 @@ -0,0 +1,8 @@
    11.4 +#!/bin/sh
    11.5 +
    11.6 +# This is not the best way. I do not have a way to 
    11.7 +# close the application on the button via CGI-Browser.
    11.8 +
    11.9 +# @@ Kill Kleanny and All YAD process.
   11.10 +killall yad
   11.11 +
    12.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    12.2 +++ b/kleanny/stuff/res/base/result.cgi	Sun Aug 27 10:17:57 2017 -0300
    12.3 @@ -0,0 +1,52 @@
    12.4 +#!/bin/bash
    12.5 +#
    12.6 +#           Provided By The SliTaz Development Team.
    12.7 +#          Copyright (C) 2017 The SliTaz Association.
    12.8 +#
    12.9 +# This program is free software: you can redistribute it and/or modify
   12.10 +# it under the terms of the GNU General Public License as published by
   12.11 +# the Free Software Foundation, either version 3 of the License, or
   12.12 +# (at your option) any later version.
   12.13 +#
   12.14 +# This program is distributed in the hope that it will be useful,
   12.15 +# but WITHOUT ANY WARRANTY; without even the implied warranty of
   12.16 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   12.17 +# GNU General Public License for more details.
   12.18 +#
   12.19 +# You should have received a copy of the GNU General Public License
   12.20 +# along with this program.  If not, see <http://www.gnu.org/licenses/>.
   12.21 +#
   12.22 +# @@ Kleanny Scheme File.
   12.23 +. /var/www/cgi-bin/kleanny/res/base/data
   12.24 +. /var/www/cgi-bin/kleanny/res/template/scheme
   12.25 +
   12.26 +# @@ Kleanny Cache Status.
   12.27 +source /tmp/kleanny/status.log
   12.28 +STATUS_REPORT="$(du -hcs $CACHES | grep total | sed 's/[*total* ]//g')"
   12.29 +
   12.30 +# @@ Page with status info.
   12.31 +header
   12.32 +
   12.33 +appMETAINFO
   12.34 +
   12.35 +# @@ The cache status situation.
   12.36 +cat <<OUTPUT
   12.37 +
   12.38 +<section id="result">
   12.39 +  <div id="scope">
   12.40 +    <div id="coupler"></div>
   12.41 +    <div id="gearONE"></div>
   12.42 +    <div id="gearTWO"></div>
   12.43 +    <p class="status">
   12.44 +      $STATUS_REPORT
   12.45 +    </p>
   12.46 +  </div>
   12.47 +</section>
   12.48 +
   12.49 +<form id="cleaner" method="get" action="quit">
   12.50 +  <button type="submit">$(_ "Close")</button>
   12.51 +</form>
   12.52 +
   12.53 +OUTPUT
   12.54 +
   12.55 +appFOOTER
    13.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    13.2 +++ b/kleanny/stuff/res/base/status.cgi	Sun Aug 27 10:17:57 2017 -0300
    13.3 @@ -0,0 +1,52 @@
    13.4 +#!/bin/bash
    13.5 +#
    13.6 +#           Provided By The SliTaz Development Team.
    13.7 +#          Copyright (C) 2017 The SliTaz Association.
    13.8 +#
    13.9 +# This program is free software: you can redistribute it and/or modify
   13.10 +# it under the terms of the GNU General Public License as published by
   13.11 +# the Free Software Foundation, either version 3 of the License, or
   13.12 +# (at your option) any later version.
   13.13 +#
   13.14 +# This program is distributed in the hope that it will be useful,
   13.15 +# but WITHOUT ANY WARRANTY; without even the implied warranty of
   13.16 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   13.17 +# GNU General Public License for more details.
   13.18 +#
   13.19 +# You should have received a copy of the GNU General Public License
   13.20 +# along with this program.  If not, see <http://www.gnu.org/licenses/>.
   13.21 +#
   13.22 +# @@ Kleanny Scheme File.
   13.23 +. /var/www/cgi-bin/kleanny/res/base/data
   13.24 +. /var/www/cgi-bin/kleanny/res/template/scheme
   13.25 +
   13.26 +# @@ Kleanny Cache Status.
   13.27 +source /tmp/kleanny/status.log
   13.28 +STATUS_REPORT="$(du -hcs $CACHES | grep total | sed 's/[*total* ]//g')"
   13.29 +
   13.30 +# @@ Page with status info.
   13.31 +header
   13.32 +
   13.33 +appMETAINFO
   13.34 +
   13.35 +# @@ The cache status situation.
   13.36 +cat <<OUTPUT
   13.37 +
   13.38 +<section id="status">
   13.39 +  <div id="scope">
   13.40 +    <div id="coupler"></div>
   13.41 +    <div id="gearONE"></div>
   13.42 +    <div id="gearTWO"></div>
   13.43 +    <p class="status">
   13.44 +      $STATUS_REPORT
   13.45 +    </p>
   13.46 +  </div>
   13.47 +</section>
   13.48 +
   13.49 +<form id="cleaner" method="POST" action="cleanup.cgi">
   13.50 +  <button type="submit">$(_ "Cleanup!")</button>
   13.51 +</form>
   13.52 +
   13.53 +OUTPUT
   13.54 +
   13.55 +appFOOTER
    14.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    14.2 +++ b/kleanny/stuff/res/desktop/kleanny.desktop	Sun Aug 27 10:17:57 2017 -0300
    14.3 @@ -0,0 +1,11 @@
    14.4 +[Desktop Entry]
    14.5 +Type=Application
    14.6 +Name=Kleanny
    14.7 +Name[fr]=Kleanny
    14.8 +Name[pt]=Kleanny
    14.9 +Name[pt_BR]=Kleanny
   14.10 +Name[ru]=Kleanny
   14.11 +Comment=Cache Cleanup Utility
   14.12 +Exec=kleanny
   14.13 +Icon=/var/www/cgi-bin/kleanny/res/icon/48/kleanny.png
   14.14 +Categories=System;Filesystem;
    15.1 Binary file kleanny/stuff/res/icon/24/kleanny.png has changed
    16.1 Binary file kleanny/stuff/res/icon/256/kleanny.png has changed
    17.1 Binary file kleanny/stuff/res/icon/48/kleanny.png has changed
    18.1 Binary file kleanny/stuff/res/icon/64/kleanny.png has changed
    19.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    19.2 +++ b/kleanny/stuff/res/template/design	Sun Aug 27 10:17:57 2017 -0300
    19.3 @@ -0,0 +1,249 @@
    19.4 +@charset "UTF-8";
    19.5 +/* ---------------------------------------------------------------------------
    19.6 + *           Provided By The SliTaz Development Team.
    19.7 + *          Copyright (C) 2017 The SliTaz Association.
    19.8 + *
    19.9 + * This program is free software: you can redistribute it and/or modify
   19.10 + * it under the terms of the GNU General Public License as published by
   19.11 + * the Free Software Foundation, either version 3 of the License, or
   19.12 + * (at your option) any later version.
   19.13 + *
   19.14 + * This program is distributed in the hope that it will be useful,
   19.15 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
   19.16 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   19.17 + * GNU General Public License for more details.
   19.18 + *
   19.19 + * You should have received a copy of the GNU General Public License
   19.20 + * along with this program.  If not, see <http://www.gnu.org/licenses/>.
   19.21 + *
   19.22 + * ---------------------------------------------------------------------------
   19.23 + *
   19.24 + * @@ Kleanny Stylesheet.
   19.25 + *
   19.26 + * !! YAD with HTML widget support uses only webkit (-webkit-*).
   19.27 + *    Other options are disposable here. (-o, -moz, -ms ...).
   19.28 + *
   19.29 + */
   19.30 +
   19.31 +* {
   19.32 +/* Reset Rules */
   19.33 +border-width:00px;
   19.34 +font-weight:normal;
   19.35 +margin:00px auto;
   19.36 +outline-style:none;
   19.37 +outline-width:00px;
   19.38 +padding:00px 00px;
   19.39 +text-align:center;
   19.40 +text-decoration:none;
   19.41 +-webkit-box-sizing:border-box;
   19.42 +}
   19.43 +
   19.44 +a {color:brown;}
   19.45 +a:focus, a:hover {color:darkred;}
   19.46 +
   19.47 +html, body {
   19.48 +background-color:#151515;
   19.49 +color:#828282;
   19.50 +font-family:"monospace", monospace;
   19.51 +font-size:12px;
   19.52 +letter-spacing:normal;
   19.53 +line-height:normal;
   19.54 +overflow:hidden;
   19.55 +}
   19.56 +
   19.57 +body {
   19.58 +height:470px;
   19.59 +position:relative;
   19.60 +text-shadow:00px 01px 01px #000000;
   19.61 +width:310px;
   19.62 +}
   19.63 +
   19.64 +hr {
   19.65 +border-bottom:01px solid #000000;
   19.66 +margin:05px auto;
   19.67 +width:70%;
   19.68 +}
   19.69 +
   19.70 +/* @scheme */
   19.71 +
   19.72 +header {
   19.73 +background-color:#080808;
   19.74 +border-bottom:10px solid #181818;
   19.75 +box-shadow:00px 04px 04px 01px #000000;
   19.76 +-webkit-box-shadow:00px 07px 10px 01px #000000;
   19.77 +}
   19.78 +
   19.79 +header, footer {
   19.80 +padding:20px 00px;
   19.81 +text-transform:uppercase;
   19.82 +}
   19.83 +
   19.84 +section {
   19.85 +margin:25px auto 10px auto;
   19.86 +position:relative;
   19.87 +}
   19.88 +
   19.89 +div#scope {
   19.90 +background-color:#D3D3D3;
   19.91 +height:180px;
   19.92 +position:relative;
   19.93 +width:180px;
   19.94 +}
   19.95 +div#coupler {
   19.96 +background-color:#A52A2A;
   19.97 +-webkit-box-shadow:inset 00px 00px 200px 15px #000000;
   19.98 +height:160px;
   19.99 +left:10px;
  19.100 +position:absolute;
  19.101 +top:10px;
  19.102 +width:160px;
  19.103 +}
  19.104 +div#gearONE {
  19.105 +border:06px dashed #5D0000;
  19.106 +height:150px;
  19.107 +left:15px;
  19.108 +position:absolute;
  19.109 +top:15px;
  19.110 +width:150px;
  19.111 +}
  19.112 +div#gearTWO {
  19.113 +border:04px dashed #8D0000;
  19.114 +height:130px;
  19.115 +left:25px;
  19.116 +position:absolute;
  19.117 +top:25px;
  19.118 +width:130px;
  19.119 +}
  19.120 +
  19.121 +div#scope, div#coupler, div#gearONE, div#gearTWO {
  19.122 +-webkit-border-radius:100%;
  19.123 +}
  19.124 +
  19.125 +form#cleaner {
  19.126 +margin-top:20px;
  19.127 +}
  19.128 +form#cleaner button {
  19.129 +background-color:#181818;
  19.130 +border-bottom:02px solid #202020;
  19.131 +border-top:01px solid #080808;
  19.132 +color:#F2F2F2;
  19.133 +cursor:pointer;
  19.134 +line-height:40px;
  19.135 +width:180px;
  19.136 +-webkit-border-radius:50px;
  19.137 +-webkit-box-shadow:00px 00px 04px 00px #000000;
  19.138 +}
  19.139 +form#cleaner button:focus,
  19.140 +form#cleaner button:hover {
  19.141 +color:#BABABA;
  19.142 +-webkit-box-shadow:inset 00px 00px 04px 00px #000000;
  19.143 +}
  19.144 +form#cleaner button:active {
  19.145 +-webkit-box-shadow:inset 00px -01px 04px 00px #00FF00;
  19.146 +}
  19.147 +
  19.148 +section#cleanup div#scope {
  19.149 +background-color:#303030;
  19.150 +}
  19.151 +section#cleanup div#coupler {
  19.152 +background-color:#006400;
  19.153 +-webkit-box-shadow:inset 00px 00px 200px 15px #000000;
  19.154 +}
  19.155 +section#cleanup div#gearONE {
  19.156 +border-color:#00A200;
  19.157 +}
  19.158 +section#cleanup div#gearTWO {
  19.159 +border-color:#00D200;
  19.160 +}
  19.161 +
  19.162 +section#result div#scope {
  19.163 +background-color:#282828;
  19.164 +-webkit-box-shadow:00px 00px 10px 00px #0095D2;
  19.165 +}
  19.166 +section#result div#coupler {
  19.167 +background-color:#005664;
  19.168 +-webkit-box-shadow:inset 00px 00px 200px 15px #000000;
  19.169 +}
  19.170 +section#result div#gearONE {
  19.171 +border-color:#007CA2;
  19.172 +}
  19.173 +section#result div#gearTWO {
  19.174 +border-color:#0095D2;
  19.175 +}
  19.176 +
  19.177 +#needle {
  19.178 +background-color:#008B00;
  19.179 +box-shadow:00px 00px 20px 04px #00FF00;
  19.180 +content:"\0020\ ";
  19.181 +height:02px;
  19.182 +left:-10px;
  19.183 +position:absolute;
  19.184 +top:170px;
  19.185 +width:200px;
  19.186 +-webkit-animation:scan 4s infinite;
  19.187 +}
  19.188 +
  19.189 +footer {
  19.190 +bottom:00px;
  19.191 +left:00px;
  19.192 +letter-spacing:0.50px;
  19.193 +line-height:01.125001em;
  19.194 +position:absolute;
  19.195 +width:310px;
  19.196 +}
  19.197 +
  19.198 +/* @typography */
  19.199 +
  19.200 +header h1, footer h4 {
  19.201 +color:#FFFFFF;
  19.202 +font-family:"sans";
  19.203 +font-weight:bold;
  19.204 +}
  19.205 +header h3 {
  19.206 +font-size:12px;
  19.207 +letter-spacing:01px;
  19.208 +word-spacing:-03px;
  19.209 +margin-top:10px;
  19.210 +}
  19.211 +p.status {
  19.212 +background-color:transparent;
  19.213 +-webkit-border-radius:100px;
  19.214 +color:#FFFFFF;
  19.215 +font-size:16px;
  19.216 +font-weight:bold;
  19.217 +left:35px;
  19.218 +line-height:30px;
  19.219 +position:absolute;
  19.220 +text-shadow:00px 07px 02px #2D0000;
  19.221 +top:73px;
  19.222 +width:110px;
  19.223 +}
  19.224 +p#lines {
  19.225 +left:00px;
  19.226 +position:absolute;
  19.227 +top:80px;
  19.228 +width:180px;
  19.229 +}
  19.230 +p#lines:before {
  19.231 +color:#FFFFFF;
  19.232 +content:"...|||...";
  19.233 +font-weight:bold;
  19.234 +}
  19.235 +form#cleaner button {
  19.236 +font-size:14px;
  19.237 +font-weight:bold;
  19.238 +}
  19.239 +footer h4 {
  19.240 +font-size:11px;
  19.241 +}
  19.242 +footer h5 {
  19.243 +font-size:09px;
  19.244 +}
  19.245 +
  19.246 +/* animation */
  19.247 +
  19.248 +div.spin {-webkit-animation:spin 2s linear infinite;}
  19.249 +@-webkit-keyframes spin { 50% { -webkit-transform: rotate(-90deg); } }
  19.250 +@-webkit-keyframes scan { 50% {top:10px;} }
  19.251 +
  19.252 +
    20.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    20.2 +++ b/kleanny/stuff/res/template/javascript	Sun Aug 27 10:17:57 2017 -0300
    20.3 @@ -0,0 +1,18 @@
    20.4 +// Kleanny Javascript File.
    20.5 +// ---------------------------------------------------------------------------
    20.6 +//           Provided By The SliTaz Development Team.
    20.7 +//          Copyright (C) 2017 The SliTaz Association.
    20.8 +//
    20.9 +// This program is free software: you can redistribute it and/or modify
   20.10 +// it under the terms of the GNU General Public License as published by
   20.11 +// the Free Software Foundation, either version 3 of the License, or
   20.12 +// (at your option) any later version.
   20.13 +//
   20.14 +// This program is distributed in the hope that it will be useful,
   20.15 +// but WITHOUT ANY WARRANTY; without even the implied warranty of
   20.16 +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   20.17 +// GNU General Public License for more details.
   20.18 +//
   20.19 +// You should have received a copy of the GNU General Public License
   20.20 +// along with this program.  If not, see <http://www.gnu.org/licenses/>.
   20.21 +// ---------------------------------------------------------------------------
    21.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    21.2 +++ b/kleanny/stuff/res/template/scheme	Sun Aug 27 10:17:57 2017 -0300
    21.3 @@ -0,0 +1,79 @@
    21.4 +# Kleanny Scheme File.
    21.5 +# Please use HTML5 only.
    21.6 +# Javascript and CSS are available.
    21.7 +# ----------------------------------------------------------------------------
    21.8 +#           Provided By The SliTaz Development Team.
    21.9 +#          Copyright (C) 2017 The SliTaz Association.
   21.10 +#
   21.11 +# This program is free software: you can redistribute it and/or modify
   21.12 +# it under the terms of the GNU General Public License as published by
   21.13 +# the Free Software Foundation, either version 3 of the License, or
   21.14 +# (at your option) any later version.
   21.15 +#
   21.16 +# This program is distributed in the hope that it will be useful,
   21.17 +# but WITHOUT ANY WARRANTY; without even the implied warranty of
   21.18 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   21.19 +# GNU General Public License for more details.
   21.20 +#
   21.21 +# You should have received a copy of the GNU General Public License
   21.22 +# along with this program.  If not, see <http://www.gnu.org/licenses/>.
   21.23 +# ----------------------------------------------------------------------------
   21.24 +
   21.25 +# @@ Library and functions by SliTaz OS.
   21.26 +. /usr/lib/slitaz/httphelper.sh
   21.27 +. /lib/libtaz.sh
   21.28 +
   21.29 +# @@ The header with the document data.
   21.30 +appMETAINFO(){
   21.31 +cat <<OUTPUT
   21.32 +<!DOCTYPE html>
   21.33 +<html>
   21.34 +<head>
   21.35 +<meta charset="$APP_ENCODING"/>
   21.36 +<title>$APP_NAME - $APP_DESC</title>
   21.37 +
   21.38 +<style type="text/css">
   21.39 +<!--
   21.40 +$(cat $APP_DESIGN)
   21.41 +-->
   21.42 +</style>
   21.43 +
   21.44 +<script type="text/javascript">
   21.45 +$(cat $APP_SCRIPT)
   21.46 +</script>
   21.47 +
   21.48 +</head>
   21.49 +<body>
   21.50 +
   21.51 +<header>
   21.52 +  <h1>$APP_NAME</h1>
   21.53 +  <h3>$(_ "$APP_DESC")</h3>
   21.54 +</header>
   21.55 +
   21.56 +OUTPUT
   21.57 +}
   21.58 +
   21.59 +
   21.60 +# @@ The footer with additional information.
   21.61 +appFOOTER(){
   21.62 +cat <<OUTPUT
   21.63 +
   21.64 +<footer>
   21.65 +  <h4>$APP_NAME $APP_VERSION - $APP_LICENSE</h4><hr>
   21.66 +  <h5>Provided by The <a href="$slitaz_devteam">SliTaz DevTeam</a></h5>
   21.67 +  <h5>Copyright (C) 2017 The <a href="$slitaz_website">SliTaz Association</a></h5>
   21.68 +</footer>
   21.69 +
   21.70 +</body>
   21.71 +</html>
   21.72 +OUTPUT
   21.73 +}
   21.74 +
   21.75 +# @@ Return to status.cgi
   21.76 +redirect(){
   21.77 +cat <<OUTPUT
   21.78 +<html><head>
   21.79 +<meta http-equiv="refresh" content="3;url=result.cgi" />
   21.80 +</head></html>
   21.81 +OUTPUT
   21.82 +}
    22.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    22.2 +++ b/kleanny/stuff/res/theme/gtkrc	Sun Aug 27 10:17:57 2017 -0300
    22.3 @@ -0,0 +1,58 @@
    22.4 +#
    22.5 +#           Provided By The SliTaz Development Team.
    22.6 +#          Copyright (C) 2017 The SliTaz Association.
    22.7 +#
    22.8 +# This program is free software: you can redistribute it and/or modify
    22.9 +# it under the terms of the GNU General Public License as published by
   22.10 +# the Free Software Foundation, either version 3 of the License, or
   22.11 +# (at your option) any later version.
   22.12 +#
   22.13 +# This program is distributed in the hope that it will be useful,
   22.14 +# but WITHOUT ANY WARRANTY; without even the implied warranty of
   22.15 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   22.16 +# GNU General Public License for more details.
   22.17 +#
   22.18 +# You should have received a copy of the GNU General Public License
   22.19 +# along with this program.  If not, see <http://www.gnu.org/licenses/>.
   22.20 +# ----------------------------------------------------------------------------
   22.21 +
   22.22 +pixmap_path "/usr/share/pixmaps:/usr/share/themes:/usr/share/icons"
   22.23 +
   22.24 +style "APPfont"
   22.25 +{
   22.26 +  font_name = "Sans 8"
   22.27 +}
   22.28 +
   22.29 +style "APPstyle"
   22.30 +{
   22.31 +  bg[NORMAL]             = "#151515"   # Color Background
   22.32 +  fg[NORMAL]             = "#808080"   # Color Text
   22.33 +  GtkRange::stepper_spacing = 0
   22.34 +  GtkRange::trough_border = 0
   22.35 +}
   22.36 +
   22.37 +style "APPcontent" {
   22.38 +  bg[NORMAL]             = "#151515"   # Color Background
   22.39 +  fg[NORMAL]             = "#808080"   # Color Text
   22.40 +  font_name              = "sans"
   22.41 +  GtkLabel::use-markup   = TRUE
   22.42 +}
   22.43 +
   22.44 +style "APPbuttons" {
   22.45 +  fg[NORMAL]             = "#909090"   # button label text colour
   22.46 +  fg[PRELIGHT]           = "#CDCDCD"   # button label text colour when mouse is over the button
   22.47 +  bg[NORMAL]             = "#151515"   # button background colour
   22.48 +  bg[PRELIGHT]           = "#151515"   # button background colour when mouse is over the button
   22.49 +  bg[ACTIVE]             = "#151515"
   22.50 +  bg[SELECTED]           = "#151515"
   22.51 +  font_name              = "sans"   # button font display
   22.52 +  xthickness             = 2           # adds "border" on either side of the button
   22.53 +  ythickness             = 2           # adds "border" above and below the button
   22.54 +}
   22.55 +
   22.56 +widget_class "*" style "APPfont"
   22.57 +widget_class "<GtkWindow>" style "APPstyle"
   22.58 +widget_class "<GtkWindow><GtkVBox><GtkHBox><GtkVBox><GtkLabel>" style "APPcontent"
   22.59 +widget_class "<GtkWindow><GtkVBox><GtkContainer><GtkButton>" style "APPbuttons"
   22.60 +widget_class "<GtkWindow><GtkVBox><GtkContainer><GtkButton><GtkContainer><GtkHBox><GtkLabel>" style "APPbuttons"
   22.61 +gtk-font-name = "Sans 8" # Important
    23.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    23.2 +++ b/kleanny/stuff/res/theme/splashscreen.svg	Sun Aug 27 10:17:57 2017 -0300
    23.3 @@ -0,0 +1,27 @@
    23.4 +<?xml version="1.0" encoding="UTF-8" standalone="no"?>
    23.5 +<svg xmlns:svg="http://www.w3.org/2000/svg" width="480" height="240" viewBox="0 0 480.00001 240" inkscape:version="2.1" sodipodi:docname="splashscreen.svg">
    23.6 +<g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(-115.71428,-133.79077)">
    23.7 + <g id="g3430">
    23.8 +  <rect y="133.79077" x="115.71428" height="240" width="480" id="rect3347" style="fill:#151515;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
    23.9 +  <image width="115.2" height="115.2" preserveAspectRatio="none" xlink:href="data:image/png;base64,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 iH0jAAAAAElFTkSuQmCC " id="image4182" x="298.11429" y="160.49391" />
   23.10 +  <text sodipodi:linespacing="125%" id="text4185" y="293.92831" x="305.36487" style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:18.75px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" xml:space="preserve">
   23.11 +   <tspan y="293.92831" x="305.36487" id="tspan4187" sodipodi:role="line">KLEANNY</tspan>
   23.12 +  </text>
   23.13 +  <text xml:space="preserve" style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:11.25px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#666666;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" x="289.52716" y="308.92831" id="text4197" sodipodi:linespacing="125%">
   23.14 +   <tspan sodipodi:role="line" id="tspan4199" x="289.52716" y="308.92831">THE CACHE CLEANER</tspan>
   23.15 +  </text>
   23.16 +  <text sodipodi:linespacing="125%" id="text4227" y="349.57648" x="122.61015" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.25px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" xml:space="preserve">
   23.17 +   <tspan y="349.57648" x="122.61015" id="tspan4229" sodipodi:role="line">Provided by The SliTaz DevTeam</tspan>
   23.18 +  </text>
   23.19 +  <text xml:space="preserve" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.25px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#808080;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" x="123.08258" y="362.57648" id="text4231" sodipodi:linespacing="125%">
   23.20 +   <tspan sodipodi:role="line" id="tspan4233" x="123.08258" y="362.57648">Copyright (C) 2017 The SliTaz Association</tspan>
   23.21 +  </text>
   23.22 +  <text xml:space="preserve" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.25px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" x="495.65985" y="349.57648" id="text4243" sodipodi:linespacing="125%">
   23.23 +   <tspan sodipodi:role="line" id="tspan4245" x="495.65985" y="349.57648">people.slitaz.org</tspan>
   23.24 +  </text>
   23.25 +  <text sodipodi:linespacing="125%" id="text4247" y="362.57648" x="507.1955" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.25px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#808080;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" xml:space="preserve">
   23.26 +   <tspan y="362.57648" x="507.1955" id="tspan4249" sodipodi:role="line">www.slitaz.org</tspan>
   23.27 +  </text>
   23.28 + </g>
   23.29 +</g>
   23.30 +</svg>