Skip to content

Commit

Permalink
Remove .php suffix
Browse files Browse the repository at this point in the history
  • Loading branch information
slusarz committed Oct 18, 2013
1 parent 9f5df2c commit f0783a1
Show file tree
Hide file tree
Showing 8 changed files with 28 additions and 28 deletions.
14 changes: 7 additions & 7 deletions maintainer-tools/README
Expand Up @@ -9,34 +9,34 @@ This directory contains various maintainer scripts for the Horde distribution.

Script Index
~~~~~~~~~~~~
horde-build-snaps.php
horde-build-snaps
Builds the nightly snapshots for all Git modules and selected
FRAMEWORK_3 modules.

horde-build-website-docs.sh
Converts reST documentation into HTML for the website.

horde-ckeditor.php
horde-ckeditor
Updates CKeditor for packaging with Horde.

horde-compress-jpgs.php
horde-compress-jpgs
Optimizes JPEG images to reduce their size as much as possible.

horde-compress-pngs.php
horde-compress-pngs
Optimizes PNG images to reduce their size as much as possible.

horde-js-compress.php
horde-js-compress
Runs the YUI compressor or other alternatives on all .js files in the
current directory, writing them to a compressed file in the parent
directory.

horde-update-ISO3166-countries.php
horde-update-ISO3166-countries
Fetch the current ISO-3166 country definitions to update Horde's
country list file in horde/lib/NLS/countries.php.

jsmin/
This directory contains the jsmin tool for minifying JavaScript source.
jsmin is used as a fallback from horde-js-compress.php.
jsmin is used as a fallback from horde-js-compress.

mime_mapping/
This script converts an Apache-style mime.types file into a
Expand Down
File renamed without changes.
Expand Up @@ -2,11 +2,11 @@
/**
* Ckeditor copy script - copies files used for Horde.
*
* Usage: horde-ckeditor.php -a [advpng binary]
* -d [destination (horde/Editor base)]
* -o [optipng binary]
* -p [pngout binary]
* -s [source]
* Usage: horde-ckeditor -a [advpng binary]
* -d [destination (horde/Editor base)]
* -o [optipng binary]
* -p [pngout binary]
* -s [source]
*
* Copyright 1999-2012 The Horde Project (http://www.horde.org/)
*
Expand Down
Expand Up @@ -6,10 +6,10 @@
*
* Jpegtran binary from the standard libjpeg library (http://ijg.org).
*
* Usage: horde-compress-jpgs.php -d [directory]
* -j [jpegtran binary]
* Usage: horde-compress-jpgs -d [directory]
* -j [jpegtran binary]
*
* Copyright 2011 The Horde Project (http://www.horde.org/)
* Copyright 2011-2013 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (LGPL). If you
* did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
Expand Down
Expand Up @@ -4,11 +4,11 @@
* Script to recursively find all PNG's in a directory and attempt to max
* compress them.
*
* Usage: horde-compress-pngs.php -a [advpng binary]
* -d [directory]
* -o [optipng binary]
* -p [pngout binary]
* -z [zopflipng binary -- OPTIONAL]
* Usage: horde-compress-pngs -a [advpng binary]
* -d [directory]
* -o [optipng binary]
* -p [pngout binary]
* -z [zopflipng binary -- OPTIONAL]
*
* ZopfliPNG = https://code.google.com/p/zopfli/
*
Expand Down
Expand Up @@ -3,9 +3,9 @@
/**
* Compress JavaScript file(s).
*
* Usage: horde-js-compress.php [--file=filename] [--noyui] [--noshrinksafe]
* [--nojsmin] [--noeolstrip] [--overwrite]
* [--debug] [file1] [file2] [file3] ...
* Usage: horde-js-compress [--file=filename] [--noyui] [--noshrinksafe]
* [--nojsmin] [--noeolstrip] [--overwrite]
* [--debug] [file1] [file2] [file3] ...
*
* By default, all files in the current working directory are compressed.
*
Expand Down
10 changes: 5 additions & 5 deletions maintainer-tools/package.xml
Expand Up @@ -35,20 +35,20 @@ http://pear.php.net/dtd/package-2.0.xsd">
</notes>
<contents>
<dir name="/">
<file name="horde-build-snaps.php" role="script">
<file name="horde-build-snaps" role="script">
<tasks:replace from="@php_bin@" to="php_bin" type="pear-config"/>
</file>
<file name="horde-build-website-docs.sh" role="script"/>
<file name="horde-ckeditor.php" role="script">
<file name="horde-ckeditor" role="script">
<tasks:replace from="@php_bin@" to="php_bin" type="pear-config"/>
</file>
<file name="horde-compress-jpgs.php" role="script">
<file name="horde-compress-jpgs" role="script">
<tasks:replace from="@php_bin@" to="php_bin" type="pear-config"/>
</file>
<file name="horde-compress-pngs.php" role="script">
<file name="horde-compress-pngs" role="script">
<tasks:replace from="@php_bin@" to="php_bin" type="pear-config"/>
</file>
<file name="horde-js-compress.php" role="script">
<file name="horde-js-compress" role="script">
<tasks:replace from="@php_bin@" to="php_bin" type="pear-config"/>
</file>
<file name="horde-patch-config.sh" role="script"/>
Expand Down

0 comments on commit f0783a1

Please sign in to comment.