-
Notifications
You must be signed in to change notification settings - Fork 385
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* plugins to apps name change in all files * Guest role related issues fixed
- Loading branch information
Sivachidambaram. S
committed
Jan 14, 2016
1 parent
5ae5249
commit 6403622
Showing
40 changed files
with
362 additions
and
283 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
node_modules/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2032,3 +2032,6 @@ div.popped-out + div + div.datetimepicker { | |
} | ||
} | ||
} | ||
.right-mar { | ||
margin-right: 10px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
if (typeof App == 'undefined') { | ||
App = {}; | ||
} | ||
/** | ||
* App Collection | ||
* @class AppCollection | ||
* @constructor | ||
* @extends Backbone.Collection | ||
*/ | ||
App.AppCollection = Backbone.Collection.extend({ | ||
model: App.App | ||
}); |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<div class="well-lg navbar-btn"></div> | ||
<% if (apps.length > 0 ) { | ||
_.each(apps, function(app) { %> | ||
<div class="clearfix"> | ||
<div class="col-xs-10"> | ||
<h4><span class="c"><%- app.name %></span></h4> | ||
<div class="grayc top-space"><%- app.description %></div> | ||
<div class="grayc top-space"><%- i18next.t('Version') %> <%- app.version %> | <%- i18next.t('By') %> <a href="<%- app.authorUrl %>" target="_blank"><%- app.author %></a></div> | ||
</div> | ||
<div class="col-xs-2 pull-right"> | ||
<div class="row-fluid"> | ||
<div class="pull-right"> | ||
<div class="btn-group"> | ||
<button class="btn "><% if(app.enabled == true){ %><%- i18next.t('Enabled') %><% } else {%><%- i18next.t('Disabled') %><% } %></button> | ||
<button class="btn dropdown-toggle js-no-pjax xltriggered" data-toggle="dropdown"><i class="icon-cog"></i><span class="caret"></span></button> | ||
<ul class="dropdown-menu arrow arrow-right pull-right"> | ||
<li><a class="cur js-update-app" data-current-status="<%- app.enabled %>" data-folder="<%- app.folder %>" title="<% if(app.enabled == true){ %><%- i18next.t('Disabled') %><% } else {%><%- i18next.t('Enabled') %><% } %>"><i class="<% if(app.enabled == true){ %>icon-minus-sign<% } else {%>icon-plus-sign<% } %>"></i><% if(app.enabled == true){ %><%- i18next.t('Disabled') %><% } else {%><%- i18next.t('Enabled') %><% } %></a></li> | ||
<% if(app.settings){%> | ||
<li><a title="<%- i18next.t('Settings') %>" href="#/apps/<%- app.folder %>"><i class="icon-cog"></i><%- i18next.t('Settings') %></a></li> | ||
<% } %> | ||
</ul> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<hr/> | ||
<% | ||
}); | ||
} %> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<div class="well-sm"> | ||
<h3><%- app_settings[0].app_name %> - <%- i18next.t('Settings') %></h3> | ||
</div> | ||
<div class="alert alert-info list-group-item-text"><%= app_settings[0].settings_description %></div> | ||
<div class="well-sm"></div> | ||
<form class="js-app-setting-form" role="form" id="js-app-setting-form"> | ||
<% if (app_settings.length > 0 ) { | ||
var folder = ''; | ||
_.each(app_settings, function(app_setting) { | ||
folder = app_setting.folder; | ||
%> | ||
<div class="form-group col-xs-12"> | ||
<label class="col-sm-2 control-label col-xs-12"><%- app_setting.label %></label> | ||
<div class=" col-sm-7 col-xs-12"> | ||
<input type="text" value="<%- app_setting.value %>" class="form-control" name="<%- app_setting.name %>" id="<%- app_setting.name %>"> | ||
<div><span class="help-block"><%- app_setting.info %></span></div> | ||
</div> | ||
</div> | ||
<% }); | ||
} %> | ||
<input type="hidden" value="<%- folder %>" name="folder" id="folder"> | ||
<div class="form-group"> | ||
<label for="submit" class="sr-only col-sm-4 control-label col-xs-12"><%- i18next.t('Submit') %></label> | ||
<div class="col-xs-offset-2"> | ||
<input type="submit" value="<%- i18next.t('Update') %>" id="submit" class="btn btn-primary"> | ||
</div> | ||
</div> | ||
</form> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.