Difference between revisions of "WikiBookmarks/Usage"

From Wiki4Intranet
Jump to: navigation, search
(WikiBookmarks: load help page)
 
(One intermediate revision by one other user not shown)
Line 14: Line 14:
 
panel or add it into your browser's bookmarks.
 
panel or add it into your browser's bookmarks.
  
<!-- The following is Wikitext/HTML+JavaScript code for creating bookmarklet. It is localized using &lt;msgid&gt; templates and substituted into Wikitext help files. -->
+
<div style="display:inline-block"><label for="wb_page"><b></html>Article title:<html></b></label><br/>
<html><div style="display:inline-block"><label for="wb_page"><b></html>Article title:<html></b></label><br/>
+
 
<input type="text" id="wb_page" size="40" value="" /></div>
 
<input type="text" id="wb_page" size="40" value="" /></div>
 
<div style="display:inline-block"><label for="wb_text"><b></html>Button text:<html></b></label><br/>
 
<div style="display:inline-block"><label for="wb_text"><b></html>Button text:<html></b></label><br/>
Line 21: Line 20:
 
<input type="button" value="</html>Make bookmarklet for me<html>" onclick="wb_make_link()" />
 
<input type="button" value="</html>Make bookmarklet for me<html>" onclick="wb_make_link()" />
 
<div id="wb_link_div" style="font-weight: bold"></div>
 
<div id="wb_link_div" style="font-weight: bold"></div>
<script language="JavaScript" type="text/javascript" src="http://</html>{{SERVERNAME}}{{SCRIPTPATH}}/extensions/WikiBookmarks/WikiBookmarks.js<html>"></script>
+
<script type="text/javascript" src="//</html>{{SERVERNAME}}{{SCRIPTPATH}}/extensions/WikiBookmarks/WikiBookmarks.js<html>"></script>
<script language="JavaScript">
+
function wb_make_link()
+
{
+
var pg = document.getElementById("wb_page").value;
+
var t = document.getElementById("wb_text").value;
+
if (!t)
+
  t = "</html>WikiBookmark it<html>";
+
if (pg == "")
+
{
+
  alert("</html>Please, enter non-empty bookmarks article title!<html>");
+
  return;
+
}
+
var d = document.getElementById("wb_link_div");
+
d.innerHTML = "";
+
d.appendChild(document.createTextNode("</html>Drag-and-drop the following link onto your browser's panel:<html>"));
+
d.appendChild(document.createElement('br'));
+
d.appendChild(document.createTextNode("[[ "));
+
var a = document.createElement('a');
+
a.href = wb_bookmarklet(pg);
+
a.innerHTML = t;
+
d.appendChild(a);
+
d.appendChild(document.createTextNode(" ]]"));
+
}
+
if (wgUserName)
+
{
+
var defp = "</html>{{ns:User}}<html>:" + wgUserName + "/</html>Bookmarks<html>";
+
document.getElementById("wb_page").value = defp;
+
document.getElementById("wb_default").innerHTML = "</html> (<b>$1</b> by default)<html>".replace("$1", defp);
+
}
+
</script>
+
</html>
+
<!-- End HTML+JavaScript -->
+
  
 
When you click the newly added button when viewing some interesting Web page,
 
When you click the newly added button when viewing some interesting Web page,

Latest revision as of 18:42, 20 April 2018

WikiBookmarks is a MediaWiki extension which lets you to manage shared bookmark lists inside a Wiki article. The extension is written by Vitaliy Filippov and is distributed under the terms of GNU GPL license version 3 or later. Also, here is a link to extension homepage.

You always can find a fresh version of the WikiBookmarks documentation on the Special:Bookmarks page. Actually, you've already found it :-).

WikiBookmarks are used in the form of a tiny bookmarklet (what is a bookmarklet?). To install such a bookmarklet in your browser, you need to enter the title of Wiki Article which you want to maintain as your bookmark list, click Make bookmarklet and drag-and-drop displayed link onto your browser's panel or add it into your browser's bookmarks.

<label for="wb_page"></html>Article title:

When you click the newly added button when viewing some interesting Web page, '''WikiBookmarks''' will remember current page's URL, title and selected text (if any), on MediaWiki article you selected for bookmarks. The new bookmarks are added into beginning of an article, under certain count of headings. By default the first-level headings are named '''== Year ==''' and the second-level headings are named '''=== Month Year ===''' ("%Y" "%B %Y"). This meant to be used for bookmark classification by date. If you want to change heading count and/or heading date format, you must add a line similar to the following one into the beginning of your bookmarks article:
'''WikiBookmarks''' extracts all present quoted strings from such a comment and use them as the date dependent headings. The format of formatting strings is the same as in PHP function [http://php.net/manual/en/function.strftime.php strftime()] (as you know, actually it's libc's, but it doesn't matter). You also have the option of changing format of the date-time string appended to list item before each bookmark. To do this, you must add a line similar to the following one into the beginning of your bookmarks article:
If such a comment is present, '''WikiBookmarks''' will take the quoted string from it and use it as date and time format. [[Category:Help]]
Retrieved from "https://wiki.4intra.net/index.php?title=WikiBookmarks/Usage&oldid=7819"