mirror of
https://github.com/byReqz/blue-searchpage.git
synced 2025-06-15 16:47:47 +00:00
Add files via upload
This commit is contained in:
56
engines/base.js
Normal file
56
engines/base.js
Normal file
@ -0,0 +1,56 @@
|
||||
var apiUrl = "http://go.infinise.com/api/2.5/";
|
||||
|
||||
|
||||
/* GOOGLE
|
||||
----------------------------------------------------- */
|
||||
|
||||
eng.google = {
|
||||
pageTitle: "Google",
|
||||
logo: "google.png",
|
||||
places: {
|
||||
'Web' : ["http://www.google.com/search?q=%query%&hl=en", apiUrl+"?eng=google×tamp=%time%&q=%query%"],
|
||||
'Images' : ["http://images.google.com/images?q=%query%&hl=en", apiUrl+"?eng=google×tamp=%time%&q=%query%"],
|
||||
'Maps' : ["http://maps.google.com/maps?q=%query%", false]
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
/* WIKIPEDIA
|
||||
----------------------------------------------------- */
|
||||
|
||||
eng.wikipedia = {
|
||||
pageTitle: "Wikipedia",
|
||||
logo: "wikipedia.png",
|
||||
places: {
|
||||
'Search' : ["http://%lang%.wikipedia.org/wiki/Special:Search?search=%query%&fulltext=Search", apiUrl+"?eng=wikipedia×tamp=%time%&q=%query%&hl=%lang%"],
|
||||
'Go to Article' : ["http://%lang%.wikipedia.org/wiki/Special:Search?search=%query%&go=Go", apiUrl+"?eng=wikipedia×tamp=%time%&q=%query%&hl=%lang%"],
|
||||
},
|
||||
languages: {
|
||||
'': 'en'
|
||||
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
/* YOUTUBE
|
||||
----------------------------------------------------- */
|
||||
|
||||
eng.youtube = {
|
||||
pageTitle: "YouTube",
|
||||
logo: "youtube.png",
|
||||
places: {
|
||||
'Videos' : ["http://www.youtube.com/results?search_query=%query%", apiUrl+"?eng=youtube×tamp=%time%&q=%query%"]
|
||||
},
|
||||
};
|
||||
|
||||
|
||||
/* TWITTER
|
||||
----------------------------------------------------- */
|
||||
|
||||
eng.twitter = {
|
||||
pageTitle: "Twitter",
|
||||
logo: "twitter.png",
|
||||
places: {
|
||||
'Search Twitter' : ["http://twitter.com/search?q=%query%", false]
|
||||
}
|
||||
};
|
BIN
engines/google.png
Normal file
BIN
engines/google.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.8 KiB |
BIN
engines/twitter.png
Normal file
BIN
engines/twitter.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.7 KiB |
BIN
engines/wikipedia.png
Normal file
BIN
engines/wikipedia.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.1 KiB |
BIN
engines/youtube.png
Normal file
BIN
engines/youtube.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.5 KiB |
Reference in New Issue
Block a user