Skip to content
This repository was archived by the owner on Nov 25, 2020. It is now read-only.

Commit ff6b2c5

Browse files
committed
Fix js errors in comments and info panel detection.
Add bootstrap.json to the list of files hidden by default.
1 parent 901b8d2 commit ff6b2c5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

core/src/plugins/core.ajaxplorer/ajxp_mixins.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
<global_param group="MIXIN_MESSAGE[Filesystem Commons]" name="HIDE_RECYCLE" type="boolean" label="MIXIN_MESSAGE[Hide recycle bin]" description="MIXIN_MESSAGE[Whether to show the recycle bin folder. Unlike in the following options, the folder will be hidden but still writeable.]" default="false"/>
4141
<global_param group="MIXIN_MESSAGE[Filesystem Commons]" name="HIDE_EXTENSIONS" type="string" label="MIXIN_MESSAGE[Hide extensions]" description="MIXIN_MESSAGE[Comma-separated list of extensions to hide. Extensions, files and folders that are hidden are also access forbidden.]" default="ser"/>
4242
<global_param group="MIXIN_MESSAGE[Filesystem Commons]" name="HIDE_FOLDERS" type="textarea" label="MIXIN_MESSAGE[Hide folders]" description="MIXIN_MESSAGE[Comma-separated list of specific folders to hide]"/>
43-
<global_param group="MIXIN_MESSAGE[Filesystem Commons]" name="HIDE_FILENAMES" type="textarea" label="MIXIN_MESSAGE[Hide files]" description="MIXIN_MESSAGE[Comma-separated list of specific files to hide]"/>
43+
<global_param group="MIXIN_MESSAGE[Filesystem Commons]" name="HIDE_FILENAMES" type="textarea" label="MIXIN_MESSAGE[Hide files]" description="MIXIN_MESSAGE[Comma-separated list of specific files to hide]" default="bootstrap.json"/>
4444
<global_param group="MIXIN_MESSAGE[Metadata and indexation]" name="DEFAULT_METASOURCES" type="string" label="MIXIN_MESSAGE[Default Metasources]" description="MIXIN_MESSAGE[Comma separated list of metastore and meta plugins, that will be automatically applied to all repositories created with this driver]" mandatory="false"/>
4545
</server_settings>
4646
</filesystem_commons>

core/src/plugins/core.conf/standard_conf_actions.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -649,12 +649,12 @@
649649
<div class="panelHeader">#{shared_string}</div>
650650
<div id="ajxp_workspace_info_panel_content"></div>
651651
<script>
652-
$("ajxp_workspace_info_panel").addClassName("infopanel_loading");
653652
bufferCallback("ajxp_load_repo_info_timer", 300,function(){
654653
if(!$('ajxp_workspace_info_panel_content') || !$('ajxp_workspace_info_panel_content').visible()){
655654
return;
656655
}
657656
if(!ajaxplorer.user) return;
657+
$("ajxp_workspace_info_panel").addClassName("infopanel_loading");
658658
var conn = new Connexion();
659659
conn.setParameters({get_action:'load_repository_info'});
660660
conn.onComplete = function(transport){

core/src/plugins/meta.comments/class.CommentsPanel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ Class.create("CommentsPanel", {
211211

212212
refreshScroller:function(container){
213213

214-
container.up('div[@ajxpClass="infoPanel"]').ajxpPaneObject.scrollbar.recalculateLayout();
214+
container.up('div[ajxpClass="InfoPanel"]').ajxpPaneObject.scrollbar.recalculateLayout();
215215

216216
}
217217

0 commit comments

Comments
 (0)