diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | lib/widgets/ephy-location-entry.c | 6 |
2 files changed, 11 insertions, 1 deletions
@@ -1,3 +1,9 @@ +2007-05-31 Diego Escalante Urrelo <diegoe@gnome.org> + + * lib/widgets/ephy-location-entry.c: + + Adds some prefixes to web_prefixes for ftp sites. Bug #422114. + 2007-05-27 Christian Persch <chpe@gnome.org> * embed/mozilla/mozilla-embed-single.cpp: diff --git a/lib/widgets/ephy-location-entry.c b/lib/widgets/ephy-location-entry.c index 084234935..1669e8abe 100644 --- a/lib/widgets/ephy-location-entry.c +++ b/lib/widgets/ephy-location-entry.c @@ -98,10 +98,14 @@ static const struct web_prefixes [] = { { "http://www.", 11 }, + { "http://ftp.", 11 }, { "http://", 7 }, { "https://www.", 12 }, { "https://", 8 }, - { "www.", 4 } + { "ftp://", 6}, + { "ftp://ftp.", 10}, + { "www.", 4 }, + { "ftp.", 4} }; static const GtkTargetEntry url_drag_types [] = |