Changeset 20791 for gsdl/trunk/perllib/plugins/HTMLPlugin.pm
- Timestamp:
- 2009-10-07T15:54:37+13:00 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
gsdl/trunk/perllib/plugins/HTMLPlugin.pm
r20778 r20791 114 114 { 'name' => "old_style_HDL", 115 115 'desc' => "{HTMLPlugin.old_style_HDL}", 116 'type' => "flag"} 116 'type' => "flag"}, 117 {'name' => "processing_tmp_files", 118 'desc' => "{BasePlugin.processing_tmp_files}", 119 'type' => "flag", 120 'hiddengli' => "yes"} 117 121 ]; 118 122 … … 147 151 # may want to use (?i)\.(gif|jpe?g|jpe|png|css|js(?:@.*)?)$ 148 152 # if have eg <script language="javascript" src="img/lib.js@123"> 153 # blocking is now done by reading through the file and recording all the 154 # images and other files 149 155 sub get_default_block_exp { 150 156 my $self = shift (@_); … … 758 764 } 759 765 # add the original image file as a source file 760 $doc_obj->associate_source_file($filename); 766 if (!$self->{'processing_tmp_files'} ) { 767 $doc_obj->associate_source_file($filename); 768 } 761 769 if ($self->{'rename_assoc_files'}) { 762 770 if (defined $self->{'aux_files'}->{$href}) {
Note:
See TracChangeset
for help on using the changeset viewer.