[gnome-documents] searchbar: style cleanups
- From: Cosimo Cecchi <cosimoc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-documents] searchbar: style cleanups
- Date: Fri, 11 Nov 2011 17:38:46 +0000 (UTC)
commit aaa7955d5201c1fa5cdb85b19f4cc156f767a758
Author: Cosimo Cecchi <cosimoc gnome org>
Date: Thu Nov 10 01:11:37 2011 -0500
searchbar: style cleanups
src/searchbar.js | 20 +++++++++++---------
1 files changed, 11 insertions(+), 9 deletions(-)
---
diff --git a/src/searchbar.js b/src/searchbar.js
index 6a5b65d..40809ca 100644
--- a/src/searchbar.js
+++ b/src/searchbar.js
@@ -82,9 +82,11 @@ SearchTypeManager.prototype = {
}
};
-const SEARCH_MATCH_AUTHOR = 'author';
-const SEARCH_MATCH_TITLE = 'title';
-const SEARCH_MATCH_ALL = 'all';
+const SearchMatchStock = {
+ ALL: 'all',
+ TITLE: 'title',
+ AUTHOR: 'author'
+};
function SearchMatch(params) {
this._init(params);
@@ -97,11 +99,11 @@ SearchMatch.prototype = {
},
getFilter: function() {
- if (this.id == SEARCH_MATCH_TITLE)
+ if (this.id == SearchMatchStock.TITLE)
return ('fn:contains ' +
'(fn:lower-case (tracker:coalesce(nie:title(?urn), nfo:fileName(?urn))), ' +
'"%s")').format(Global.searchController.getString());
- if (this.id == SEARCH_MATCH_AUTHOR)
+ if (this.id == SearchMatchStock.AUTHOR)
return ('fn:contains ' +
'(fn:lower-case (tracker:coalesce(nco:fullname(?creator), nco:fullname(?publisher))), ' +
'"%s")').format(Global.searchController.getString());
@@ -120,14 +122,14 @@ SearchMatchManager.prototype = {
_init: function() {
Manager.BaseManager.prototype._init.call(this, _("Match"));
- this.addItem(new SearchMatch({ id: SEARCH_MATCH_ALL,
+ this.addItem(new SearchMatch({ id: SearchMatchStock.ALL,
name: _("All") }));
- this.addItem(new SearchMatch({ id: SEARCH_MATCH_TITLE,
+ this.addItem(new SearchMatch({ id: SearchMatchStock.TITLE,
name: _("Title") }));
- this.addItem(new SearchMatch({ id: SEARCH_MATCH_AUTHOR,
+ this.addItem(new SearchMatch({ id: SearchMatchStock.AUTHOR,
name: _("Author") }));
- this.setActiveItemById(SEARCH_MATCH_ALL);
+ this.setActiveItemById(SearchMatchStock.ALL);
}
};
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]