Changeset 270
- Timestamp:
- 07/17/05 05:38:12 (8 years ago)
- Location:
- trunk/plugins
- Files:
-
- 6 modified
-
HtmlTidy/html-tidy-logic.php (modified) (2 diffs)
-
ImageManager/backend.php (modified) (1 diff)
-
ImageManager/ddt.php (modified) (1 diff)
-
ImageManager/editor.php (modified) (1 diff)
-
ImageManager/editorFrame.php (modified) (1 diff)
-
ImageManager/images.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/plugins/HtmlTidy/html-tidy-logic.php
r40 r270 1 <? ###################################################################2 ##3 ## Plugin for htmlArea, to run code through the server's HTML Tidy4 ## By Adam Wright, for The University of Western Australia1 <?php 2 ## 3 ## Plugin for htmlArea, to run code through the server's HTML Tidy 4 ## By Adam Wright, for The University of Western Australia 5 5 ## This is the server-side script, which dirty code is run through. 6 6 ## … … 61 61 ?> 62 62 var ns=""; 63 <? =$jsMakeSrc?>63 <?php $jsMakeSrc; ?> 64 64 editor.setHTML(ns); -
trunk/plugins/ImageManager/backend.php
r256 r270 1 <? 2 1 <?php 3 2 /** 4 3 * Unified backend for ImageManager -
trunk/plugins/ImageManager/ddt.php
r43 r270 1 <? 2 3 1 <?php 4 2 /* 5 3 This ddt library is released under the terms of the HTMLArea license. -
trunk/plugins/ImageManager/editor.php
r205 r270 1 <? 1 <?php 2 2 /** 3 3 * The PHP Image Editor user interface. -
trunk/plugins/ImageManager/editorFrame.php
r256 r270 1 <? 2 1 <?php 3 2 /** 4 3 * The frame that contains the image to be edited. -
trunk/plugins/ImageManager/images.php
r256 r270 1 <? 1 <?php 2 2 /** 3 3 * Show a list of images in a long horizontal table. … … 61 61 ?> 62 62 <div class="thumb_holder" id="holder_<?php echo asc2hex($entry) ?>"> 63 <a href="#" class="thumb" style="cursor: pointer;" onclick="selectImage('<? echo $file['relative'];?>', '<? echo $entry; ?>', <? echo $file['image'][0];?>, <?echo $file['image'][1]; ?>);return false;" title="<?php echo $entry; ?> - <?php echo Files::formatSize($file['stat']['size']); ?>">63 <a href="#" class="thumb" style="cursor: pointer;" onclick="selectImage('<?php echo $file['relative'];?>', '<?php echo $entry; ?>', <?php echo $file['image'][0];?>, <?php echo $file['image'][1]; ?>);return false;" title="<?php echo $entry; ?> - <?php echo Files::formatSize($file['stat']['size']); ?>"> 64 64 <img src="<?php print $manager->getThumbnail($file['relative']); ?>" alt="<?php echo $entry; ?> - <?php echo Files::formatSize($file['stat']['size']); ?>"/> 65 65 </a> … … 107 107 ?> 108 108 <div class="noResult">No Images Found</div> 109 <? 109 <?php 110 110 } 111 111 … … 117 117 ?> 118 118 <div class="error"><span>Invalid base directory:</span> <?php echo $manager->config['images_dir']; ?></div> 119 <? 119 <?php 120 120 } 121 121
