Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/85fd4248a63709f4dafff0e073dbb6ddba2e8079
You should set ROOT_URL correctly, otherwise the web may not work correctly.
7 changed files with
32 additions and
40 deletions
@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version= "4" >
<component name= "ProjectCodeStyleSettingsManager" >
<option name= "PER_PROJECT_SETTINGS" >
<value />
</option>
</component>
</project>
@ -0,0 +1,7 @@
<component name= "ProjectDictionaryState" >
<dictionary name= "Keivan" >
<words >
<w > rootfolder</w>
</words>
</dictionary>
</component>
@ -1,10 +1,10 @@
define ( [
'app' ,
'AddSeries/RootFolders/RootFolderCollection' ,
'Quality/QualityProfileCollection' ,
'AddSeries/RootFolders/RootFolderView' ,
'AddSeries/New/AddNewSeriesView' ,
'AddSeries/Existing/ImportSeriesView'
'app' ,
'AddSeries/RootFolders/RootFolderCollection' ,
'Quality/QualityProfileCollection' ,
'AddSeries/RootFolders/RootFolderView' ,
'AddSeries/New/AddNewSeriesView' ,
'AddSeries/Existing/ImportSeriesView'
] ,
function ( app , rootFolderCollection , qualityProfileCollection ) {
NzbDrone . AddSeries . AddSeriesLayout = Backbone . Marionette . Layout . extend ( {
@ -1,5 +1,4 @@
define ( [ 'app' , 'AddSeries/RootFolders/RootFolderCollection' , 'AddSeries/New/SearchResultView' , 'Shared/SpinnerView' ] , function ( app , rootFolders ) {
define ( [ 'app' , 'AddSeries/RootFolders/RootFolderCollection' , 'AddSeries/New/SearchResultView' , 'Shared/SpinnerView' ] , function ( ) {
NzbDrone . AddSeries . New . AddNewSeriesView = Backbone . Marionette . Layout . extend ( {
template : 'AddSeries/New/AddNewSeriesTemplate' ,
route : 'Series/add/new' ,
@ -35,18 +34,18 @@
var term = context . ui . seriesSearch . val ( ) ;
context . collection . reset ( ) ;
if ( term !== '' ) {
if ( term === '' ) {
context . searchResult . close ( ) ;
} else {
context . searchResult . show ( new NzbDrone . Shared . SpinnerView ( ) ) ;
context . currentSearchRequest = context . collection . fetch ( {
data : { term : term } ,
success : function ( model ) {
success : function ( ) {
context . searchResult . show ( context . resultView ) ;
}
} ) ;
} else {
context . searchResult . close ( ) ;
}
} ,
@ -28,7 +28,7 @@ define(['app','Shared/NotificationCollection', 'AddSeries/SearchResultCollection
var quality = this . ui . qualityProfile . val ( ) ;
var rootFolderId = this . ui . rootFolder . val ( ) ;
//Todo: This wi i l create an invalid path on linux...
//Todo: This wi l l create an invalid path on linux...
var rootPath = this . model . get ( 'rootFolders' ) . get ( rootFolderId ) . get ( 'path' ) ;
var path = rootPath + "\\" + title ;
@ -62,11 +62,10 @@ define(['app','Shared/NotificationCollection', 'AddSeries/SearchResultCollection
NzbDrone . AddSeries . SearchResultView = Backbone . Marionette . CollectionView . extend ( {
itemView : NzbDrone . AddSeries . New . SearchItemView ,
className : 'accordion' ,
initialize : function ( ) {
this . listenTo ( this . collection , 'reset' , this . render ) ;
}
} ) ;
} ) ;
@ -1,8 +1,8 @@
< td name = "path" class = "span10" / >
< td name = "path" class = "span10" / >
< td class = "span3" >
< span name = "freeSpaceString" > < / span >
< / td >
< td class = "span1 nz-row-action" >
< div class = "btn btn-danger icon-minus x-remove" >
< / div >
< / div >
< / td >
@ -25,26 +25,4 @@
}
} ;
} ( ) ) ;
/ *
var xhrMixin = function ( ) {
console . log ( 'mixing in xhr' ) ;
var originalOnRender = Backbone . Marionette . View . prototype . onRender ;
var originalBeforeClose = Backbone . Marionette . View . prototype . beforeClose ;
Backbone . Marionette . View . prototype . onRender = function ( ) {
console . log ( 'render' ) ;
if ( originalOnRender ) {
originalOnRender . call ( this ) ;
}
} ;
Backbone . Marionette . View . prototype . beforeClose = function ( ) {
console . log ( 'beforeClose' ) ;
if ( originalBeforeClose ) {
originalBeforeClose . call ( this ) ;
}
} ;
} ( ) ; * /
} ( ) ) ;