Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
open-source
MetaGer
Commits
7b4c0c7e
Commit
7b4c0c7e
authored
Sep 27, 2017
by
Karl Hasselbring
Browse files
Suchwort und Sprache werden jetzt aus den Meta Tags ausgelesen und funktionieren so auch mit Post
parent
6f3459e0
Changes
2
Hide whitespace changes
Inline
Side-by-side
resources/assets/js/scriptResultPage.js
View file @
7b4c0c7e
...
...
@@ -10,23 +10,30 @@ $(document).ready(function () {
$
(
$
(
'
#foki > li#savedFokiTabSelector
'
).
get
(
0
)).
find
(
'
>a
'
).
tab
(
'
show
'
);
}
var
sprueche
=
getURLParameter
(
'
sprueche
'
)
===
'
on
'
;
// load the sprueche url parameter
if
(
localStorage
.
hasOwnProperty
(
'
param_sprueche
'
))
{
sprueche
=
localStorage
.
getItem
(
'
param_sprueche
'
)
===
'
on
'
;
// check for sprueche local storage parameter
var
sprueche
=
localStorage
.
getItem
(
'
param_sprueche
'
)
===
'
on
'
;
// check for sprueche local storage parameter
}
else
{
var
sprueche
=
getURLParameter
(
'
sprueche
'
)
===
'
on
'
;
// load the sprueche url parameter
}
var
search
=
get
URLParameter
(
'
eingabe
'
);
var
locale
=
readLocaleFromUrl
(
'
de
'
);
var
search
=
get
MetaTag
(
'
q
'
);
var
locale
=
getMetaTag
(
'
l
'
);
loadQuicktips
(
search
,
locale
,
sprueche
);
// load the quicktips
});
/*
function readLocaleFromUrl(defaultLocale) {
return location.pathname.substr(1, location.pathname.indexOf('/meta', 0) - 1) || 'de';
}
*/
function
getURLParameter
(
name
)
{
return
decodeURIComponent
((
new
RegExp
(
'
[?|&]
'
+
name
+
'
=
'
+
'
([^&;]+?)(&|#|;|$)
'
).
exec
(
location
.
search
)
||
[
null
,
''
])[
1
].
replace
(
/
\+
/g
,
'
%20
'
))
||
null
;
}
function
getMetaTag
(
name
)
{
return
$
(
'
meta[name="
'
+
name
+
'
"
'
)[
0
].
content
;
}
function
activateJSOnlyContent
()
{
$
(
'
#searchplugin
'
).
removeClass
(
'
hide
'
);
$
(
'
.js-only
'
).
removeClass
(
'
js-only
'
);
...
...
resources/views/layouts/resultPage.blade.php
View file @
7b4c0c7e
...
...
@@ -5,8 +5,9 @@
<link
href=
"/favicon.ico"
rel=
"icon"
type=
"image/x-icon"
/>
<link
href=
"/favicon.ico"
rel=
"shortcut icon"
type=
"image/x-icon"
/>
<meta
content=
"width=device-width, initial-scale=1.0, user-scalable=no"
name=
"viewport"
/>
<meta
content=
"{{ getmypid() }}"
name=
"p"
/>
<meta
content=
"{{ $eingabe }}"
name=
"q"
/>
<meta
name=
"p"
content=
"{{ getmypid() }}"
/>
<meta
name=
"q"
content=
"{{ $eingabe }}"
/>
<meta
name=
"l"
content=
"{{ LaravelLocalization::getCurrentLocale() }}"
/>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=utf-8"
/>
<META
HTTP-EQUIV=
"CACHE-CONTROL"
CONTENT=
"NO-CACHE"
/>
<meta
http-equiv=
"language"
content=
"{!! trans('staticPages.meta.language') !!}"
/>
...
...
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