Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
le-edubar
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
le6
le-edubar
Commits
5b8e57a3
There was a problem fetching the pipeline summary.
Commit
5b8e57a3
authored
7 years ago
by
Alessandro Elias
Browse files
Options
Downloads
Plain Diff
Merge branch 'issue/436' into 'master'
SCRUM#436
: Fix query string See merge request
!30
parents
8f73866d
7e2c1d40
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!30
SCRUM#436: Fix query string
Pipeline
#
Changes
2
Pipelines
3
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
package/debian/changelog
+6
-0
6 additions, 0 deletions
package/debian/changelog
package/le-edubar@c3sl.ufpr.br/prefabs.js
+8
-4
8 additions, 4 deletions
package/le-edubar@c3sl.ufpr.br/prefabs.js
with
14 additions
and
4 deletions
package/debian/changelog
+
6
−
0
View file @
5b8e57a3
le-edubar (0.1.8) testing; urgency=medium
* Fix query string
-- Andre Luis da Silva Machado <alsm14@inf.ufpr.br> Thu, 15 Mar 2018 11:18:26 -0300
le-edubar (0.1.7) testing; urgency=medium
* Update Manual Page
...
...
This diff is collapsed.
Click to expand it.
package/le-edubar@c3sl.ufpr.br/prefabs.js
+
8
−
4
View file @
5b8e57a3
...
...
@@ -46,9 +46,13 @@ function get_query(txt) {
/*Check if query is only blank spaces. If it is don't return
* the query*/
return
query
.
replace
(
"
"
,
""
,
"
gi
"
).
length
>
0
?
"
&query=
"
+
query
:
""
;
var
only_spaces
=
true
;
for
(
var
i
=
0
;
i
<
query
.
length
;
++
i
)
if
(
query
.
charAt
(
i
)
!=
"
"
)
only_spaces
=
false
;
return
only_spaces
?
""
:
"
&query=
"
+
query
;
}
/*This function clear the special chars like '&%$'
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment