-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* general program maintenance * fixed a problem recognizing the correct output filter * added icon.png (BlackCat CMS) and tool_icon.png (WebsiteBaker 2.8.4)
- Loading branch information
Showing
28 changed files
with
47 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,12 @@ | |
Ralf Hertsch, Stockholmer Str. 31, 13359 Berlin (Germany) | ||
http://phpManufaktur.de - [email protected] | ||
|
||
Release 0.55 - 2013-11-24 | ||
|
||
* general program maintenance | ||
* fixed a problem recognizing the correct output filter | ||
* added icon.png (BlackCat CMS) and tool_icon.png (WebsiteBaker 2.8.4) | ||
|
||
Release 0.54 - 2013-10-29 | ||
|
||
* Fixed precheck.php for use with BlackCat CMS v1.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
**Copyright (c) 2013 by Ralf Hertsch** | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies | ||
of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
|
||
*The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.* | ||
|
||
**THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
* | ||
* @author Ralf Hertsch <[email protected]> | ||
* @link http://phpmanufaktur.de | ||
* @copyright 2008-2012 | ||
* @copyright 2008-2013 | ||
* @license MIT License (MIT) http://www.opensource.org/licenses/MIT | ||
*/ | ||
|
||
|
@@ -110,6 +110,8 @@ textarea | |
color: #000000; | ||
background-color: transparent; | ||
font-size: 9pt; | ||
margin: 0; | ||
padding: 5px; | ||
} | ||
.small | ||
{ | ||
|
@@ -159,4 +161,4 @@ td.copyright_hint { | |
td.tweak_page_id { | ||
text-align: right; | ||
color: maroon; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
* | ||
* @author Ralf Hertsch <[email protected]> | ||
* @link http://phpmanufaktur.de | ||
* @copyright 2008-2012 | ||
* @copyright 2008-2013 | ||
* @license MIT License (MIT) http://www.opensource.org/licenses/MIT | ||
*/ | ||
|
||
|
@@ -40,9 +40,10 @@ | |
|
||
require_once (WB_PATH . '/framework/functions.php'); | ||
|
||
function tweakImages($content) { | ||
function tweakImages(&$content) { | ||
$tweak = new processContent(); | ||
return $tweak->exec($content); | ||
$content = $tweak->exec($content); | ||
return $content; | ||
} // tweakImages() | ||
|
||
|
||
|
@@ -651,4 +652,4 @@ private function checkImage(&$image, &$classes = array()) { | |
} // checkImage() | ||
|
||
|
||
} // class processContent | ||
} // class processContent |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
* | ||
* @author Ralf Hertsch <[email protected]> | ||
* @link http://phpmanufaktur.de | ||
* @copyright 2008-2012 | ||
* @copyright 2008-2013 | ||
* @license MIT License (MIT) http://www.opensource.org/licenses/MIT | ||
*/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
* | ||
* @author Ralf Hertsch <[email protected]> | ||
* @link http://phpmanufaktur.de | ||
* @copyright 2008-2012 | ||
* @copyright 2008-2013 | ||
* @license MIT License (MIT) http://www.opensource.org/licenses/MIT | ||
*/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
* | ||
* @author Ralf Hertsch <[email protected]> | ||
* @link http://phpmanufaktur.de | ||
* @copyright 2008-2012 | ||
* @copyright 2008-2013 | ||
* @license MIT License (MIT) http://www.opensource.org/licenses/MIT | ||
*/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
* | ||
* @author Ralf Hertsch <[email protected]> | ||
* @link http://phpmanufaktur.de | ||
* @copyright 2008-2012 | ||
* @copyright 2008-2013 | ||
* @license MIT License (MIT) http://www.opensource.org/licenses/MIT | ||
*/ | ||
// load the image_tweak.jquery preset with LibraryAdmin | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
* | ||
* @author Ralf Hertsch <[email protected]> | ||
* @link http://phpmanufaktur.de | ||
* @copyright 2008-2012 | ||
* @copyright 2008-2013 | ||
* @license MIT License (MIT) http://www.opensource.org/licenses/MIT | ||
*/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
* | ||
* @author Ralf Hertsch <[email protected]> | ||
* @link http://phpmanufaktur.de | ||
* @copyright 2008-2012 | ||
* @copyright 2008-2013 | ||
* @license MIT License (MIT) http://www.opensource.org/licenses/MIT | ||
* | ||
* Please consult the Dwoo Documentation & WIKI to get further informations | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
* | ||
* @author Ralf Hertsch <[email protected]> | ||
* @link http://phpmanufaktur.de | ||
* @copyright 2008-2012 | ||
* @copyright 2008-2013 | ||
* @license MIT License (MIT) http://www.opensource.org/licenses/MIT | ||
*/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
* | ||
* @author Ralf Hertsch <[email protected]> | ||
* @link http://phpmanufaktur.de | ||
* @copyright 2008-2012 | ||
* @copyright 2008-2013 | ||
* @license MIT License (MIT) http://www.opensource.org/licenses/MIT | ||
*/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
* | ||
* @author Ralf Hertsch <[email protected]> | ||
* @link http://phpmanufaktur.de | ||
* @copyright 2008-2012 | ||
* @copyright 2008-2013 | ||
* @license MIT License (MIT) http://www.opensource.org/licenses/MIT | ||
*/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
* | ||
* @author Ralf Hertsch <[email protected]> | ||
* @link http://phpmanufaktur.de | ||
* @copyright 2008-2012 | ||
* @copyright 2008-2013 | ||
* @license MIT License (MIT) http://www.opensource.org/licenses/MIT | ||
*/ | ||
|
||
|
@@ -34,13 +34,11 @@ | |
$module_directory = 'image_tweak'; | ||
$module_name = 'imageTweak'; | ||
$module_function = 'tool'; | ||
$module_version = '0.54'; | ||
$module_version = '0.55'; | ||
$module_status = 'Stable'; | ||
$module_platform = '2.8'; | ||
$module_author = 'Ralf Hertsch, Berlin (Germany)'; | ||
$module_license = 'GNU General Public License'; | ||
$module_license = 'MIT License (MIT)'; | ||
$module_description = 'Check images on the fly and reduce image size to a tweaked level'; | ||
$module_home = 'http://phpmanufaktur.de/image_tweak'; | ||
$module_guid = '3324A352-5244-4FCD-AC45-EB5E216A1F48'; | ||
|
||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
* | ||
* @author Ralf Hertsch <[email protected]> | ||
* @link http://phpmanufaktur.de | ||
* @copyright 2008-2012 | ||
* @copyright 2008-2013 | ||
* @license MIT License (MIT) http://www.opensource.org/licenses/MIT | ||
*/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
* | ||
* @author Ralf Hertsch <[email protected]> | ||
* @link http://phpmanufaktur.de | ||
* @copyright 2008-2012 | ||
* @copyright 2008-2013 | ||
* @license MIT License (MIT) http://www.opensource.org/licenses/MIT | ||
*/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
* | ||
* @author Ralf Hertsch <[email protected]> | ||
* @link http://phpmanufaktur.de | ||
* @copyright 2008-2012 | ||
* @copyright 2008-2013 | ||
* @license MIT License (MIT) http://www.opensource.org/licenses/MIT | ||
*/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
* | ||
* @author Ralf Hertsch <[email protected]> | ||
* @link http://phpmanufaktur.de | ||
* @copyright 2008-2012 | ||
* @copyright 2008-2013 | ||
* @license MIT License (MIT) http://www.opensource.org/licenses/MIT | ||
*/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
* | ||
* @author Ralf Hertsch <[email protected]> | ||
* @link http://phpmanufaktur.de | ||
* @copyright 2008-2012 | ||
* @copyright 2008-2013 | ||
* @license MIT License (MIT) http://www.opensource.org/licenses/MIT | ||
*/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
* | ||
* @author Ralf Hertsch <[email protected]> | ||
* @link http://phpmanufaktur.de | ||
* @copyright 2008-2012 | ||
* @copyright 2008-2013 | ||
* @license MIT License (MIT) http://www.opensource.org/licenses/MIT | ||
*/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
* | ||
* @author Ralf Hertsch <[email protected]> | ||
* @link http://phpmanufaktur.de | ||
* @copyright 2008-2012 | ||
* @copyright 2008-2013 | ||
* @license MIT License (MIT) http://www.opensource.org/licenses/MIT | ||
*/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
* | ||
* @author Ralf Hertsch <[email protected]> | ||
* @link http://phpmanufaktur.de | ||
* @copyright 2008-2012 | ||
* @copyright 2008-2013 | ||
* @license MIT License (MIT) http://www.opensource.org/licenses/MIT | ||
*/ | ||
|
||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
* | ||
* @author Ralf Hertsch <[email protected]> | ||
* @link http://phpmanufaktur.de | ||
* @copyright 2008-2012 | ||
* @copyright 2008-2013 | ||
* @license MIT License (MIT) http://www.opensource.org/licenses/MIT | ||
*/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
* | ||
* @author Ralf Hertsch <[email protected]> | ||
* @link http://phpmanufaktur.de | ||
* @copyright 2008-2012 | ||
* @copyright 2008-2013 | ||
* @license MIT License (MIT) http://www.opensource.org/licenses/MIT | ||
*/ | ||
|
||
|