Changeset 7668 in josm
- Timestamp:
- 2014-10-29T15:24:07+01:00 (10 years ago)
- Location:
- trunk
- Files:
-
- 3 added
- 29 deleted
- 978 edited
- 11 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/geticons.pl
r7196 r7668 29 29 while(my $l = <FILE>) 30 30 { 31 next if $l =~ /NO-ICON/; 31 32 if($l =~ /src\s*=\s*["'](.*?)["']/) 32 33 { … … 51 52 { 52 53 my $i = $1; 53 $i .= ".png" if !($i =~ /\.png$/);54 54 ++$icons{$i}; 55 55 } … … 57 57 { 58 58 my $i = $1; 59 $i .= ".png" if !($i =~ /\.png$/);60 59 ++$icons{$i}; 61 60 } … … 63 62 { 64 63 my $i = "$1$2"; 65 $i .= ".png" if !($i =~ /\.png$/);66 64 ++$icons{$i}; 67 65 } … … 69 67 { 70 68 my $i = "statusline/$1"; 71 $i .= ".png" if !($i =~ /\.png$/);72 69 ++$icons{$i}; 73 70 } … … 75 72 { 76 73 my $i = "preferences/$1"; 77 $i .= ".png" if !($i =~ /\.png$/);78 74 ++$icons{$i}; 79 75 } … … 81 77 { 82 78 my $i = "$1/$2"; 83 $i .= ".png" if !($i =~ /\.png$/);84 79 ++$icons{$i}; 85 80 } … … 87 82 { 88 83 my $i = $1; 89 $i .= ".png" if !($i =~ /\.png$/);90 84 ++$icons{$i}; 91 85 } … … 93 87 { 94 88 my $i = "cursor/modifier/$2"; 95 $i .= ".png" if !($i =~ /\.png$/);96 89 ++$icons{$i}; 97 90 $i = "cursor/$1"; 98 $i .= ".png" if !($i =~ /\.png$/);99 91 ++$icons{$i}; 100 92 } … … 102 94 { 103 95 my $i = "cursor/$1"; 104 $i .= ".png" if !($i =~ /\.png$/);105 96 ++$icons{$i}; 106 97 } … … 108 99 { 109 100 my $i = "dialogs/$1"; 110 $i .= ".png" if !($i =~ /\.png$/);111 101 ++$icons{$i}; 112 102 } … … 114 104 { 115 105 my $i = "$extends$1"; 116 $i .= ".png" if !($i =~ /\.png$/);117 106 ++$icons{$i}; 118 107 } … … 120 109 { 121 110 my $i = "$extends$1"; 122 $i .= ".png" if !($i =~ /\.png$/);123 111 ++$icons{$i}; 124 112 } … … 126 114 { 127 115 my $i = "markers/$1"; 128 $i .= ".png" if !($i =~ /\.png$/);129 116 ++$icons{$i}; 130 117 } … … 132 119 { 133 120 my $i = "markers/$1"; 134 $i .= ".png" if !($i =~ /\.png$/);135 121 ++$icons{$i}; 136 }137 if($l =~ /allowedtypes\s+=.*\{(.*)\}/s)138 {139 my $t = $1;140 while($t =~ /\"(.*?)\"/g)141 {142 ++$icons{"Mf_$1.png"};143 }144 }145 if($l =~ /MODES\s+=.*\{(.*)\}/s)146 {147 my $t = $1;148 while($t =~ /\"(.*?)\"/g)149 {150 ++$icons{"dialogs/autoscale/$1.png"};151 }152 }153 if($l =~ /enum\s+DeleteMode\s*\{(.*)/s)154 {155 my $t = $1;156 while($t =~ /\"(.*?)\"/g)157 {158 ++$icons{"cursor/modifier/$1.png"};159 }160 122 } 161 123 if($l =~ /\.setButtonIcons.*\{(.*)\}/) … … 165 127 { 166 128 my $i = $1; 167 $i .= ".png" if !($i =~ /\.png$/);168 129 ++$icons{$i}; 169 130 } … … 173 134 $extends = "mapmode/"; 174 135 } 175 if($l =~ /extends ToggleDialog/) 136 elsif($l =~ /extends ToggleDialog/) 176 137 { 177 138 $extends = "dialogs/"; … … 184 145 my %haveicons; 185 146 186 for($i = 1; my @ifiles = glob("images".("/*" x $i).".png"); ++$i) 147 for($i = 1; my @ifiles = (glob("images".("/*" x $i).".png"), glob("images".("/*" x $i).".svg")); ++$i) 187 148 { 188 149 for my $ifile (sort @ifiles) … … 195 156 for my $img (sort keys %icons) 196 157 { 197 print STDERR "File $img does not exist!\n" if(!-f "images/$img"); 198 delete $haveicons{$img}; 158 if($img =~ /\.(png|svg)/) 159 { 160 print STDERR "File $img does not exist!\n" if(!-f "images/$img"); 161 delete $haveicons{$img}; 162 } 163 else 164 { 165 print STDERR "File $img(.svg|.png) does not exist!\n" if(!-f "images/$img.png" && !-f "images/$img.svg"); 166 delete $haveicons{"$img.svg"}; 167 delete $haveicons{"$img.png"}; 168 } 199 169 } 200 170 -
trunk/images/Mf_closedway.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/Mf_node.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/Mf_relation.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/Mf_way.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/OLmarker.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/about.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/addmarkers.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/addnode.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/aligncircle.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/alignline.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/anglesnap.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/apply.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/audio-back.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/audio-faster.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/audio-fwd.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/audio-next.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/audio-playpause.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/audio-prev.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/audio-slower.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/audio-sync.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/bug.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/cancel.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/clock.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/closechangeset.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/colorchooser.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/combineway.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/converttogpx.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/converttoosm.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/copy.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/cursor/crosshair.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/cursor/modifier/addnode.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/cursor/modifier/create_note.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/cursor/modifier/delete.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/cursor/modifier/delete_node.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/cursor/modifier/delete_segment.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/cursor/modifier/delete_way_node_only.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/cursor/modifier/delete_way_normal.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/cursor/modifier/delete_way_only.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/cursor/modifier/joinnode.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/cursor/modifier/joinway.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/cursor/modifier/move.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/cursor/modifier/parallel.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/cursor/modifier/rectangle.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/cursor/modifier/rectangle_move.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/cursor/modifier/rectangle_plus.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/cursor/modifier/rectangle_plussmall.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/cursor/modifier/select_add.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/cursor/modifier/select_node.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/cursor/modifier/select_node_add.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/cursor/modifier/select_node_remove.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/cursor/modifier/select_remove.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/cursor/modifier/select_way.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/cursor/modifier/select_way_add.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/cursor/modifier/select_way_remove.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/cursor/modifier/selection.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/cursor/modifier/zoom.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/cursor/normal.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/cursor/rotate.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/cursor/scale.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/data/changeset.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/data/closedway.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/data/error.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/data/key.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/data/multipolygon.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/data/node.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/data/object.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/data/other.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/data/projection/Departements_Lambert4Zones.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/data/projection/LambertCC9Zones.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/data/purge.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/data/relation.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/data/sequence.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/data/warning.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/data/way.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/activate.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/add.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/addrelation.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/autoscale/conflict.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/autoscale/data.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/autoscale/download.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/autoscale/layer.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/autoscale/next.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/autoscale/previous.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/autoscale/problem.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/autoscale/selection.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/bookmark-new.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/bookmark.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/centreview.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/changeset/changesetmanager.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/changeset/downloadchangeset.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/changeset/downloadchangesetcontent.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/changeset/updatechangeset.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/changeset/updatechangesetcontent.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/changesetdialog.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/collapse.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/commandstack.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/conflict.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/conflict/copyaftercurrentleft.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/conflict/copyaftercurrentright.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/conflict/copybeforecurrentleft.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/conflict/copybeforecurrentright.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/conflict/copyendleft.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/conflict/copyendright.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/conflict/copystartleft.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/conflict/copystartright.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/conflict/mergeincomplete.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/conflict/movedown.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/conflict/moveup.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/conflict/remove.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/conflict/tagconflictresolved.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/conflict/tagconflictunresolved.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/conflict/tagkeepmine.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/conflict/tagkeeptheir.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/conflict/tagundecide.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/conflict/useallleft.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/conflict/useallright.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/delete.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/down.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/downloadincomplete.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/duplicatelayer.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/edit.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/filter.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/fix.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/geoimage.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/geoimage/deletefromdisk.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/geoimage/gpx2img.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/geoimage/photo-marker-selected.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/geoimage/photo-marker.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/history.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/layerlist.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/layerlist/active-pressed.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/layerlist/active.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/layerlist/blank.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/layerlist/eye-off.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/layerlist/eye-pressed.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/layerlist/eye-translucent.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/layerlist/eye.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/layerlist/transparency.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/mappaint/error_small.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/mappaint/josm_small.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/mappaint/pencil.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/mappaint/pl2_small.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/mappaint/wireframe_small.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/mappaintpreference.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/mapstyle.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/mergedown.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/movedown.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/moveup.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/next.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/notes/note_closed.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/notes/note_comment.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/notes/note_new.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/notes/note_open.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/pin.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/previous.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/propertiesdialog.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/refresh.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/relation/arrowdown.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/relation/arrowup.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/relation/deletemembers.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/relation/downloadincomplete.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/relation/downloadincompleteselected.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/relation/reverse.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/relation/roundabout_left_tiny.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/relation/roundabout_right_tiny.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/relation/roundedcorners.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/relation/selectmembers.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/relation/selectprimitives.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/relationlist.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/search.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/select.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/selectionlist.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/settings.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/showhide.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/sort.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/up.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/uploadproperties.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/userlist.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/valid.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/validator.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/zoom-best-fit.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/zoomin.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/dialogs/zoomout.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/distribute.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/download.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/downloadalongtrack.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/downloadprimitive.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/duplicate.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/exit.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/expert.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/exportgpx.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/eye.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/followline.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/gps-lines.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/help.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/help/home.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/help/internet.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/help/next.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/help/previous.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/accommodation_alpinehut.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/accommodation_bed_and_breakfast.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/accommodation_camping.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/accommodation_caravan_park.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/accommodation_chalet.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/accommodation_hotel.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/accommodation_motel.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/accommodation_shelter2.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/accommodation_youth_hostel.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/amenity_bench.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/amenity_firestation2.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/amenity_fountain2.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/amenity_library.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/amenity_playground.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/amenity_police2.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/amenity_post_box.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/amenity_post_office.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/amenity_recycling.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/amenity_toilets.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/amenity_town_hall.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/amenity_waste_bin.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/barrier_blocks.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/barrier_bollard.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/barrier_cattle_grid.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/barrier_cycle_barrier.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/barrier_gate.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/barrier_kissing_gate.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/barrier_lift_gate.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/barrier_stile.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/barrier_toll_booth.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/cattle_grid.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/education_nursery3.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/education_school.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/emergency-telephone-16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/emergency_hydrant.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/food_bar.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/food_cafe.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/food_drinkingtap.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/food_fastfood.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/food_nightclub.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/food_pub.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/food_restaurant.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/health_hospital.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/health_pharmacy.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/health_veterinary.n.8E7409.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/manmade_lighthouse.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/manmade_tower.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/money_atm.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/money_bank2.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/office_blue.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/office_pink.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/place.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/place_of_worship_unknown.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/power_station.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/power_substation.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/power_tower_high2.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/power_tower_low.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/shopping_alcohol.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/shopping_bakery.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/shopping_bicycle.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/shopping_book.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/shopping_butcher.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/shopping_car.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/shopping_car_repair.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/shopping_clothes.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/shopping_confectionery.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/shopping_convenience.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/shopping_department_store.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/shopping_diy.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/shopping_fish.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/shopping_florist.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/shopping_garden_centre.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/shopping_gift.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/shopping_greengrocer.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/shopping_hairdresser.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/shopping_hifi.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/shopping_jewelry.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/shopping_kiosk.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/shopping_laundrette.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/shopping_marketplace.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/shopping_motorcycle.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/shopping_music.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/shopping_supermarket.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/shopping_toys.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/shopping_vending_machine.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/sport_leisure_centre.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/sport_shooting.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/sport_swimming_outdoor.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/telephone.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/tourist_archaeological.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/tourist_art_gallery2.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/tourist_battlefield.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/tourist_castle.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/tourist_cinema.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/tourist_information.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/tourist_memorial.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/tourist_monument.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/tourist_museum.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/tourist_picnic.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/tourist_ruin.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/tourist_theatre.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/tourist_theme_park.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/tourist_view_point.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/tourist_zoo.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/transport_aerodrome.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/transport_airport_gate.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/transport_airport_terminal.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/transport_bus_station.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/transport_bus_stop2.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/transport_car_wash.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/transport_fuel.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/transport_helicopter_pad.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/transport_marina.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/transport_miniroundabout_anticlockwise.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/transport_parking_bicycle.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/transport_parking_car.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/transport_port.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/transport_rental_bicycle.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/transport_rental_car.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/transport_taxi_rank.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/transport_train_station.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/transport_tram_stop.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/transport_weir.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/icons/transport_zebracrossing.n.16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/imagery_menu.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/imagery_small.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/importaudio.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/info.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/java.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/joinareas.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/joinnodeway.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/layer-switcher-maximize.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/layer-switcher-minimize.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/layer/gpx_small.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/layer/marker_small.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/layer/osmdata_small.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/layer/validator_small.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/logo.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/logo_16x16x32.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/logo_16x16x8.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/logo_32x32x32.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/logo_32x32x8.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/logo_48x48x32.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/logo_48x48x8.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/mapmode/addnote.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/mapmode/addsegment.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/mapmode/adjustimg.png
-
Property svn:mime-type
set to
image/png
-
Property svn:mime-type
set to
-
trunk/images/mapmode/delete.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/mapmode/extrude/dualalign.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/mapmode/extrude/extrude.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/mapmode/move/move.png
-
Property svn:mime-type
set to
image/png
-
Property svn:mime-type
set to
-
trunk/images/mapmode/node/autonode.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/mapmode/parallel.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/mapmode/playheaddrag.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/mapmode/zoom.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/markers/audio-tracer.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/markers/photo.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/markers/speech.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/markers/web.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/mergenodes.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/mirror.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/misc/black_x.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/misc/buttonhide.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/misc/buttonshow.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/misc/close.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/misc/error.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/misc/green_check.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/misc/minimized.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/misc/normal.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/misc/rectangle.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/misc/showhide.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/misc/sticky.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/movenode.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/movenodeontoway.png
-
Property svn:mime-type
set to
image/png
-
Property svn:mime-type
set to
-
trunk/images/multipoly_create.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/new.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/oauth/oauth-logo.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/oauth/oauth.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/ok.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/open.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/openlocation.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/openrecent.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/ortho.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/paste.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/pastetags.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/preference.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/preferences/activate-down.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/preferences/activate-right.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/preferences/advanced.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/preferences/audio.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/preferences/connection.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/preferences/display.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/preferences/imagery.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/preferences/map.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/preferences/plugin.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/preferences/remotecontrol.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/preferences/reset.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/preferences/separator.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/preferences/shortcuts.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/preferences/toolbar.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/preferences/validator.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/Hockey.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/JusticeScales.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/State_Public.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/State_Tourist.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/Stop.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/addresses.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/adit.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/aed.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images/presets/aerialway.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/aerialway_station.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/aeroway_gate.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/apple.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/apron.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/arts_centre.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/athletics.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/baby_hatch.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/baker.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/bar.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/barrier.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/baseball.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/basketball.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/battlefield.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/bay.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/bbq.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/beach.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/beachvolleyball.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/bed.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/bench.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/bicycle_rental.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/bicycle_road.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images/presets/biergarten.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/bike.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/board.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/boatyard.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/bollard.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/book.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/boule.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/boundaries.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/boutique.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/bridge.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/bridge_movable.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/bus.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/bus_small.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/busway.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/cable_car.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/cafe.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/canoe.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/car.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/car_rental.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/car_repair.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/car_sharing.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/car_wash.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/caravan2.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/cattle_grid.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/cave_entrance.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/cemetery.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/chair_lift.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/chimney.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/cinema.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/city_wall.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/citylimit.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/cliff.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/coastline.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/community_centre.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/confectionery.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/construction.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/contact.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/convenience.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/copyshop.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/cow.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/crane.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/cricket.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/crossing.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/curtain.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/cycleway.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/cycling.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/dam.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/deli.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/diy_store.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/dogpark.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/dollar.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/douane.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/drag_lift.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/drinking_water.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/embassy.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/empty.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/equestrian.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/erotic.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/fabric.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/fastfood.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/fence.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/ferry.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/fire_hydrant.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/firebrigade.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/fishing.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/flag.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/foot_and_cycleway_combined.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/foot_and_cycleway_segregated.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/football.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/footway.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/ford.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/frame.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/fruits.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/fuel.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/garages.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/gasometer.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/gate.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/glacier.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/golf.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/goods.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/graveyard.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/greengrocer.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/greenhouse_horticulture.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/groyne.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/guidepost.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/gymnastics.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/hangar.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/hardware.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/hearing_aids.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/hedge.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/hostel.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/hunting_stand.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/information.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/informationoffice.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/interpolation.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/island.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/islet.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/karting.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/kindergarten.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/kiosk.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/kitchen.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/landuse.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/landuse_water.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/laundry.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/level_crossing.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/lift_gate.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/living_street.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/locality.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/lock_gate.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/lottery.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images/presets/map.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/marina.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/memorial.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/military.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/mine.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/mineshaft.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/mobile_phone.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/monitoring_station.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/monument.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/motorbike.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/motorway.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/motorway_exit.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/mountain_pass.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/mud.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/multipolygon.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/musical_instrument.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/network-wireless.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images/presets/paint.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/palaeontological_site.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/parking.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/passingplace.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/path.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/pawnbroker.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images/presets/peak.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images/presets/pedestrian.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/pelota.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/pharmacy.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/picnic.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/pier.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/pitch.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/places.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/plane.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/platform_bus.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/platform_rail.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/power.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/power_source-biofuel.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images/presets/power_source-coal.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images/presets/power_source-gas.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images/presets/power_source-nuclear.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images/presets/power_source-oil.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images/presets/power_source-sun.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images/presets/power_source-waste.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images/presets/power_source-water.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images/presets/power_source-wind.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images/presets/power_tower.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/present.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images/presets/prison.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/pub.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/racquetball.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/rail_light.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/rail_preserved.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/railway.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/railway_switch.png
-
Property svn:mime-type
set to
image/png
-
Property svn:mime-type
set to
-
trunk/images/presets/range.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/recycling.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/relations.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/reservoir_covered.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/residential.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/restaurant.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/restrictions.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/retaining_wall.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/river.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/roundabout.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/roundabout_left.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/rowing.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/ruins.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/runway.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/saddle.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images/presets/safety_training.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/sauna.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/school.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/scrub.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images/presets/seafood.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/shelter.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/sightseeing.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/skating.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/skiing_downhill.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/soccer.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/speed_camera.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/sports_centre.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/spring.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/stadium.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/station.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/stationery.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/steps.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/stile.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/studio.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/surveillance.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/survey_point.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/swimming.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/swing_gate.png
-
Property svn:mime-type
set to
image/png
-
Property svn:mime-type
set to
-
trunk/images/presets/table_tennis.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/taxi.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/taxiway.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/telephone.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/tennis.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/tent.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/theater.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/theme_park.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/toilet.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/toll_station.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/tower.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/townhall.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/track1.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/traffic-light.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/tram.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/travel.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/tree.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/trunk.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/tunnel.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/turning.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/turntable.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/tyres.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/underground.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/vacuum_cleaner.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/variety_store.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/vending_machine.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/viewpoint.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/volcano.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/wall.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/wastewater_plant.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/water.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/water_tower.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/water_well.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/water_works.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/waterfall.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/waterway.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/way_primary.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/way_secondary.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/way_tertiary.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/way_unclassified.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/waypoints.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/wayside_cross.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/wayside_shrine.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/weir.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/windmill.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/works.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/presets/zoo.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/purge.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/redo.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/reorder.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/restart.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/save.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/save_as.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/selectall.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/session.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/simplify.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/splitway.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/statusline/angle.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/statusline/dist.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/statusline/heading.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/statusline/lat.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/statusline/lon.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/statusline/name.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/svpDown.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/svpLeft.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/svpRight.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/svpUp.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/undo.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/unglueways.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/unselectall.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/updatedata.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/upload.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/uploadselection.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/view-fullscreen-revert.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/view-fullscreen.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/viewport-follow.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/warning-small.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images/way-select.png
-
Property svn:mime-type
set to
image/png
-
Property svn:mime-type
set to
-
trunk/images/wayflip.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/activate.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images_nodist/addarea.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/addselected.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/addway.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/alternatives/closedway1.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/alternatives/closedway2.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/alternatives/relation2.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/audio-pause.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/changeset.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images_nodist/changesetdialog.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images_nodist/changesetmanager.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images_nodist/closechangeset.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images_nodist/condiscon.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/connectosm.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/copyaftercurrentleft.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images_nodist/copyaftercurrentright.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images_nodist/copybeforecurrentleft.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images_nodist/copybeforecurrentright.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images_nodist/copyendleft.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images_nodist/copyendright.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images_nodist/copystartleft.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images_nodist/copystartright.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images_nodist/cursor/modifier/segment.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/cursor/modifier/way.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/deleted.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/deletemembers.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images_nodist/dialogs/autoscale/next.xcf
-
Property svn:mime-type
changed from
application/octet-stream
toimage/x-xcf
-
Property svn:mime-type
changed from
-
trunk/images_nodist/dialogs/autoscale/previous.xcf
-
Property svn:mime-type
changed from
application/octet-stream
toimage/x-xcf
-
Property svn:mime-type
changed from
-
trunk/images_nodist/dialogs/collapse.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images_nodist/dialogs/conflict/mergecomplete.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/dialogs/filter.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/dialogs/geoimage.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/dialogs/mapstyle.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images_nodist/dialogs/propertiesdialog.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images_nodist/dialogs/wireframe.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images_nodist/downloadchangeset.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images_nodist/downloadchangesetcontent.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images_nodist/downloadincomplete.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images_nodist/downloadincompleteselected.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images_nodist/downloadprimitive.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images_nodist/empty.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/error.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images_nodist/expert.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/fixme.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images_nodist/followline.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images_nodist/geoimage-open.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/getting_started.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/gpx2imgManual.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/icons/accommodation_blank.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/icons/airport.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/icons/atm.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/icons/bank.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/icons/bar.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/icons/bollard.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/icons/bus_stop.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/icons/cafe.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/icons/cinema.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/icons/convenience.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/icons/fast_food.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/icons/ferry_terminal.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/icons/fire_station.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/icons/gate.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/icons/hospital.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/icons/hotel.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/icons/icons_grid.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/icons/museum.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/icons/natural_blank.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/icons/parking.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/icons/parking_cycle.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/icons/pharmacy.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/icons/pharmacy_dispensing.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/icons/place_of_worship.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/icons/police.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/icons/post_box.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/icons/power_blank.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/icons/power_pole_24.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/icons/power_tower_24.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/icons/pub.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/icons/recycling.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/icons/restaurant.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/icons/restriction.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/icons/school.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/icons/speed_hump_16.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/icons/station.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/icons/supermarket.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/icons/taxi.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/icons/theatre.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/icons/tourist_blank.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/icons/tourist_information.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/icons/transport_airport_48.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/icons/transport_blank.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/icons/transport_helipad_48.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/imagery.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/imagery.xcf
-
Property svn:mime-type
changed from
application/octet-stream
toimage/x-xcf
-
Property svn:mime-type
changed from
-
trunk/images_nodist/invisible.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/invisiblenew.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images_nodist/layer/rawgps_small.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/mapmode/parallel.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images_nodist/marker.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/markers/Bridge.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/markers/Crossing.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/mergecomplete.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images_nodist/mergeincomplete.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images_nodist/minus.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/misc/grey_check.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/misc/red_x.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/movedown.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images_nodist/moveup.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images_nodist/multipoly_create.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images_nodist/node.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/nodeway.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/oauth-logo-small.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/osmdata.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/overlay/active.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/overlay/connect.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/overlay/disconnect.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/overlay/invisiblenew.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/overlay/right.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/plus.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/PedestrianSymbol.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/aerialway_gondola.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/aerialway_tramway.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/archery.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/bank.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/bike_parking.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/boating.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/bobsleigh.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/bridleway.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/building.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/bus_halt.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/camping_site.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/car_service.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/caravan.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/caravan3.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/caravan_site.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/cash.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/chicane.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/church.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/coins.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/deer.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/divider.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/diving.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/emergency_access_point.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/fence.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/fireplace.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/fountain.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/handball.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/health.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/helicopter.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/hiking.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/hiking_grade1.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/hiking_grade2.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/hiking_grade3.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/hiking_grade4.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/hiking_grade5.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/hiking_grade6.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/hillclimbing.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/historic.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/hospital.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/image.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/incline.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/incline_steep.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/industrial.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/jeep.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/jetski.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/leisure.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/letter.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/lighthouse.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/luge.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/manmade.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/max_height.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/max_speed.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/max_weight.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/max_weight_axis.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/max_width.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/maxspeed.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/may_length.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/min_speed.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/minspeed.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/mofa.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/money.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/motorway_junction.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/museum.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/natural.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/oneway.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/park_and_hike.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/park_and_ride.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/passingplace.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images_nodist/presets/place.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/playground.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/police.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/post_office.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/power_wind.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/pubinstitutes.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/railwaypoint.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/roadattributes.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/routes.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/sailing.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/services.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/shoe_repair.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/shopping.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/skating.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/skiing.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/skiing_cross_country.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/slipway.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/source.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/sports.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/suitcase.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/swimming_indoor.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/tennisball.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/tower_communications.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/track2.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/track3.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/track4.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/track5.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/train.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/truck.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/turning_circle.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/waste_container.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/waterpoint.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/waterwaypoint.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/presets/zebracrossing.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/rawgps.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/remove.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images_nodist/removeselected.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/reverse.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images_nodist/revert.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/rotate.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/segment.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/selectmembers.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images_nodist/selectprimitives.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images_nodist/session.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images_nodist/straight.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/tagimages.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/tagimages2.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/tagimages_small.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/tagkeepmine.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images_nodist/tagkeeptheir.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images_nodist/tagundecide.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images_nodist/updatechangeset.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images_nodist/updatechangesetcontent.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/images_nodist/upload-preferences.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/upload.png
-
Property svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property svn:mime-type
changed from
-
trunk/images_nodist/uploadproperties.svg
-
Property svn:mime-type
set to
image/svg+xml
-
Property svn:mime-type
set to
-
trunk/src/org/openstreetmap/josm/actions/AutoScaleAction.java
r7053 r7668 42 42 43 43 public static final Collection<String> MODES = Collections.unmodifiableList(Arrays.asList( 44 marktr("data"), 45 marktr("layer"), 46 marktr("selection"), 47 marktr("conflict"), 48 marktr("download"), 49 marktr("problem"), 50 marktr("previous"), 51 marktr("next"))); 44 marktr(/* ICON(dialogs/autoscale/) */ "data"), 45 marktr(/* ICON(dialogs/autoscale/) */ "layer"), 46 marktr(/* ICON(dialogs/autoscale/) */ "selection"), 47 marktr(/* ICON(dialogs/autoscale/) */ "conflict"), 48 marktr(/* ICON(dialogs/autoscale/) */ "download"), 49 marktr(/* ICON(dialogs/autoscale/) */ "problem"), 50 marktr(/* ICON(dialogs/autoscale/) */ "previous"), 51 marktr(/* ICON(dialogs/autoscale/) */ "next"))); 52 52 53 53 private final String mode; -
trunk/src/org/openstreetmap/josm/actions/CreateMultipolygonAction.java
r7666 r7668 64 64 */ 65 65 public CreateMultipolygonAction(final boolean update) { 66 super(getName(update), "multipoly_create", getName(update), 66 super(getName(update), /* ICON */ "multipoly_create", getName(update), 67 67 /* atleast three lines for each shortcut or the server extractor fails */ 68 68 update ? Shortcut.registerShortcut("tools:multipoly_update", -
trunk/src/org/openstreetmap/josm/actions/JoinNodeWayAction.java
r7400 r7668 54 54 public static JoinNodeWayAction createJoinNodeToWayAction() { 55 55 JoinNodeWayAction action = new JoinNodeWayAction(false, 56 tr("Join Node to Way"), "joinnodeway", tr("Include a node into the nearest way segments"), 56 tr("Join Node to Way"), /* ICON */ "joinnodeway", tr("Include a node into the nearest way segments"), 57 57 Shortcut.registerShortcut("tools:joinnodeway", tr("Tool: {0}", tr("Join Node to Way")), KeyEvent.VK_J, Shortcut.DIRECT), true); 58 58 action.putValue("help", ht("/Action/JoinNodeWay")); … … 66 66 public static JoinNodeWayAction createMoveNodeOntoWayAction() { 67 67 JoinNodeWayAction action = new JoinNodeWayAction(true, 68 tr("Move Node onto Way"), "movenodeontoway", tr("Move the node onto the nearest way segments and include it"), 68 tr("Move Node onto Way"), /* ICON*/ "movenodeontoway", tr("Move the node onto the nearest way segments and include it"), 69 69 Shortcut.registerShortcut("tools:movenodeontoway", tr("Tool: {0}", tr("Move Node onto Way")), KeyEvent.VK_N, Shortcut.DIRECT), true); 70 70 return action; -
trunk/src/org/openstreetmap/josm/actions/LassoModeAction.java
r7293 r7668 13 13 public LassoModeAction() { 14 14 super(tr("Lasso Mode"), 15 "rope", 15 /* ICON(mapmode/) */ "rope", 16 16 tr("Lasso selection mode: select objects within a hand-drawn region"), 17 17 null, -
trunk/src/org/openstreetmap/josm/actions/mapmode/DeleteAction.java
r7434 r7668 62 62 63 63 private enum DeleteMode { 64 none("delete"), 65 segment("delete_segment"), 66 node("delete_node"), 67 node_with_references("delete_node"), 68 way("delete_way_only"), 69 way_with_references("delete_way_normal"), 70 way_with_nodes("delete_way_node_only"); 64 none(/* ICON(cursor/modifier/) */ "delete"), 65 segment(/* ICON(cursor/modifier/) */ "delete_segment"), 66 node(/* ICON(cursor/modifier/) */ "delete_node"), 67 node_with_references(/* ICON(cursor/modifier/) */ "delete_node"), 68 way(/* ICON(cursor/modifier/) */ "delete_way_only"), 69 way_with_references(/* ICON(cursor/modifier/) */ "delete_way_normal"), 70 way_with_nodes(/* ICON(cursor/modifier/) */ "delete_way_node_only"); 71 71 72 72 private final Cursor c; -
trunk/src/org/openstreetmap/josm/actions/mapmode/DrawAction.java
r7227 r7668 1740 1740 private class SnapChangeAction extends JosmAction { 1741 1741 public SnapChangeAction() { 1742 super(tr("Angle snapping"), "anglesnap", 1742 super(tr("Angle snapping"), /* ICON() */ "anglesnap", 1743 1743 tr("Switch angle snapping mode while drawing"), null, false); 1744 1744 putValue("help", ht("/Action/Draw/AngleSnap")); -
trunk/src/org/openstreetmap/josm/actions/mapmode/ExtrudeAction.java
r7592 r7668 188 188 private class DualAlignChangeAction extends JosmAction { 189 189 public DualAlignChangeAction() { 190 super(tr("Dual alignment"), "mapmode/extrude/dualalign", 190 super(tr("Dual alignment"), /* ICON() */ "mapmode/extrude/dualalign", 191 191 tr("Switch dual alignment mode while extruding"), null, false); 192 192 putValue("help", ht("/Action/Extrude#DualAlign")); … … 204 204 */ 205 205 public ExtrudeAction(MapFrame mapFrame) { 206 super(tr("Extrude"), "extrude/extrude", tr("Create areas"), 206 super(tr("Extrude"), /* ICON(mapmode/) */ "extrude/extrude", tr("Create areas"), 207 207 Shortcut.registerShortcut("mapmode:extrude", tr("Mode: {0}", tr("Extrude")), KeyEvent.VK_X, Shortcut.DIRECT), 208 208 mapFrame, -
trunk/src/org/openstreetmap/josm/actions/mapmode/SelectAction.java
r7543 r7668 85 85 // contains all possible cases the cursor can be in the SelectAction 86 86 private static enum SelectActionCursor { 87 rect("normal", "selection"), 88 rect_add("normal", "select_add"), 89 rect_rm("normal", "select_remove"), 90 way("normal", "select_way"), 91 way_add("normal", "select_way_add"), 92 way_rm("normal", "select_way_remove"), 93 node("normal", "select_node"), 94 node_add("normal", "select_node_add"), 95 node_rm("normal", "select_node_remove"), 96 virtual_node("normal", "addnode"), 97 scale("scale", null), 98 rotate("rotate", null), 99 merge("crosshair", null), 100 lasso("normal", "rope"), 101 merge_to_node("crosshair", "joinnode"), 87 rect("normal", /* ICON(cursor/modifier/) */ "selection"), 88 rect_add("normal", /* ICON(cursor/modifier/) */ "select_add"), 89 rect_rm("normal", /* ICON(cursor/modifier/) */ "select_remove"), 90 way("normal", /* ICON(cursor/modifier/) */ "select_way"), 91 way_add("normal", /* ICON(cursor/modifier/) */ "select_way_add"), 92 way_rm("normal", /* ICON(cursor/modifier/) */ "select_way_remove"), 93 node("normal", /* ICON(cursor/modifier/) */ "select_node"), 94 node_add("normal", /* ICON(cursor/modifier/) */ "select_node_add"), 95 node_rm("normal", /* ICON(cursor/modifier/) */ "select_node_remove"), 96 virtual_node("normal", /* ICON(cursor/modifier/) */ "addnode"), 97 scale(/* ICON(cursor/) */ "scale", null), 98 rotate(/* ICON(cursor/) */ "rotate", null), 99 merge(/* ICON(cursor/) */ "crosshair", null), 100 lasso("normal", /* ICON(cursor/modifier/) */ "rope"), 101 merge_to_node("crosshair", /* ICON(cursor/modifier/) */ "joinnode"), 102 102 move(Cursor.MOVE_CURSOR); 103 103 -
trunk/src/org/openstreetmap/josm/gui/conflict/pair/ListMerger.java
r7509 r7668 418 418 419 419 protected CopyAction(String icon_name, String action_name, String short_description) { 420 ImageIcon icon = ImageProvider.get("dialogs/conflict", icon_name +".png");420 ImageIcon icon = ImageProvider.get("dialogs/conflict", icon_name); 421 421 putValue(Action.SMALL_ICON, icon); 422 422 if (icon == null) { … … 435 435 436 436 public CopyStartLeftAction() { 437 super("copystartleft", tr("> top"), tr("Copy my selected nodes to the start of the merged node list")); 437 super(/* ICON(dialogs/conflict/)*/ "copystartleft", tr("> top"), 438 tr("Copy my selected nodes to the start of the merged node list")); 438 439 } 439 440 … … 456 457 457 458 public CopyEndLeftAction() { 458 super("copyendleft", tr("> bottom"), tr("Copy my selected elements to the end of the list of merged elements.")); 459 super(/* ICON(dialogs/conflict/)*/ "copyendleft", tr("> bottom"), 460 tr("Copy my selected elements to the end of the list of merged elements.")); 459 461 } 460 462 … … 477 479 478 480 public CopyBeforeCurrentLeftAction() { 479 super("copybeforecurrentleft", tr("> before"), 481 super(/* ICON(dialogs/conflict/)*/ "copybeforecurrentleft", tr("> before"), 480 482 tr("Copy my selected elements before the first selected element in the list of merged elements.")); 481 483 } … … 507 509 508 510 public CopyAfterCurrentLeftAction() { 509 super("copyaftercurrentleft", tr("> after"), 511 super(/* ICON(dialogs/conflict/)*/ "copyaftercurrentleft", tr("> after"), 510 512 tr("Copy my selected elements after the first selected element in the list of merged elements.")); 511 513 } … … 533 535 534 536 public CopyStartRightAction() { 535 super("copystartright", tr("< top"), tr("Copy their selected element to the start of the list of merged elements.")); 537 super(/* ICON(dialogs/conflict/)*/ "copystartright", tr("< top"), 538 tr("Copy their selected element to the start of the list of merged elements.")); 536 539 } 537 540 … … 550 553 551 554 public CopyEndRightAction() { 552 super("copyendright", tr("< bottom"), tr("Copy their selected elements to the end of the list of merged elements.")); 555 super(/* ICON(dialogs/conflict/)*/ "copyendright", tr("< bottom"), 556 tr("Copy their selected elements to the end of the list of merged elements.")); 553 557 } 554 558 … … 567 571 568 572 public CopyBeforeCurrentRightAction() { 569 super("copybeforecurrentright", tr("< before"), 573 super(/* ICON(dialogs/conflict/)*/ "copybeforecurrentright", tr("< before"), 570 574 tr("Copy their selected elements before the first selected element in the list of merged elements.")); 571 575 } … … 593 597 594 598 public CopyAfterCurrentRightAction() { 595 super("copyaftercurrentright", tr("< after"), 599 super(/* ICON(dialogs/conflict/)*/ "copyaftercurrentright", tr("< after"), 596 600 tr("Copy their selected element after the first selected element in the list of merged elements")); 597 601 } -
trunk/src/org/openstreetmap/josm/gui/dialogs/MapPaintDialog.java
r7578 r7668 97 97 98 98 public static final JosmAction PREFERENCE_ACTION = PreferencesAction.forPreferenceSubTab( 99 tr("Map paint preferences"), null, MapPaintPreference.class, "dialogs/mappaintpreference"); 99 tr("Map paint preferences"), null, MapPaintPreference.class, /* ICON */ "dialogs/mappaintpreference"); 100 100 101 101 /** -
trunk/src/org/openstreetmap/josm/gui/dialogs/ToggleDialog.java
r7299 r7668 522 522 add(lblTitle_weak, GBC.std().fill(GBC.HORIZONTAL)); 523 523 524 buttonsHide = new JButton(ImageProvider.get("misc", buttonHiding != ButtonHidingType.ALWAYS_SHOWN ? "buttonhide" : "buttonshow")); 524 buttonsHide = new JButton(ImageProvider.get("misc", buttonHiding != ButtonHidingType.ALWAYS_SHOWN 525 ? /* ICON(misc/)*/ "buttonhide" : /* ICON(misc/)*/ "buttonshow")); 525 526 buttonsHide.setToolTipText(tr("Toggle dynamic buttons")); 526 527 buttonsHide.setBorder(BorderFactory.createEmptyBorder()); … … 941 942 942 943 private void refreshHidingButtons() { 943 titleBar.buttonsHide.setIcon(ImageProvider.get("misc", buttonHiding != ButtonHidingType.ALWAYS_SHOWN ? "buttonhide" : "buttonshow")); 944 titleBar.buttonsHide.setIcon(ImageProvider.get("misc", buttonHiding != ButtonHidingType.ALWAYS_SHOWN 945 ? /* ICON(misc/)*/ "buttonhide" : /* ICON(misc/)*/ "buttonshow")); 944 946 titleBar.buttonsHide.setEnabled(buttonHiding != ButtonHidingType.ALWAYS_HIDDEN); 945 947 if (buttonsPanel != null) { -
trunk/src/org/openstreetmap/josm/gui/dialogs/properties/PropertiesDialog.java
r7435 r7668 891 891 892 892 public DeleteAction() { 893 super(tr("Delete"), "dialogs/delete", tr("Delete the selected key in all objects"), 893 super(tr("Delete"), /* ICON() */ "dialogs/delete", tr("Delete the selected key in all objects"), 894 894 Shortcut.registerShortcut("properties:delete", tr("Delete Tags"), KeyEvent.VK_D, 895 895 Shortcut.ALT_CTRL_SHIFT), false); … … 999 999 class AddAction extends JosmAction { 1000 1000 public AddAction() { 1001 super(tr("Add"), "dialogs/add", tr("Add a new key/value pair to all objects"), 1001 super(tr("Add"), /* ICON() */ "dialogs/add", tr("Add a new key/value pair to all objects"), 1002 1002 Shortcut.registerShortcut("properties:add", tr("Add Tag"), KeyEvent.VK_A, 1003 1003 Shortcut.ALT), false); … … 1016 1016 class EditAction extends JosmAction implements ListSelectionListener { 1017 1017 public EditAction() { 1018 super(tr("Edit"), "dialogs/edit", tr("Edit the value of the selected key for all objects"), 1018 super(tr("Edit"), /* ICON() */ "dialogs/edit", tr("Edit the value of the selected key for all objects"), 1019 1019 Shortcut.registerShortcut("properties:edit", tr("Edit Tags"), KeyEvent.VK_S, 1020 1020 Shortcut.ALT), false); -
trunk/src/org/openstreetmap/josm/gui/preferences/ToolbarPreferences.java
r7509 r7668 570 570 571 571 public Settings(DefaultMutableTreeNode rootActionsNode) { 572 super("toolbar", tr("Toolbar customization"), tr("Customize the elements on the toolbar.")); 572 super(/* ICON(preferences/) */ "toolbar", tr("Toolbar customization"), tr("Customize the elements on the toolbar.")); 573 573 actionsTreeModel = new DefaultTreeModel(rootActionsNode); 574 574 actionsTree = new JTree(actionsTreeModel); -
trunk/src/org/openstreetmap/josm/gui/preferences/advanced/AdvancedPreference.java
r7578 r7668 66 66 67 67 private AdvancedPreference() { 68 super("advanced", tr("Advanced Preferences"), tr("Setting Preference entries directly. Use with caution!")); 68 super(/* ICON(preferences/) */ "advanced", tr("Advanced Preferences"), tr("Setting Preference entries directly. Use with caution!")); 69 69 } 70 70 -
trunk/src/org/openstreetmap/josm/gui/preferences/audio/AudioPreference.java
r6733 r7668 35 35 36 36 private AudioPreference() { 37 super("audio", tr("Audio Settings"), tr("Settings for the audio player and audio markers.")); 37 super(/* ICON(preferences/) */ "audio", tr("Audio Settings"), tr("Settings for the audio player and audio markers.")); 38 38 } 39 39 -
trunk/src/org/openstreetmap/josm/gui/preferences/display/DisplayPreference.java
r6764 r7668 29 29 30 30 private DisplayPreference() { 31 super("display", tr("Display Settings"), tr("Various settings that influence the visual representation of the whole program."), false, new JTabbedPane()); 31 super(/* ICON(preferences/) */ "display", tr("Display Settings"), tr("Various settings that influence the visual representation of the whole program."), false, new JTabbedPane()); 32 32 } 33 33 -
trunk/src/org/openstreetmap/josm/gui/preferences/imagery/ImageryPreference.java
r7509 r7668 83 83 84 84 private ImageryPreference() { 85 super("imagery", tr("Imagery Preferences"), tr("Modify list of imagery layers displayed in the Imagery menu"), false, new JTabbedPane()); 85 super(/* ICON(preferences/) */ "imagery", tr("Imagery Preferences"), tr("Modify list of imagery layers displayed in the Imagery menu"), false, new JTabbedPane()); 86 86 } 87 87 … … 453 453 putValue(NAME, type.toString()); 454 454 putValue(SHORT_DESCRIPTION, tr("Add a new {0} entry by entering the URL", type.toString())); 455 putValue(SMALL_ICON, ImageProvider.get("dialogs", 456 "add" + (ImageryInfo.ImageryType.WMS.equals(type) ? "_wms" : ImageryInfo.ImageryType.TMS.equals(type) ? "_tms" : ""))); 455 String icon = /* ICON(dialogs/) */ "add"; 456 if(ImageryInfo.ImageryType.WMS.equals(type)) 457 icon = /* ICON(dialogs/) */ "add_wms"; 458 else if(ImageryInfo.ImageryType.TMS.equals(type)) 459 icon = /* ICON(dialogs/) */ "add_tms"; 460 putValue(SMALL_ICON, ImageProvider.get("dialogs", icon)); 457 461 this.type = type; 458 462 } -
trunk/src/org/openstreetmap/josm/gui/preferences/map/MapPreference.java
r6733 r7668 28 28 29 29 private MapPreference() { 30 super("map", tr("Map Settings"), tr("Settings for the map projection and data interpretation."), false, new JTabbedPane()); 30 super(/* ICON(preferences/) */ "map", tr("Map Settings"), tr("Settings for the map projection and data interpretation."), false, new JTabbedPane()); 31 31 } 32 32 -
trunk/src/org/openstreetmap/josm/gui/preferences/plugin/PluginPreference.java
r7434 r7668 76 76 77 77 private PluginPreference() { 78 super("plugin", tr("Plugins"), tr("Configure available plugins."), false, new JTabbedPane()); 78 super(/* ICON(preferences/) */ "plugin", tr("Plugins"), tr("Configure available plugins."), false, new JTabbedPane()); 79 79 } 80 80 -
trunk/src/org/openstreetmap/josm/gui/preferences/projection/CodeProjectionChoice.java
r7025 r7668 40 40 */ 41 41 public CodeProjectionChoice() { 42 super(tr("By Code (EPSG)"), "core:code"); 42 super(tr("By Code (EPSG)"), /* NO-ICON */ "core:code"); 43 43 } 44 44 -
trunk/src/org/openstreetmap/josm/gui/preferences/projection/CustomProjectionChoice.java
r7005 r7668 46 46 */ 47 47 public CustomProjectionChoice() { 48 super(tr("Custom Projection"), "core:custom"); 48 super(tr("Custom Projection"), /* NO-ICON */ "core:custom"); 49 49 } 50 50 -
trunk/src/org/openstreetmap/josm/gui/preferences/projection/GaussKruegerProjectionChoice.java
r6310 r7668 17 17 */ 18 18 public GaussKruegerProjectionChoice() { 19 super(tr("Gau\u00DF-Kr\u00FCger"), "core:gauss-krueger", zones, tr("GK Zone")); 19 super(tr("Gau\u00DF-Kr\u00FCger"), /* NO-ICON */ "core:gauss-krueger", zones, tr("GK Zone")); 20 20 } 21 21 -
trunk/src/org/openstreetmap/josm/gui/preferences/projection/LambertCC9ZonesProjectionChoice.java
r7015 r7668 33 33 */ 34 34 public LambertCC9ZonesProjectionChoice() { 35 super(tr("Lambert CC9 Zone (France)"), "core:lambertcc9", lambert9zones, tr("Lambert CC Zone")); 35 super(tr("Lambert CC9 Zone (France)"), /* NO-ICON */ "core:lambertcc9", lambert9zones, tr("Lambert CC Zone")); 36 36 } 37 37 -
trunk/src/org/openstreetmap/josm/gui/preferences/projection/LambertProjectionChoice.java
r7015 r7668 28 28 */ 29 29 public LambertProjectionChoice() { 30 super(tr("Lambert 4 Zones (France)"), "core:lambert", lambert4zones, tr("Lambert CC Zone")); 30 super(tr("Lambert 4 Zones (France)"), /* NO-ICON */ "core:lambert", lambert4zones, tr("Lambert CC Zone")); 31 31 } 32 32 -
trunk/src/org/openstreetmap/josm/gui/preferences/projection/PuwgProjectionChoice.java
r7436 r7668 31 31 */ 32 32 public PuwgProjectionChoice() { 33 super(tr("PUWG (Poland)"), "core:puwg", NAMES, tr("PUWG Zone")); 33 super(tr("PUWG (Poland)"), /* NO-ICON */ "core:puwg", NAMES, tr("PUWG Zone")); 34 34 } 35 35 -
trunk/src/org/openstreetmap/josm/gui/preferences/projection/SwissGridProjectionChoice.java
r6295 r7668 19 19 */ 20 20 public SwissGridProjectionChoice() { 21 super(tr("Swiss Grid (Switzerland)"), "core:swissgrid", "EPSG:21781"); 21 super(tr("Swiss Grid (Switzerland)"), /* NO-ICON */ "core:swissgrid", "EPSG:21781"); 22 22 } 23 23 -
trunk/src/org/openstreetmap/josm/gui/preferences/projection/UTMFranceDOMProjectionChoice.java
r6889 r7668 29 29 */ 30 30 public UTMFranceDOMProjectionChoice() { 31 super(tr("UTM France (DOM)"), "core:utmfrancedom", utmGeodesicsNames, tr("UTM Geodesic system")); 31 super(tr("UTM France (DOM)"), /* NO-ICON */ "core:utmfrancedom", utmGeodesicsNames, tr("UTM Geodesic system")); 32 32 } 33 33 -
trunk/src/org/openstreetmap/josm/gui/preferences/projection/UTMProjectionChoice.java
r7015 r7668 44 44 */ 45 45 public UTMProjectionChoice() { 46 super(tr("UTM"), "core:utm", cbEntries.toArray(new String[0]), tr("UTM Zone")); 46 super(tr("UTM"), /* NO-ICON */ "core:utm", cbEntries.toArray(new String[0]), tr("UTM Zone")); 47 47 } 48 48 -
trunk/src/org/openstreetmap/josm/gui/preferences/remotecontrol/RemoteControlPreference.java
r7343 r7668 60 60 61 61 private RemoteControlPreference() { 62 super("remotecontrol", tr("Remote Control"), tr("Settings for the remote control feature.")); 62 super(/* ICON(preferences/) */ "remotecontrol", tr("Remote Control"), tr("Settings for the remote control feature.")); 63 63 for (PermissionPrefWithDefault p : PermissionPrefWithDefault.getPermissionPrefs()) { 64 64 JCheckBox cb = new JCheckBox(p.preferenceText); -
trunk/src/org/openstreetmap/josm/gui/preferences/server/ServerAccessPreference.java
r6666 r7668 35 35 36 36 private ServerAccessPreference() { 37 super("connection", tr("Connection Settings"), tr("Connection Settings for the OSM server."), false, new JTabbedPane()); 37 super(/* ICON(preferences/) */ "connection", tr("Connection Settings"), tr("Connection Settings for the OSM server."), false, new JTabbedPane()); 38 38 } 39 39 -
trunk/src/org/openstreetmap/josm/gui/preferences/shortcut/ShortcutPreference.java
r6529 r7668 31 31 32 32 private ShortcutPreference() { 33 super("shortcuts", tr("Keyboard Shortcuts"), tr("Changing keyboard shortcuts manually.")); 33 super(/* ICON(preferences/) */ "shortcuts", tr("Keyboard Shortcuts"), tr("Changing keyboard shortcuts manually.")); 34 34 } 35 35 -
trunk/src/org/openstreetmap/josm/gui/preferences/validator/ValidatorPreference.java
r6666 r7668 31 31 32 32 private ValidatorPreference() { 33 super("validator", tr("Data validator"), 33 super(/* ICON(preferences/) */ "validator", tr("Data validator"), 34 34 tr("An OSM data validator that checks for common errors made by users and editor programs."), 35 35 false, new JTabbedPane()); -
trunk/src/org/openstreetmap/josm/gui/tagging/TaggingPresetType.java
r6074 r7668 10 10 */ 11 11 public enum TaggingPresetType { 12 NODE("Mf_node", "node"), WAY("Mf_way", "way"), RELATION("Mf_relation", "relation"), CLOSEDWAY("Mf_closedway", "closedway"); 12 NODE(/* ICON */ "Mf_node", "node"), 13 WAY(/* ICON */ "Mf_way", "way"), 14 RELATION(/* ICON */ "Mf_relation", "relation"), 15 CLOSEDWAY(/* ICON */ "Mf_closedway", "closedway"); 13 16 private final String iconName; 14 17 private final String name;
Note:
See TracChangeset
for help on using the changeset viewer.