From 0efa94feb8fbfc31e32d39d8ba188eb4aae3bd59 Mon Sep 17 00:00:00 2001 From: David Bordoley Date: Tue, 13 May 2003 19:33:09 +0000 Subject: s/bookmark page/bookmark link, more consistent with the docs and better 2003-05-13 David Bordoley * data/ui/epiphany-history-window-ui.xml.in: * src/ephy-history-window.c: s/bookmark page/bookmark link, more consistent with the docs and better ui. * help/C/epiphany.xml: Start the create a bookmark section. Needs more work. Finish to open/copy address bookmark/history link sections. --- ChangeLog | 13 +++ data/ui/epiphany-history-window-ui.xml.in | 4 +- help/C/epiphany.xml | 159 ++++++++++++++++++++++++------ src/ephy-history-window.c | 8 +- 4 files changed, 149 insertions(+), 35 deletions(-) diff --git a/ChangeLog b/ChangeLog index ffbb89c93..7690ed160 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,16 @@ +2003-05-13 David Bordoley + + * data/ui/epiphany-history-window-ui.xml.in: + * src/ephy-history-window.c: + + s/bookmark page/bookmark link, more consistent with + the docs and better ui. + + * help/C/epiphany.xml: + + Start the create a bookmark section. Needs more work. + Finish to open/copy address bookmark/history link sections. + 2003-05-13 Xan Lopez * data/starthere/smartbookmarks.xml.in: diff --git a/data/ui/epiphany-history-window-ui.xml.in b/data/ui/epiphany-history-window-ui.xml.in index e2a5e0322..d716f0bd5 100644 --- a/data/ui/epiphany-history-window-ui.xml.in +++ b/data/ui/epiphany-history-window-ui.xml.in @@ -5,7 +5,7 @@ - + @@ -35,7 +35,7 @@ - + diff --git a/help/C/epiphany.xml b/help/C/epiphany.xml index 6b376f619..9a47cf836 100644 --- a/help/C/epiphany.xml +++ b/help/C/epiphany.xml @@ -307,11 +307,6 @@ you can choose items related to the display of the web page. - - To Bookmark a Page - - - To Find Text in a Page To search a page for a string, perform the following steps: @@ -393,11 +388,6 @@ you can choose items related to the display of the web page. - - To Bookmark a Link - - - To Switch in Between Tabs @@ -422,8 +412,40 @@ you can choose items related to the display of the web page. To Create a New Bookmark - - + You can create new bookmarks in several ways. + + + Browser Window + + + To bookmark the currently viewed page, choose + + File + Bookmark Page... + . + + To bookmark a link in the currently viewed page, + right click on the link and choose + + Bookmark Link... + . + + + + + + History Window + + To bookmark the currently selected history link, choose + + File + Bookmark Link... + . Alternatively, right-click on the +history link in the history window, then choose Bookmark Link... + + + + To Select Bookmarks and Topics @@ -484,8 +506,38 @@ Click on the bookmark that you want to select. To Open a Bookmark in a New Window or Tab - - + + + To open a bookmark in a new window perform the following steps: + + + + Select the bookmark that you want to open. + + + Choose FileOpen in New Window. + Alternatively, right-click on the bookmark, then choose Open in New Window + . + + + + + + To open a bookmark in a new tab perform the following steps: + + + + Select the bookmark that you want to open. + + + Choose FileOpen in New Tab. + Alternatively, right-click on the bookmark, then choose Open in New Tab + . + + + + + To Create a New Topic @@ -545,8 +597,16 @@ bookmarks or topic in the bookmarks window, then choose Delete To Copy the Address of a Bookmark - - + To copy the address of a bookmark perform the following steps: + + + Select the bookmark. + + + Choose EditCopy Address. Alternatively, right-click on the +bookmark, then choose Copy Address. + + To Add a Bookmark or Topic to the Bookmarks Bar @@ -603,7 +663,7 @@ bookmarks or topic in the bookmarks window, then choose Delete - Managing Your History Link + Managing Your History Links @@ -618,13 +678,51 @@ bookmarks or topic in the bookmarks window, then choose Delete To Open a History Link in a New Window or Tab - - + + + To open a history link in a new window perform the following steps: + + + + Select the history link that you want to open. + + + Choose FileOpen in New Window. + Alternatively, right-click on the history link, then choose Open in New Window + . + + + + + + To Open a history link in a new tab perform the following steps: + + + + Select the history link that you want to open. + + + Choose FileOpen in New Tab. + Alternatively, right-click on the history link, then choose Open in New Tab + . + + + + + To Delete a History Link - - + To delete a history link perform the following steps: + + + Select the history link that you want to delete. + + + Choose FileDelete. Alternatively, right-click on the +history link, then choose Delete. + + To Search Your History Links @@ -633,13 +731,16 @@ bookmarks or topic in the bookmarks window, then choose Delete To Copy the Address of a History Link - - - - - To Bookmark a History Link - - + To copy the address of a history link perform the following steps: + + + Select the history link. + + + Choose EditCopy Address. Alternatively, right-click on the +history link, then choose Copy Address. + + @@ -658,7 +759,7 @@ bookmarks or topic in the bookmarks window, then choose Delete - + Customizing &fr; diff --git a/src/ephy-history-window.c b/src/ephy-history-window.c index 2d273a4a0..8fd0115e1 100644 --- a/src/ephy-history-window.c +++ b/src/ephy-history-window.c @@ -76,7 +76,7 @@ static void cmd_open_bookmarks_in_browser (EggAction *action, EphyHistoryWindow *editor); static void cmd_delete (EggAction *action, EphyHistoryWindow *editor); -static void cmd_bookmark_page (EggAction *action, +static void cmd_bookmark_link (EggAction *action, EphyHistoryWindow *editor); static void cmd_clear (EggAction *action, EphyHistoryWindow *editor); @@ -133,9 +133,9 @@ static EggActionGroupEntry ephy_history_ui_entries [] = { { "Delete", N_("_Delete"), GTK_STOCK_DELETE, NULL, N_("Delete the selected history link"), G_CALLBACK (cmd_delete), NULL }, - { "BookmarkPage", N_("Boo_kmark Page..."), EPHY_STOCK_BOOKMARK_PAGE, "D", + { "BookmarkLink", N_("Boo_kmark Link..."), EPHY_STOCK_BOOKMARK_PAGE, "D", N_("Bookmark the selected history link"), - G_CALLBACK (cmd_bookmark_page), NULL }, + G_CALLBACK (cmd_bookmark_link), NULL }, { "Close", N_("_Close"), GTK_STOCK_CLOSE, "W", N_("Close the history window"), G_CALLBACK (cmd_close), NULL }, @@ -440,7 +440,7 @@ cmd_delete (EggAction *action, } static void -cmd_bookmark_page (EggAction *action, +cmd_bookmark_link (EggAction *action, EphyHistoryWindow *editor) { GtkWindow *window; -- cgit v1.2.3