summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2015-01-13 16:42:04 +0100
committerMorris Jobke <hey@morrisjobke.de>2015-01-14 15:15:39 +0100
commitdc17019536551915e4417b08904e9fb5f6f49689 (patch)
tree395dbecaf33cca71905b96dba276561620a0cb7e /core
parenta83647928722eef039302971e36fd58e3238de25 (diff)
downloadnextcloud-server-dc17019536551915e4417b08904e9fb5f6f49689.tar.gz
nextcloud-server-dc17019536551915e4417b08904e9fb5f6f49689.zip
adjust paths for search
Diffstat (limited to 'core')
-rw-r--r--core/js/core.json2
-rw-r--r--core/js/js.js2
-rw-r--r--core/routes.php4
-rw-r--r--core/search/js/search.js6
4 files changed, 7 insertions, 7 deletions
diff --git a/core/js/core.json b/core/js/core.json
index 101a88cd4f0..2fb7842624c 100644
--- a/core/js/core.json
+++ b/core/js/core.json
@@ -23,6 +23,6 @@
"config.js",
"multiselect.js",
"oc-requesttoken.js",
- "../../search/js/search.js"
+ "../search/js/search.js"
]
}
diff --git a/core/js/js.js b/core/js/js.js
index 579bf09b2e4..234cc328dfb 100644
--- a/core/js/js.js
+++ b/core/js/js.js
@@ -74,7 +74,7 @@ var OC={
config: window.oc_config,
appConfig: window.oc_appconfig || {},
theme: window.oc_defaults || {},
- coreApps:['', 'admin','log','search','settings','core','3rdparty'],
+ coreApps:['', 'admin','log','core/search','settings','core','3rdparty'],
menuSpeed: 100,
/**
diff --git a/core/routes.php b/core/routes.php
index ced70898f50..defbb695a71 100644
--- a/core/routes.php
+++ b/core/routes.php
@@ -22,8 +22,8 @@ $application->registerRoutes($this, array('routes' => array(
/** @var $this OCP\Route\IRouter */
// Core ajax actions
// Search
-$this->create('search_ajax_search', '/search/ajax/search.php')
- ->actionInclude('search/ajax/search.php');
+$this->create('search_ajax_search', '/core/search')
+ ->actionInclude('core/search/ajax/search.php');
// AppConfig
$this->create('core_ajax_appconfig', '/core/ajax/appconfig.php')
->actionInclude('core/ajax/appconfig.php');
diff --git a/core/search/js/search.js b/core/search/js/search.js
index 57de07bf7fd..c6542ffc138 100644
--- a/core/search/js/search.js
+++ b/core/search/js/search.js
@@ -97,7 +97,7 @@
*/
this.search = function(query, inApps, page, size) {
if (query) {
- OC.addStyle('search','results');
+ OC.addStyle('core/search','results');
if (typeof page !== 'number') {
page = 1;
}
@@ -128,7 +128,7 @@
$status.html(t('core', 'Searching other places')+'<img class="spinner" alt="search in progress" src="'+OC.webroot+'/core/img/loading.gif" />');
// do the actual search query
- $.getJSON(OC.generateUrl('search/ajax/search.php'), {query:query, inApps:inApps, page:page, size:size }, function(results) {
+ $.getJSON(OC.generateUrl('core/search'), {query:query, inApps:inApps, page:page, size:size }, function(results) {
lastResults = results;
if (page === 1) {
showResults(results);
@@ -364,7 +364,7 @@ $(document).ready(function() {
$('#app-content')
.append($searchResults)
.find('.viewcontainer').css('min-height', 'initial');
- $searchResults.load(OC.webroot + '/search/templates/part.results.html', function () {
+ $searchResults.load(OC.webroot + '/core/search/templates/part.results.html', function () {
OC.Search = new OCA.Search($('#searchbox'), $('#searchresults'));
});
});