Skip to content
This repository has been archived by the owner on Aug 21, 2018. It is now read-only.

Commit

Permalink
Release 0.11.32 (changes added to Changelog.txt)
Browse files Browse the repository at this point in the history
  • Loading branch information
adnaankhalil committed Mar 17, 2015
1 parent 0c072f3 commit 43d2a74
Show file tree
Hide file tree
Showing 8 changed files with 68 additions and 19 deletions.
7 changes: 7 additions & 0 deletions app/CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
BeLL Apps 0.11.32
-----------------------
- Bell-Installer Build.bat timeout increased (to 15 seconds)
- Issue of Firefox not being opened automatically fixed in Bell-Installer
- Fixed the Member_Edit at NationBell (Gear Sign after the Manager)
- Fixed the install_windows script

BeLL Apps 0.11.31
-----------------------
- This Release provides the BugFix for "BookShelf"
Expand Down
2 changes: 1 addition & 1 deletion app/nation/app/views/Dashboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ $(function () {
roles = roles + "Manager"
}
$('.visits').html(temp)
$('.name').html(member.get('firstName') + ' ' + member.get('lastName') + '<span style="font-size:15px;">' + roles + '</span>' + '&nbsp;<a href="../personal/index.html#member/edit/' + $.cookie('Member._id') + '"><i class="fui-gear"></i></a>')
$('.name').html(member.get('firstName') + ' ' + member.get('lastName') + '<span style="font-size:15px;">' + roles + '</span>' + '&nbsp;<a href="../MyApp/index.html#member/edit/' + $.cookie('Member._id') + '"><i class="fui-gear"></i></a>')
})
member.fetch()

Expand Down
12 changes: 12 additions & 0 deletions databases/communities.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@

var couchapp = require('couchapp')
, path = require('path')
;

ddoc = { _id:'_design/bell' }

ddoc.views = {

}

module.exports = ddoc;
12 changes: 12 additions & 0 deletions databases/configurations.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@

var couchapp = require('couchapp')
, path = require('path')
;

ddoc = { _id:'_design/bell' }

ddoc.views = {

}

module.exports = ddoc;
12 changes: 12 additions & 0 deletions databases/languages.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@

var couchapp = require('couchapp')
, path = require('path')
;

ddoc = { _id:'_design/bell' }

ddoc.views = {

}

module.exports = ddoc;
2 changes: 1 addition & 1 deletion init_docs/ConfigurationsDoc-Community.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"code":"testcommunity",
"type":"community",
"nationUrl":"nationbell-qa.ole.org:5986",
"version":"0.11.31",
"version":"0.11.32",
"notes":"Community Bell",
"availableLanguages":["English","French","Arabic","Urdu"],
"currentLanguage":"English"
Expand Down
2 changes: 1 addition & 1 deletion init_docs/ConfigurationsDoc-Nation.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"code":"nationbell",
"type":"nation",
"nationUrl":"nationbell-qa.ole.org:5986",
"version":"0.11.31",
"version":"0.11.32",
"notes":"Nation Bell",
"availableLanguages":["English","French","Arabic","Urdu"],
"currentLanguage":"English"
Expand Down
38 changes: 22 additions & 16 deletions install_windows
Original file line number Diff line number Diff line change
Expand Up @@ -47,22 +47,28 @@ function installDatabases() {

var b = 0
function installDesignDocs() {
var database = databases[b]
if (b !== databases.length) {
console.log("Inserting design docs for the " + database + " database");
var docToPush = 'databases\\' + database + '.js';
var targetDb = couchUrl + '/' + database;
exec('pushDocToDb.bat "'+docToPush+'" "'+targetDb+'"', function(error, stdout, stderr) {
if (error) console.log(error);
if (stderr) console.log(stderr);
console.log(stdout)
b++
installDesignDocs()
})
}
else {
createDefaultAdminMember()
}
var database = databases[b]
if (b !== databases.length) {
if(database != "communities" || database != "languages" || database != "configurations"){
console.log("Inserting design docs for the " + database + " database");
var docToPush = 'databases\\' + database + '.js';
var targetDb = couchUrl + '/' + database;
exec('pushDocToDb.bat "'+docToPush+'" "'+targetDb+'"', function(error, stdout, stderr) {
if (error) console.log(error);
if (stderr) console.log(stderr);
console.log(stdout)
b++
installDesignDocs()
})
}
else{
b++
installDesignDocs()
}
}
else {
createDefaultAdminMember()
}
}

function createDefaultAdminMember() {
Expand Down

0 comments on commit 43d2a74

Please sign in to comment.