Skip to content

Commit

Permalink
unzip tagsieve-4.3.1.xpi
Browse files Browse the repository at this point in the history
  • Loading branch information
wagle committed Apr 17, 2012
1 parent dabb194 commit 668ec7f
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 23 deletions.
18 changes: 14 additions & 4 deletions content/commands.js
Original file line number Diff line number Diff line change
Expand Up @@ -629,8 +629,13 @@ BookmarkTags.BookmarkCmds= function ()

function properties(bmObj)
{
// see content/browser/places/controller.js
PlacesUIUtils.showItemProperties(bmObj.id, "bookmark");
var info=
{
action: "edit",
type: "bookmark",
itemId: bmObj.id
};
PlacesUIUtils.showBookmarkDialog(info);
}

// See SidebarUtils.handleTreeClick at
Expand Down Expand Up @@ -926,8 +931,13 @@ BookmarkTags.TagCmds= function ()

function properties(tagId)
{
// see content/browser/places/controller.js
PlacesUIUtils.showItemProperties(tagId, "folder");
var info=
{
action: "edit",
type: "folder",
itemId: tagId
};
PlacesUIUtils.showBookmarkDialog(info);
}

function getCSSFile()
Expand Down
15 changes: 0 additions & 15 deletions content/tagInput.xml
Original file line number Diff line number Diff line change
Expand Up @@ -330,21 +330,6 @@
if (!val && !textbox.value) return;
textbox.value= val;
// optimization
if (!val) return;
// Hack: The textbox won't automatically scroll to the caret if the
// caret's past the visible area. Moving around in the textbox will
// though, so generate a fake keypress.
// FOR THIS TO WORK, TAG INPUT MUST HAVE FOCUS BEFOREHAND.
e= document.createEvent("KeyEvents");
//e.initKeyEvent("keypress", true, false, null,
e.initKeyEvent("keypress", false, false, null,
false, false, false, false,
Components.interfaces.nsIDOMKeyEvent.DOM_VK_RIGHT, 0);
e.bogus= true;
textbox.inputField.dispatchEvent(e);
}
// Checks the autocomplete menuitem as appropriate, if there's an
Expand Down
4 changes: 2 additions & 2 deletions install.rdf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Description about="urn:mozilla:install-manifest">
<em:id>[email protected]</em:id>
<em:name>TagSieve</em:name>
<em:version>4.3.0</em:version>
<em:version>4.3.1</em:version>
<em:description>Browse your bookmarks with sets of tags</em:description>
<em:creator>hark</em:creator>
<em:homepageURL>http://www.grue.in/tagsieve</em:homepageURL>
Expand All @@ -15,7 +15,7 @@
<Description>
<em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id>
<em:minVersion>4.0</em:minVersion>
<em:maxVersion>9.0a1</em:maxVersion>
<em:maxVersion>14.0a1</em:maxVersion>
</Description>
</em:targetApplication>

Expand Down
2 changes: 1 addition & 1 deletion locale/de-DE/help.html
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
<div id="title">
<h1>TagSieve Help</h1>
<h2>Browse your bookmarks with sets of tags</h2>
<h3>Version 4.3.0</h3>
<h3>Version 4.3.1</h3>
</div>

<div id="intro">
Expand Down
2 changes: 1 addition & 1 deletion locale/en-US/help.html
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
<div id="title">
<h1>TagSieve Help</h1>
<h2>Browse your bookmarks with sets of tags</h2>
<h3>Version 4.3.0</h3>
<h3>Version 4.3.1</h3>
</div>

<div id="intro">
Expand Down

0 comments on commit 668ec7f

Please sign in to comment.