Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
jio_mebibou
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Alexandra Rogova
jio_mebibou
Commits
3356688e
Commit
3356688e
authored
Aug 21, 2013
by
Tristan Cavelier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
queries src moved
parent
e97727d0
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
8 additions
and
3 deletions
+8
-3
src/queries/core/complexquery.js
src/queries/core/complexquery.js
+0
-0
src/queries/core/parser.par
src/queries/core/parser.par
+0
-0
src/queries/core/query.js
src/queries/core/query.js
+2
-1
src/queries/core/queryfactory.js
src/queries/core/queryfactory.js
+3
-1
src/queries/core/serializer.js
src/queries/core/serializer.js
+0
-0
src/queries/core/simplequery.js
src/queries/core/simplequery.js
+0
-0
src/queries/core/tool.js
src/queries/core/tool.js
+3
-1
No files found.
src/queries/complexquery.js
→
src/queries/co
re/co
mplexquery.js
View file @
3356688e
File moved
src/queries/parser.par
→
src/queries/
core/
parser.par
View file @
3356688e
File moved
src/queries/query.js
→
src/queries/
core/
query.js
View file @
3356688e
...
@@ -99,9 +99,10 @@ Query.prototype.exec = function (item_list, option) {
...
@@ -99,9 +99,10 @@ Query.prototype.exec = function (item_list, option) {
*
*
* @method match
* @method match
* @param {Object} item The object to test
* @param {Object} item The object to test
* @param {String} wildcard_character The wildcard character to use
* @return {Boolean} true if match, false otherwise
* @return {Boolean} true if match, false otherwise
*/
*/
Query
.
prototype
.
match
=
function
(
item
,
wildcard_character
)
{
Query
.
prototype
.
match
=
function
()
{
return
true
;
return
true
;
};
};
...
...
src/queries/queryfactory.js
→
src/queries/
core/
queryfactory.js
View file @
3356688e
...
@@ -10,7 +10,9 @@ var query_class_dict = {};
...
@@ -10,7 +10,9 @@ var query_class_dict = {};
*
*
* @class QueryFactory
* @class QueryFactory
*/
*/
function
QueryFactory
()
{}
function
QueryFactory
()
{
return
;
}
/**
/**
* Creates Query object from a search text string or a serialized version
* Creates Query object from a search text string or a serialized version
...
...
src/queries/serializer.js
→
src/queries/
core/
serializer.js
View file @
3356688e
File moved
src/queries/simplequery.js
→
src/queries/
core/
simplequery.js
View file @
3356688e
File moved
src/queries/tool.js
→
src/queries/
core/
tool.js
View file @
3356688e
...
@@ -155,7 +155,9 @@ function inherits(constructor, superConstructor) {
...
@@ -155,7 +155,9 @@ function inherits(constructor, superConstructor) {
/**
/**
* Does nothing
* Does nothing
*/
*/
function
emptyFunction
()
{}
function
emptyFunction
()
{
return
;
}
/**
/**
* Filter a list of items, modifying them to select only wanted keys. If
* Filter a list of items, modifying them to select only wanted keys. If
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment