aboutsummaryrefslogtreecommitdiffstats
path: root/embed
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@it.gnome.org>2003-04-15 03:59:09 +0800
committerMarco Pesenti Gritti <mpeseng@src.gnome.org>2003-04-15 03:59:09 +0800
commit48a618c47c5af59c214b10b52a1afb24023cbcb7 (patch)
tree1afe99925a512e6c1f5f0e8499b6ff5b3cfa9626 /embed
parent9e73b40c1c5d4c65933bf8affb40066196a45db9 (diff)
downloadgsoc2013-epiphany-48a618c47c5af59c214b10b52a1afb24023cbcb7.tar
gsoc2013-epiphany-48a618c47c5af59c214b10b52a1afb24023cbcb7.tar.gz
gsoc2013-epiphany-48a618c47c5af59c214b10b52a1afb24023cbcb7.tar.bz2
gsoc2013-epiphany-48a618c47c5af59c214b10b52a1afb24023cbcb7.tar.lz
gsoc2013-epiphany-48a618c47c5af59c214b10b52a1afb24023cbcb7.tar.xz
gsoc2013-epiphany-48a618c47c5af59c214b10b52a1afb24023cbcb7.tar.zst
gsoc2013-epiphany-48a618c47c5af59c214b10b52a1afb24023cbcb7.zip
Use home:, have titles.
2003-04-14 Marco Pesenti Gritti <marco@it.gnome.org> * data/epiphany.schemas.in: * data/starthere/index.xml.in: * data/starthere/section.xsl: * data/starthere/smartbookmarks.xml.in: * embed/mozilla/StartHereProtocolHandler.cpp: * embed/mozilla/StartHereProtocolHandler.h: Use home:, have titles. * lib/ephy-node.c: (ephy_node_get_from_id): Do not assert on 0 id. It's valid.
Diffstat (limited to 'embed')
-rw-r--r--embed/mozilla/StartHereProtocolHandler.cpp2
-rw-r--r--embed/mozilla/StartHereProtocolHandler.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/embed/mozilla/StartHereProtocolHandler.cpp b/embed/mozilla/StartHereProtocolHandler.cpp
index 987415435..4d2c52c7d 100644
--- a/embed/mozilla/StartHereProtocolHandler.cpp
+++ b/embed/mozilla/StartHereProtocolHandler.cpp
@@ -49,7 +49,7 @@ GStartHereProtocolHandler::~GStartHereProtocolHandler()
/* readonly attribute string scheme; */
NS_IMETHODIMP GStartHereProtocolHandler::GetScheme(nsACString &aScheme)
{
- aScheme = NS_LITERAL_CSTRING("start-here");
+ aScheme = NS_LITERAL_CSTRING("home");
return NS_OK;
}
diff --git a/embed/mozilla/StartHereProtocolHandler.h b/embed/mozilla/StartHereProtocolHandler.h
index ea18ee39d..ab8744523 100644
--- a/embed/mozilla/StartHereProtocolHandler.h
+++ b/embed/mozilla/StartHereProtocolHandler.h
@@ -31,7 +31,7 @@
0x431d, \
{0x87, 0xe6, 0x3b, 0xef, 0x8e, 0x7a, 0xda, 0x51} \
}
-#define G_START_HERE_PROTOCOLHANDLER_CONTRACTID NS_NETWORK_PROTOCOL_CONTRACTID_PREFIX "start-here"
+#define G_START_HERE_PROTOCOLHANDLER_CONTRACTID NS_NETWORK_PROTOCOL_CONTRACTID_PREFIX "home"
#define G_START_HERE_PROTOCOLHANDLER_CLASSNAME "Epiphany's start here protocol handler"
class GStartHereProtocolHandler : public nsIProtocolHandler