From cb567ba61045bc3c40d66c66cc987b1a3d2eb560 Mon Sep 17 00:00:00 2001 From: umar Date: Wed, 24 Aug 2016 17:28:07 +0530 Subject: [PATCH 001/141] sale --- arm_veegam.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 arm_veegam.json diff --git a/arm_veegam.json b/arm_veegam.json new file mode 100644 index 0000000..283a0e8 --- /dev/null +++ b/arm_veegam.json @@ -0,0 +1 @@ +{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"newStorageAccountName":{"type":"string","metadata":{"description":"This is the name of the your storage account"}},"vmDnsName":{"type":"string","metadata":{"description":"This is the unique DNS name of the for the public IP for your VM"}},"adminUsername":{"type":"string","metadata":{"description":"This is the username you wish to assign to your VMs admin account"}},"adminPassword":{"type":"securestring","metadata":{"description":"This is the password you wish to assign to your VMs admin account"}},"mySqlPassword":{"type":"securestring","metadata":{"description":"Password for your mySQL account"}},"vmSize":{"type":"string","metadata":{"description":"Size of VM"}}},"variables":{"nicName":"VMNic","addressPrefix":"10.0.0.0/16","imagePublisher":"Canonical","imageVersion":"latest","imageSKU":"14.04.2-LTS","imageOffer":"UbuntuServer","subnetName":"Subnet-1","subnetPrefix":"10.0.0.0/24","storageAccountType":"Standard_LRS","publicIPAddressName":"publicIP","publicIPAddressType":"Dynamic","vmStorageAccountContainerName":"vhds","vmName":"[parameters('vmDnsName')]","virtualNetworkName":"WPVNET","vnetID":"[resourceId('Microsoft.Network/virtualNetworks',variables('virtualNetworkName'))]","subnetRef":"[concat(variables('vnetID'),'/subnets/',variables('subnetName'))]"},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters('newStorageAccountName')]","apiVersion":"2015-05-01-preview","location":"[resourceGroup().location]","properties":{"accountType":"[variables('storageAccountType')]"}},{"apiVersion":"2015-05-01-preview","type":"Microsoft.Network/publicIPAddresses","name":"[variables('publicIPAddressName')]","location":"[resourceGroup().location]","properties":{"publicIPAllocationMethod":"[variables('publicIPAddressType')]","dnsSettings":{"domainNameLabel":"[parameters('vmDnsName')]"}}},{"apiVersion":"2015-05-01-preview","type":"Microsoft.Network/virtualNetworks","name":"[variables('virtualNetworkName')]","location":"[resourceGroup().location]","properties":{"addressSpace":{"addressPrefixes":["[variables('addressPrefix')]"]},"subnets":[{"name":"[variables('subnetName')]","properties":{"addressPrefix":"[variables('subnetPrefix')]"}}]}},{"apiVersion":"2015-05-01-preview","type":"Microsoft.Network/networkInterfaces","name":"[variables('nicName')]","location":"[resourceGroup().location]","dependsOn":["[concat('Microsoft.Network/publicIPAddresses/', variables('publicIPAddressName'))]","[concat('Microsoft.Network/virtualNetworks/', variables('virtualNetworkName'))]"],"properties":{"ipConfigurations":[{"name":"ipconfig1","properties":{"privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"[resourceId('Microsoft.Network/publicIPAddresses',variables('publicIPAddressName'))]"},"subnet":{"id":"[variables('subnetRef')]"}}}]}},{"apiVersion":"2015-05-01-preview","type":"Microsoft.Compute/virtualMachines","name":"[variables('vmName')]","location":"[resourceGroup().location]","dependsOn":["[concat('Microsoft.Storage/storageAccounts/', parameters('newStorageAccountName'))]","[concat('Microsoft.Network/networkInterfaces/', variables('nicName'))]"],"properties":{"hardwareProfile":{"vmSize":"[parameters('vmSize')]"},"osProfile":{"computername":"[variables('vmName')]","adminUsername":"[parameters('adminUsername')]","adminPassword":"[parameters('adminPassword')]"},"storageProfile":{"imageReference":{"publisher":"[variables('imagePublisher')]","offer":"[variables('imageOffer')]","sku":"[variables('imageSKU')]","version":"[variables('imageVersion')]"},"osDisk":{"name":"osdisk1","vhd":{"uri":"[concat('http://',parameters('newStorageAccountName'),'.blob.core.windows.net/',variables('vmStorageAccountContainerName'),'/','osdisk1.vhd')]"},"caching":"ReadWrite","createOption":"FromImage"}},"networkProfile":{"networkInterfaces":[{"id":"[resourceId('Microsoft.Network/networkInterfaces',variables('nicName'))]"}]}}},{"type":"Microsoft.Compute/virtualMachines/extensions","name":"[concat(variables('vmName'),'/newuserscript')]","apiVersion":"2015-05-01-preview","location":"[resourceGroup().location]","dependsOn":["[concat('Microsoft.Compute/virtualMachines/', variables('vmName'))]"],"properties":{"publisher":"Microsoft.OSTCExtensions","type":"CustomScriptForLinux","typeHandlerVersion":"1.4","settings":{"fileUris":["https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/wordpress-single-vm-ubuntu/install_wordpress.sh"]},"protectedSettings":{"commandToExecute":"[concat('sh install_wordpress.sh ', parameters('mySqlPassword'))]"}}}]} \ No newline at end of file From d109aa97bed6b0f401386a27c1066eb0ca982483 Mon Sep 17 00:00:00 2001 From: umar Date: Wed, 17 May 2017 19:09:44 +0530 Subject: [PATCH 002/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index 283a0e8..6a462ed 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -1 +1 @@ -{"$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"newStorageAccountName":{"type":"string","metadata":{"description":"This is the name of the your storage account"}},"vmDnsName":{"type":"string","metadata":{"description":"This is the unique DNS name of the for the public IP for your VM"}},"adminUsername":{"type":"string","metadata":{"description":"This is the username you wish to assign to your VMs admin account"}},"adminPassword":{"type":"securestring","metadata":{"description":"This is the password you wish to assign to your VMs admin account"}},"mySqlPassword":{"type":"securestring","metadata":{"description":"Password for your mySQL account"}},"vmSize":{"type":"string","metadata":{"description":"Size of VM"}}},"variables":{"nicName":"VMNic","addressPrefix":"10.0.0.0/16","imagePublisher":"Canonical","imageVersion":"latest","imageSKU":"14.04.2-LTS","imageOffer":"UbuntuServer","subnetName":"Subnet-1","subnetPrefix":"10.0.0.0/24","storageAccountType":"Standard_LRS","publicIPAddressName":"publicIP","publicIPAddressType":"Dynamic","vmStorageAccountContainerName":"vhds","vmName":"[parameters('vmDnsName')]","virtualNetworkName":"WPVNET","vnetID":"[resourceId('Microsoft.Network/virtualNetworks',variables('virtualNetworkName'))]","subnetRef":"[concat(variables('vnetID'),'/subnets/',variables('subnetName'))]"},"resources":[{"type":"Microsoft.Storage/storageAccounts","name":"[parameters('newStorageAccountName')]","apiVersion":"2015-05-01-preview","location":"[resourceGroup().location]","properties":{"accountType":"[variables('storageAccountType')]"}},{"apiVersion":"2015-05-01-preview","type":"Microsoft.Network/publicIPAddresses","name":"[variables('publicIPAddressName')]","location":"[resourceGroup().location]","properties":{"publicIPAllocationMethod":"[variables('publicIPAddressType')]","dnsSettings":{"domainNameLabel":"[parameters('vmDnsName')]"}}},{"apiVersion":"2015-05-01-preview","type":"Microsoft.Network/virtualNetworks","name":"[variables('virtualNetworkName')]","location":"[resourceGroup().location]","properties":{"addressSpace":{"addressPrefixes":["[variables('addressPrefix')]"]},"subnets":[{"name":"[variables('subnetName')]","properties":{"addressPrefix":"[variables('subnetPrefix')]"}}]}},{"apiVersion":"2015-05-01-preview","type":"Microsoft.Network/networkInterfaces","name":"[variables('nicName')]","location":"[resourceGroup().location]","dependsOn":["[concat('Microsoft.Network/publicIPAddresses/', variables('publicIPAddressName'))]","[concat('Microsoft.Network/virtualNetworks/', variables('virtualNetworkName'))]"],"properties":{"ipConfigurations":[{"name":"ipconfig1","properties":{"privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"[resourceId('Microsoft.Network/publicIPAddresses',variables('publicIPAddressName'))]"},"subnet":{"id":"[variables('subnetRef')]"}}}]}},{"apiVersion":"2015-05-01-preview","type":"Microsoft.Compute/virtualMachines","name":"[variables('vmName')]","location":"[resourceGroup().location]","dependsOn":["[concat('Microsoft.Storage/storageAccounts/', parameters('newStorageAccountName'))]","[concat('Microsoft.Network/networkInterfaces/', variables('nicName'))]"],"properties":{"hardwareProfile":{"vmSize":"[parameters('vmSize')]"},"osProfile":{"computername":"[variables('vmName')]","adminUsername":"[parameters('adminUsername')]","adminPassword":"[parameters('adminPassword')]"},"storageProfile":{"imageReference":{"publisher":"[variables('imagePublisher')]","offer":"[variables('imageOffer')]","sku":"[variables('imageSKU')]","version":"[variables('imageVersion')]"},"osDisk":{"name":"osdisk1","vhd":{"uri":"[concat('http://',parameters('newStorageAccountName'),'.blob.core.windows.net/',variables('vmStorageAccountContainerName'),'/','osdisk1.vhd')]"},"caching":"ReadWrite","createOption":"FromImage"}},"networkProfile":{"networkInterfaces":[{"id":"[resourceId('Microsoft.Network/networkInterfaces',variables('nicName'))]"}]}}},{"type":"Microsoft.Compute/virtualMachines/extensions","name":"[concat(variables('vmName'),'/newuserscript')]","apiVersion":"2015-05-01-preview","location":"[resourceGroup().location]","dependsOn":["[concat('Microsoft.Compute/virtualMachines/', variables('vmName'))]"],"properties":{"publisher":"Microsoft.OSTCExtensions","type":"CustomScriptForLinux","typeHandlerVersion":"1.4","settings":{"fileUris":["https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/wordpress-single-vm-ubuntu/install_wordpress.sh"]},"protectedSettings":{"commandToExecute":"[concat('sh install_wordpress.sh ', parameters('mySqlPassword'))]"}}}]} \ No newline at end of file +{"$schema":"https://schema.management.azure.com/schemas/2015-0 From ef19eb17efc30ceaa7e1a5cfea0308d99a2064a5 Mon Sep 17 00:00:00 2001 From: umar Date: Wed, 17 May 2017 20:06:00 +0530 Subject: [PATCH 003/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index 6a462ed..5119330 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -1 +1 @@ -{"$schema":"https://schema.management.azure.com/schemas/2015-0 +{"ref":"refs/heads/featureA","url":"https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA","object":{"type":"commit","sha":"aa218f56b14c9653891f9e74264a383fa43fefbd","url":"https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd"}} From 6ee04e048926b1552a3901f5d2c57d99d835f1de Mon Sep 17 00:00:00 2001 From: umar Date: Thu, 18 May 2017 10:52:45 +0530 Subject: [PATCH 004/141] d --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index 5119330..ee393bc 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -1 +1 @@ -{"ref":"refs/heads/featureA","url":"https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA","object":{"type":"commit","sha":"aa218f56b14c9653891f9e74264a383fa43fefbd","url":"https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd"}} +{"ref":"refs/heads/featureA","url":"https://api.github.com/repos/octocat/Hello-orld/git/refs/heads/featureA","object":{"type":"commit","sha":"aa218f56b14c9653891f9e74264a383fa43fefbd","url":"https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd"}} From 29527a3635de401b3b4ab2df75d149821ecbc688 Mon Sep 17 00:00:00 2001 From: umar Date: Thu, 18 May 2017 10:53:37 +0530 Subject: [PATCH 005/141] e --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index ee393bc..c8eedca 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -1 +1 @@ -{"ref":"refs/heads/featureA","url":"https://api.github.com/repos/octocat/Hello-orld/git/refs/heads/featureA","object":{"type":"commit","sha":"aa218f56b14c9653891f9e74264a383fa43fefbd","url":"https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd"}} +{"ref":"refs/heads/featureA","url":"https://api.github.com/repos/octocat/Hello-orld/git/refs/heads/feaeureA","object":{"type":"commit","sha":"aa218f56b14c9653891f9e74264a383fa43fefbd","url":"https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd"}} From a0cc332e6686f06cee2e8473ce9d8d82245a80df Mon Sep 17 00:00:00 2001 From: umar Date: Thu, 18 May 2017 10:56:11 +0530 Subject: [PATCH 006/141] r --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index c8eedca..0947b60 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -1 +1 @@ -{"ref":"refs/heads/featureA","url":"https://api.github.com/repos/octocat/Hello-orld/git/refs/heads/feaeureA","object":{"type":"commit","sha":"aa218f56b14c9653891f9e74264a383fa43fefbd","url":"https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd"}} +{"ref":"refs/heads/featureA","url":"https://api.github.com/repos/octocat/Hello-orld/git/refs/headsddd/feaeureA","object":{"type":"commit","sha":"aa218f56b14c9653891f9e74264a383fa43fefbd","url":"https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd"}} From 275636ac8bbc66da5b3b88fbcf9609673e63f5c4 Mon Sep 17 00:00:00 2001 From: umar Date: Thu, 18 May 2017 10:57:39 +0530 Subject: [PATCH 007/141] Update arm_veegam.json --- arm_veegam.json | 1 + 1 file changed, 1 insertion(+) diff --git a/arm_veegam.json b/arm_veegam.json index 0947b60..68e51eb 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -1 +1,2 @@ {"ref":"refs/heads/featureA","url":"https://api.github.com/repos/octocat/Hello-orld/git/refs/headsddd/feaeureA","object":{"type":"commit","sha":"aa218f56b14c9653891f9e74264a383fa43fefbd","url":"https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd"}} +dddada From 0f87fa190828ae8cb630e500ca02ad6d656ffd73 Mon Sep 17 00:00:00 2001 From: umar Date: Thu, 18 May 2017 10:59:45 +0530 Subject: [PATCH 008/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index 68e51eb..b29e572 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -1,2 +1,2 @@ -{"ref":"refs/heads/featureA","url":"https://api.github.com/repos/octocat/Hello-orld/git/refs/headsddd/feaeureA","object":{"type":"commit","sha":"aa218f56b14c9653891f9e74264a383fa43fefbd","url":"https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd"}} +{"ref":"refs/heads/featureA","url":"https://api.github.com/repos/octocat/Hello-orld/gitwww/refs/headsddd/feaeureA","object":{"type":"commit","sha":"aa218f56b14c9653891f9e74264a383fa43fefbd","url":"https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd"}} dddada From 44b6ce615486d5dad7e1be3371424a4d528cbb48 Mon Sep 17 00:00:00 2001 From: umar Date: Fri, 19 May 2017 18:45:01 +0530 Subject: [PATCH 009/141] Update arm_veegam.json --- arm_veegam.json | 1 + 1 file changed, 1 insertion(+) diff --git a/arm_veegam.json b/arm_veegam.json index b29e572..b249d8f 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -1,2 +1,3 @@ {"ref":"refs/heads/featureA","url":"https://api.github.com/repos/octocat/Hello-orld/gitwww/refs/headsddd/feaeureA","object":{"type":"commit","sha":"aa218f56b14c9653891f9e74264a383fa43fefbd","url":"https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd"}} dddada +dd From 1633518bf70af2928c3700a71d34648b6cb386cb Mon Sep 17 00:00:00 2001 From: umar Date: Fri, 19 May 2017 19:46:10 +0530 Subject: [PATCH 010/141] Update arm_veegam.json --- arm_veegam.json | 1 + 1 file changed, 1 insertion(+) diff --git a/arm_veegam.json b/arm_veegam.json index b249d8f..af29e60 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -1,3 +1,4 @@ {"ref":"refs/heads/featureA","url":"https://api.github.com/repos/octocat/Hello-orld/gitwww/refs/headsddd/feaeureA","object":{"type":"commit","sha":"aa218f56b14c9653891f9e74264a383fa43fefbd","url":"https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd"}} dddada dd +dd From b29ad229a577602332b5017e05a745afe6219a0f Mon Sep 17 00:00:00 2001 From: umar Date: Fri, 19 May 2017 19:48:22 +0530 Subject: [PATCH 011/141] dd --- arm_veegam.json | 1 + 1 file changed, 1 insertion(+) diff --git a/arm_veegam.json b/arm_veegam.json index af29e60..3c0a3b6 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -2,3 +2,4 @@ dddada dd dd +dd From b8a7a66dbe0b9b3903a930f405a85d6c082d30fa Mon Sep 17 00:00:00 2001 From: umar Date: Fri, 19 May 2017 19:50:32 +0530 Subject: [PATCH 012/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index 3c0a3b6..e1a5968 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -2,4 +2,4 @@ dddada dd dd -dd +dddd From a74ab45f0bdec053143d611cb9f74046950fd1a4 Mon Sep 17 00:00:00 2001 From: umar Date: Fri, 19 May 2017 20:06:07 +0530 Subject: [PATCH 013/141] Update arm_veegam.json --- arm_veegam.json | 1 + 1 file changed, 1 insertion(+) diff --git a/arm_veegam.json b/arm_veegam.json index e1a5968..43790d1 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -3,3 +3,4 @@ dddada dd dd dddd +sddd From 651b675c7f4febda5c94f2e7b7538615dc47f728 Mon Sep 17 00:00:00 2001 From: umar Date: Fri, 19 May 2017 20:19:06 +0530 Subject: [PATCH 014/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index 43790d1..59de595 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -1,5 +1,5 @@ {"ref":"refs/heads/featureA","url":"https://api.github.com/repos/octocat/Hello-orld/gitwww/refs/headsddd/feaeureA","object":{"type":"commit","sha":"aa218f56b14c9653891f9e74264a383fa43fefbd","url":"https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd"}} -dddada +dddadadd dd dd dddd From 9cebc30aa393a174e4c0e965ec30402d62140a4e Mon Sep 17 00:00:00 2001 From: umar Date: Fri, 19 May 2017 20:45:04 +0530 Subject: [PATCH 015/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index 59de595..68f0be9 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -1,6 +1,6 @@ {"ref":"refs/heads/featureA","url":"https://api.github.com/repos/octocat/Hello-orld/gitwww/refs/headsddd/feaeureA","object":{"type":"commit","sha":"aa218f56b14c9653891f9e74264a383fa43fefbd","url":"https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd"}} dddadadd -dd +dddd dd dddd sddd From 5211507059ec708e4097dc0b822c08d53c82a50c Mon Sep 17 00:00:00 2001 From: umar Date: Fri, 19 May 2017 20:53:02 +0530 Subject: [PATCH 016/141] Update arm_veegam.json --- arm_veegam.json | 1 + 1 file changed, 1 insertion(+) diff --git a/arm_veegam.json b/arm_veegam.json index 68f0be9..f37a95c 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -4,3 +4,4 @@ dddd dd dddd sddd +d From cc7bf4c0c88974f0cb6e53bfb877b4fc829f9a45 Mon Sep 17 00:00:00 2001 From: umar Date: Fri, 19 May 2017 20:55:18 +0530 Subject: [PATCH 017/141] Update arm_veegam.json --- arm_veegam.json | 1 + 1 file changed, 1 insertion(+) diff --git a/arm_veegam.json b/arm_veegam.json index f37a95c..5f3ae0a 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -5,3 +5,4 @@ dd dddd sddd d +dd From d2b422fed8302cfc1f0918aef845c71ae892bb9d Mon Sep 17 00:00:00 2001 From: umar Date: Tue, 23 May 2017 18:40:34 +0530 Subject: [PATCH 018/141] s commit --- arm_veegam.json | 1 + 1 file changed, 1 insertion(+) diff --git a/arm_veegam.json b/arm_veegam.json index 5f3ae0a..dbece4e 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -6,3 +6,4 @@ dddd sddd d dd +h From 36041410c3cb897fa82a8dbccabc52a35910438b Mon Sep 17 00:00:00 2001 From: umar Date: Thu, 25 May 2017 13:42:58 +0530 Subject: [PATCH 019/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index dbece4e..e0b3db5 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -6,4 +6,4 @@ dddd sddd d dd -h +hd From f1e20eb1315acaa7168087e8e5f1e219dd839661 Mon Sep 17 00:00:00 2001 From: umar Date: Thu, 25 May 2017 13:45:37 +0530 Subject: [PATCH 020/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index e0b3db5..8afce05 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -4,6 +4,6 @@ dddd dd dddd sddd -d +dd dd hd From 224486970123652965332b5f1d99d1d8bd0872ba Mon Sep 17 00:00:00 2001 From: umar Date: Thu, 25 May 2017 13:46:07 +0530 Subject: [PATCH 021/141] Update arm_veegam.json --- arm_veegam.json | 1 + 1 file changed, 1 insertion(+) diff --git a/arm_veegam.json b/arm_veegam.json index 8afce05..6b72b64 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -7,3 +7,4 @@ sddd dd dd hd +dd From 8682334f72c5fc56be7409ccf588463a3659b20a Mon Sep 17 00:00:00 2001 From: umar Date: Thu, 25 May 2017 13:47:28 +0530 Subject: [PATCH 022/141] Update arm_veegam.json --- arm_veegam.json | 1 + 1 file changed, 1 insertion(+) diff --git a/arm_veegam.json b/arm_veegam.json index 6b72b64..a079028 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -8,3 +8,4 @@ dd dd hd dd +d From 47571a02a75374d34e4d00028a5585cdecaa6096 Mon Sep 17 00:00:00 2001 From: umar Date: Thu, 25 May 2017 13:48:50 +0530 Subject: [PATCH 023/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index a079028..95e35b9 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -5,7 +5,7 @@ dd dddd sddd dd -dd +ddd hd dd d From cbce54edc3c8efbf8790355655eff19669697508 Mon Sep 17 00:00:00 2001 From: umar Date: Thu, 25 May 2017 13:53:21 +0530 Subject: [PATCH 024/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index 95e35b9..e279b8c 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -4,7 +4,7 @@ dddd dd dddd sddd -dd +ddd ddd hd dd From 35df73571b101d7d997bf75bd12e1c999becc326 Mon Sep 17 00:00:00 2001 From: umar Date: Thu, 25 May 2017 13:54:59 +0530 Subject: [PATCH 025/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index e279b8c..924ff18 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -8,4 +8,4 @@ ddd ddd hd dd -d +dd From 83e0c493e66c7710c9509a6bfa7a3cc6a2cee8bc Mon Sep 17 00:00:00 2001 From: umar Date: Thu, 25 May 2017 13:55:19 +0530 Subject: [PATCH 026/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index 924ff18..e7d7b77 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -7,5 +7,5 @@ sddd ddd ddd hd -dd +ddd dd From c1ed940f9da641cd345bab2b43c6219d22d23d1a Mon Sep 17 00:00:00 2001 From: umar Date: Thu, 25 May 2017 13:56:02 +0530 Subject: [PATCH 027/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index e7d7b77..f6ac128 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -4,7 +4,7 @@ dddd dd dddd sddd -ddd +dddr ddd hd ddd From 3cd2a81780a8b4d06c0126ca69b4ca3930916128 Mon Sep 17 00:00:00 2001 From: umar Date: Thu, 25 May 2017 13:58:16 +0530 Subject: [PATCH 028/141] Update app.js --- app/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/app.js b/app/app.js index de786e8..f2a38e5 100644 --- a/app/app.js +++ b/app/app.js @@ -5,7 +5,7 @@ angular.module('myApp', [ 'myApp.layout', 'myApp.version', 'ngMaterial', - 'ngCookies', + 'ngCookies',d 'myApp.login', 'auth0', 'FBAngular', From 7d4a23654bacbbd6c8a8eec8d83bc53fad607309 Mon Sep 17 00:00:00 2001 From: umar Date: Thu, 25 May 2017 16:10:41 +0530 Subject: [PATCH 029/141] Update app.js --- app/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/app.js b/app/app.js index f2a38e5..4d18442 100644 --- a/app/app.js +++ b/app/app.js @@ -18,7 +18,7 @@ angular.module('myApp', [ var children = $('#widgetsWrapper').children(); var totalWidth = 0; for (var i = 0; i < children.length; i++) { - totalWidth += children[i].offsetWidth; + totalWidth += children[i].offsetWidth;d } var elem = $('#panesContainer'); elem.scrollLeft(totalWidth); From 57cfc01f267570af4805637aa04781c885f51a05 Mon Sep 17 00:00:00 2001 From: umar Date: Thu, 25 May 2017 16:11:20 +0530 Subject: [PATCH 030/141] Update app.js --- app/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/app.js b/app/app.js index 4d18442..2fa7b3a 100644 --- a/app/app.js +++ b/app/app.js @@ -16,7 +16,7 @@ angular.module('myApp', [ scrollRight :function (){ var children = $('#widgetsWrapper').children(); - var totalWidth = 0; + var totalWidth = 0;d for (var i = 0; i < children.length; i++) { totalWidth += children[i].offsetWidth;d } From 19d753095f907e63e6eb76ff126fe0340461485c Mon Sep 17 00:00:00 2001 From: umar Date: Thu, 25 May 2017 16:13:52 +0530 Subject: [PATCH 031/141] Update app.js --- app/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/app.js b/app/app.js index 2fa7b3a..e9e7087 100644 --- a/app/app.js +++ b/app/app.js @@ -26,7 +26,7 @@ angular.module('myApp', [ } }). config([ - '$locationProvider', + '$locationProvider',d '$routeProvider', '$mdThemingProvider', '$mdIconProvider', From 8b79114d2e92417c9b94adca12ed6a56bc25d844 Mon Sep 17 00:00:00 2001 From: umar Date: Thu, 25 May 2017 16:15:37 +0530 Subject: [PATCH 032/141] Update app.js --- app/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/app.js b/app/app.js index e9e7087..c244dad 100644 --- a/app/app.js +++ b/app/app.js @@ -15,7 +15,7 @@ angular.module('myApp', [ return { scrollRight :function (){ - var children = $('#widgetsWrapper').children(); + var children = $('#widgetsWrapper').children();d var totalWidth = 0;d for (var i = 0; i < children.length; i++) { totalWidth += children[i].offsetWidth;d From 2644d1fa56e05c20767e24e1ef81a9867156c0d8 Mon Sep 17 00:00:00 2001 From: umar Date: Thu, 25 May 2017 16:16:39 +0530 Subject: [PATCH 033/141] Update app.js --- app/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/app.js b/app/app.js index c244dad..98a622d 100644 --- a/app/app.js +++ b/app/app.js @@ -15,7 +15,7 @@ angular.module('myApp', [ return { scrollRight :function (){ - var children = $('#widgetsWrapper').children();d + var children = $('#widgetsWrapper').children();ddd var totalWidth = 0;d for (var i = 0; i < children.length; i++) { totalWidth += children[i].offsetWidth;d From c266d58f7fdcf927b0360a279c5b5660c5daf640 Mon Sep 17 00:00:00 2001 From: umar Date: Thu, 25 May 2017 16:17:28 +0530 Subject: [PATCH 034/141] Update app.js --- app/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/app.js b/app/app.js index 98a622d..caafe95 100644 --- a/app/app.js +++ b/app/app.js @@ -37,7 +37,7 @@ config([ $routeProvider, $mdThemingProvider, $mdIconProvider, - $stateProvider, + $stateProvider,d $urlRouterProvider ) { $mdIconProvider.fontSet('md', 'material-icons'); From 36bc95fcee73d4c149d330d4b9871032b20ac61d Mon Sep 17 00:00:00 2001 From: umar Date: Thu, 25 May 2017 16:20:00 +0530 Subject: [PATCH 035/141] Update app.js --- app/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/app.js b/app/app.js index caafe95..2bf5a4d 100644 --- a/app/app.js +++ b/app/app.js @@ -5,7 +5,7 @@ angular.module('myApp', [ 'myApp.layout', 'myApp.version', 'ngMaterial', - 'ngCookies',d + 'ngCookies',dd 'myApp.login', 'auth0', 'FBAngular', From 0a67a0380385e59b59f0e2b1bf2169a3700530fc Mon Sep 17 00:00:00 2001 From: umar Date: Thu, 25 May 2017 16:24:41 +0530 Subject: [PATCH 036/141] Update app.js --- app/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/app.js b/app/app.js index 2bf5a4d..a6cf731 100644 --- a/app/app.js +++ b/app/app.js @@ -27,7 +27,7 @@ angular.module('myApp', [ }). config([ '$locationProvider',d - '$routeProvider', + '$routeProvider',c '$mdThemingProvider', '$mdIconProvider', '$stateProvider', From f8a855be4f9b0c620dcdec1e0cf819d59659dbcd Mon Sep 17 00:00:00 2001 From: umar Date: Mon, 12 Jun 2017 18:01:48 +0530 Subject: [PATCH 037/141] some commit --- web.config | 1 + 1 file changed, 1 insertion(+) diff --git a/web.config b/web.config index 8b13789..e5476c0 100644 --- a/web.config +++ b/web.config @@ -1 +1,2 @@ +dd From 37577ab610f1cb2db97efd0df00efe18df5827e7 Mon Sep 17 00:00:00 2001 From: umar Date: Mon, 12 Jun 2017 18:06:17 +0530 Subject: [PATCH 038/141] Update app.js --- app/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/app.js b/app/app.js index a6cf731..6aa6dda 100644 --- a/app/app.js +++ b/app/app.js @@ -33,7 +33,7 @@ config([ '$stateProvider', '$urlRouterProvider', function( - $locationProvider, + $locationProvider,d $routeProvider, $mdThemingProvider, $mdIconProvider, From 16adff812603cda240e25191dae09dae4de3538b Mon Sep 17 00:00:00 2001 From: umar Date: Mon, 12 Jun 2017 18:08:06 +0530 Subject: [PATCH 039/141] Update app.js --- app/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/app.js b/app/app.js index 6aa6dda..ba0c7a7 100644 --- a/app/app.js +++ b/app/app.js @@ -21,7 +21,7 @@ angular.module('myApp', [ totalWidth += children[i].offsetWidth;d } var elem = $('#panesContainer'); - elem.scrollLeft(totalWidth); + elem.scrollLeft(totalWidthd } } }). From 0aa35eebedd8f957406d92e11d7ab069421cb33e Mon Sep 17 00:00:00 2001 From: umar Date: Mon, 12 Jun 2017 18:23:41 +0530 Subject: [PATCH 040/141] Create test.json --- app/test.json | 1 + 1 file changed, 1 insertion(+) diff --git a/app/test.json b/app/test.json index 8b13789..e5476c0 100644 --- a/app/test.json +++ b/app/test.json @@ -1 +1,2 @@ +dd From 0c06cd3c5c46d044971b35eff1a7ab8c8660176b Mon Sep 17 00:00:00 2001 From: umar Date: Mon, 12 Jun 2017 18:34:53 +0530 Subject: [PATCH 041/141] Update index.html --- app/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/index.html b/app/index.html index 0267162..ff7990a 100644 --- a/app/index.html +++ b/app/index.html @@ -26,7 +26,7 @@ -
+
c - +dd From 5e679021848f627065e470137e4e12868b913dd5 Mon Sep 17 00:00:00 2001 From: umar Date: Wed, 14 Jun 2017 03:24:04 +0530 Subject: [PATCH 052/141] Update index.html --- app/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/index.html b/app/index.html index acfda9b..2c98f56 100644 --- a/app/index.html +++ b/app/index.html @@ -38,7 +38,7 @@ - +d From c7a194a5b117513f10f6cccebaac8dbadcd0ff7d Mon Sep 17 00:00:00 2001 From: umar Date: Fri, 16 Jun 2017 17:46:29 +0530 Subject: [PATCH 053/141] Update animations.css --- app/css/animations.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/css/animations.css b/app/css/animations.css index 7a905c9..3beb833 100644 --- a/app/css/animations.css +++ b/app/css/animations.css @@ -5,7 +5,7 @@ * Version - 3.5.1 * Licensed under the MIT license - http://opensource.org/licenses/MIT * - * Copyright (c) 2016 Daniel Eden + * Copyright (c) 2016 Daniel Edendd */ .animated { From 46062d227cbd1d878f054637a7550840289d57c9 Mon Sep 17 00:00:00 2001 From: umar Date: Fri, 16 Jun 2017 18:03:32 +0530 Subject: [PATCH 054/141] Update animations.css --- app/css/animations.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/css/animations.css b/app/css/animations.css index 3beb833..3973c17 100644 --- a/app/css/animations.css +++ b/app/css/animations.css @@ -7,7 +7,7 @@ * * Copyright (c) 2016 Daniel Edendd */ - +d .animated { -webkit-animation-duration: 0.3s; animation-duration: 0.3s; From f2f126a8d9e783e73900a6c91222699c223036c0 Mon Sep 17 00:00:00 2001 From: umar Date: Fri, 16 Jun 2017 18:07:42 +0530 Subject: [PATCH 055/141] Update animations.css --- app/css/animations.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/css/animations.css b/app/css/animations.css index 3973c17..a414d56 100644 --- a/app/css/animations.css +++ b/app/css/animations.css @@ -6,7 +6,7 @@ * Licensed under the MIT license - http://opensource.org/licenses/MIT * * Copyright (c) 2016 Daniel Edendd - */ + */c d .animated { -webkit-animation-duration: 0.3s; From d7582cdc7c85ec91db8a249d3995abfaa94adc20 Mon Sep 17 00:00:00 2001 From: umar Date: Fri, 16 Jun 2017 19:52:02 +0530 Subject: [PATCH 056/141] Update app.js --- app/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/app.js b/app/app.js index 67c3548..f368aaf 100644 --- a/app/app.js +++ b/app/app.js @@ -5,7 +5,7 @@ angular.module('myApp', [ 'myApp.layout', 'myApp.version', 'ngMaterial', - 'ngCookies',dd + 'ngCookies',ddn 'myApp.login', 'auth0', 'FBAngular', From eee87680b369bf04bd64b9ce69f7a7544455a86b Mon Sep 17 00:00:00 2001 From: umar Date: Fri, 16 Jun 2017 20:43:42 +0530 Subject: [PATCH 057/141] Update app.js --- app/app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/app.js b/app/app.js index f368aaf..814a111 100644 --- a/app/app.js +++ b/app/app.js @@ -4,8 +4,8 @@ angular.module('myApp', [ 'ngRoute', 'myApp.layout', 'myApp.version', - 'ngMaterial', - 'ngCookies',ddn + 'ngMaterial',dd + 'ngCookies',ddnd 'myApp.login', 'auth0', 'FBAngular', From e80dbf9b398fa6ae7ee1ffed203f0aa9c547515a Mon Sep 17 00:00:00 2001 From: umar Date: Mon, 19 Jun 2017 18:40:04 +0530 Subject: [PATCH 058/141] Update app.js --- app/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/app.js b/app/app.js index 814a111..3704749 100644 --- a/app/app.js +++ b/app/app.js @@ -9,7 +9,7 @@ angular.module('myApp', [ 'myApp.login', 'auth0', 'FBAngular', - 'ui.router', + 'ui.router',c 'ng.jsoneditor' ]).factory('factoryServices', function(){ return { From 6dbf799e5f8895fe6897e03a1ec9d1e04844394f Mon Sep 17 00:00:00 2001 From: umar Date: Mon, 19 Jun 2017 18:49:04 +0530 Subject: [PATCH 059/141] Update app.js --- app/app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/app.js b/app/app.js index 3704749..349dd8b 100644 --- a/app/app.js +++ b/app/app.js @@ -1,7 +1,7 @@ 'use strict'; angular.module('myApp', [ - 'ngRoute', + 'ngRoute',d 'myApp.layout', 'myApp.version', 'ngMaterial',dd @@ -20,7 +20,7 @@ angular.module('myApp', [ for (var i = 0; i < children.length; i++) { totalWidth += children[i].offsetWidth;d } - var elem = $('#panesContainer'); + var elem = $('#panesContainer');ff elem.scrollLeft(totalWidthd } } From cbf56112f7df89e6066bd2aa8924a6e87058fb61 Mon Sep 17 00:00:00 2001 From: umar Date: Mon, 19 Jun 2017 18:58:04 +0530 Subject: [PATCH 060/141] Update app.js --- app/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/app.js b/app/app.js index 349dd8b..aacc221 100644 --- a/app/app.js +++ b/app/app.js @@ -5,7 +5,7 @@ angular.module('myApp', [ 'myApp.layout', 'myApp.version', 'ngMaterial',dd - 'ngCookies',ddnd + 'ngCookies',ddndf 'myApp.login', 'auth0', 'FBAngular', From d5e1e2ea69e65d20b4227b6055633d8a196b8fbe Mon Sep 17 00:00:00 2001 From: umar Date: Mon, 19 Jun 2017 19:31:22 +0530 Subject: [PATCH 061/141] Update app.js --- app/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/app.js b/app/app.js index aacc221..ed3f16e 100644 --- a/app/app.js +++ b/app/app.js @@ -7,7 +7,7 @@ angular.module('myApp', [ 'ngMaterial',dd 'ngCookies',ddndf 'myApp.login', - 'auth0', + 'auth0',c 'FBAngular', 'ui.router',c 'ng.jsoneditor' From 22e1902e6c4205348005c75dd5eb90b85683bdc3 Mon Sep 17 00:00:00 2001 From: umar Date: Mon, 19 Jun 2017 19:36:21 +0530 Subject: [PATCH 062/141] Update app.js --- app/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/app.js b/app/app.js index ed3f16e..dabc6ca 100644 --- a/app/app.js +++ b/app/app.js @@ -15,7 +15,7 @@ angular.module('myApp', [ return { scrollRight :function (){ - var children = $('#widgetsWrapper').children();ddd + var children = $('#widgetsWrapper').children();dddd var totalWidth = 0;d for (var i = 0; i < children.length; i++) { totalWidth += children[i].offsetWidth;d From 72499c65c1e124d7ac8a712c61e6b43581c91057 Mon Sep 17 00:00:00 2001 From: umar Date: Mon, 19 Jun 2017 19:39:24 +0530 Subject: [PATCH 063/141] Update app.js --- app/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/app.js b/app/app.js index dabc6ca..676b36c 100644 --- a/app/app.js +++ b/app/app.js @@ -20,7 +20,7 @@ angular.module('myApp', [ for (var i = 0; i < children.length; i++) { totalWidth += children[i].offsetWidth;d } - var elem = $('#panesContainer');ff + var elem = $('#panesContainer');ffx elem.scrollLeft(totalWidthd } } From 862da8bd97c88aca96866e9d4d3e553d9f8f1724 Mon Sep 17 00:00:00 2001 From: umar Date: Mon, 19 Jun 2017 19:41:25 +0530 Subject: [PATCH 064/141] Update app.js --- app/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/app.js b/app/app.js index 676b36c..c52893a 100644 --- a/app/app.js +++ b/app/app.js @@ -26,7 +26,7 @@ angular.module('myApp', [ } }). config([ - '$locationProvider',d + '$locationProvider',dd '$routeProvider',c '$mdThemingProvider', '$mdIconProvider', From 1390a4366490a2ba061ac437ef7880b26e575956 Mon Sep 17 00:00:00 2001 From: umar Date: Mon, 19 Jun 2017 19:43:33 +0530 Subject: [PATCH 065/141] Update app.js --- app/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/app.js b/app/app.js index c52893a..5c3b490 100644 --- a/app/app.js +++ b/app/app.js @@ -3,7 +3,7 @@ angular.module('myApp', [ 'ngRoute',d 'myApp.layout', - 'myApp.version', + 'myApp.version',f 'ngMaterial',dd 'ngCookies',ddndf 'myApp.login', From 67924f4d77dcc92ae062d11836ef05be4b3cfcf5 Mon Sep 17 00:00:00 2001 From: umar Date: Tue, 20 Jun 2017 15:15:34 +0530 Subject: [PATCH 066/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index 171eb1a..8d4d603 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -3,7 +3,7 @@ dddadadd dddd ddd dddd -sddd +sdddd dddr ddd hd From f1f1ac894aa9fabb10b79f11bd137cd9c5e25c22 Mon Sep 17 00:00:00 2001 From: umar Date: Tue, 20 Jun 2017 15:33:01 +0530 Subject: [PATCH 067/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index 8d4d603..afc048d 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -8,4 +8,4 @@ dddr ddd hd ddd -dd +ddf From 6f237dff3f03c7a61e130f88f7ad223757f5544f Mon Sep 17 00:00:00 2001 From: umar Date: Tue, 20 Jun 2017 15:44:44 +0530 Subject: [PATCH 068/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index afc048d..328d30e 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -6,6 +6,6 @@ dddd sdddd dddr ddd -hd +hdd ddd ddf From 2b6762ff8f25c9cd5e8f29155452d8cff8514765 Mon Sep 17 00:00:00 2001 From: umar Date: Tue, 20 Jun 2017 16:29:56 +0530 Subject: [PATCH 069/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index 328d30e..c092d10 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -5,7 +5,7 @@ ddd dddd sdddd dddr -ddd +dddd hdd ddd ddf From 07c2035f62d2f4d90713dd3268b5ef8c108f8d07 Mon Sep 17 00:00:00 2001 From: umar Date: Tue, 20 Jun 2017 17:31:07 +0530 Subject: [PATCH 070/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index c092d10..ef942ae 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -5,7 +5,7 @@ ddd dddd sdddd dddr -dddd +ddddf hdd ddd ddf From 8514769743f7bfb0253e42abe935c690812e8271 Mon Sep 17 00:00:00 2001 From: umar Date: Tue, 20 Jun 2017 17:38:51 +0530 Subject: [PATCH 071/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index ef942ae..1f29096 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -1,7 +1,7 @@ {"ref":"refs/heads/featureA","url":"https://api.github.com/repos/octocat/Hello-orld/gitwww/refs/headsddd/feaeureA","object":{"type":"commit","sha":"aa218f56b14c9653891f9e74264a383fa43fefbd","url":"https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd"}} dddadadd dddd -ddd +dddd dddd sdddd dddr From e695f685caf6679827a14eaea219fea4c171884c Mon Sep 17 00:00:00 2001 From: umar Date: Tue, 20 Jun 2017 17:39:49 +0530 Subject: [PATCH 072/141] Update arm_veegam.json --- arm_veegam.json | 1 + 1 file changed, 1 insertion(+) diff --git a/arm_veegam.json b/arm_veegam.json index 1f29096..9a1fd29 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -9,3 +9,4 @@ ddddf hdd ddd ddf +d From 39ec763ca5ca669f49476d6b6cea5ead5d62cefa Mon Sep 17 00:00:00 2001 From: umar Date: Tue, 20 Jun 2017 23:57:32 +0530 Subject: [PATCH 073/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index 9a1fd29..8bf1d23 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -2,7 +2,7 @@ dddadadd dddd dddd -dddd +dddddd sdddd dddr ddddf From 1d8035ca7196f72896c286fe43af5d441727e62a Mon Sep 17 00:00:00 2001 From: umar Date: Wed, 21 Jun 2017 00:13:06 +0530 Subject: [PATCH 074/141] Update web.config --- web.config | 1 + 1 file changed, 1 insertion(+) diff --git a/web.config b/web.config index e5476c0..99d06a7 100644 --- a/web.config +++ b/web.config @@ -1,2 +1,3 @@ dd +d From 6405fecd85d79432c366c92deb25b04436e0ad1c Mon Sep 17 00:00:00 2001 From: umar Date: Wed, 21 Jun 2017 00:51:15 +0530 Subject: [PATCH 075/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index 8bf1d23..6df3765 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -7,6 +7,6 @@ sdddd dddr ddddf hdd -ddd +dddd ddf d From 50ff2a191a958ea55c4b4020ace4a80be55fd77f Mon Sep 17 00:00:00 2001 From: umar Date: Wed, 21 Jun 2017 00:55:29 +0530 Subject: [PATCH 076/141] Update arm_veegam.json --- arm_veegam.json | 1 + 1 file changed, 1 insertion(+) diff --git a/arm_veegam.json b/arm_veegam.json index 6df3765..ad28a0f 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -10,3 +10,4 @@ hdd dddd ddf d +d From e3bd5b20694122a555f88c9351bf5a026291b739 Mon Sep 17 00:00:00 2001 From: umar Date: Wed, 21 Jun 2017 01:17:40 +0530 Subject: [PATCH 077/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index ad28a0f..65ffb7a 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -2,7 +2,7 @@ dddadadd dddd dddd -dddddd +ddddddd sdddd dddr ddddf From 64f8e6994ed0e9f8a0d57f547355fd8a5d637c04 Mon Sep 17 00:00:00 2001 From: umar Date: Wed, 21 Jun 2017 01:25:08 +0530 Subject: [PATCH 078/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index 65ffb7a..0dfe1dc 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -4,7 +4,7 @@ dddd dddd ddddddd sdddd -dddr +dddrd ddddf hdd dddd From 821e19859e8977d1e94e20b0fdfbea04221d2903 Mon Sep 17 00:00:00 2001 From: umar Date: Wed, 21 Jun 2017 01:26:23 +0530 Subject: [PATCH 079/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index 0dfe1dc..d12e83c 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -7,7 +7,7 @@ sdddd dddrd ddddf hdd -dddd +ddddd ddf d d From 46575fb97d012496f4dfbb667372c435db10b86c Mon Sep 17 00:00:00 2001 From: umar Date: Wed, 21 Jun 2017 01:38:28 +0530 Subject: [PATCH 080/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index d12e83c..4fa3b1d 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -7,7 +7,7 @@ sdddd dddrd ddddf hdd -ddddd +dddddd ddf d d From 27fb358c5a9eaa255efe606f484527b21fc6d950 Mon Sep 17 00:00:00 2001 From: umar Date: Wed, 21 Jun 2017 01:43:13 +0530 Subject: [PATCH 081/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index 4fa3b1d..e10dc39 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -5,7 +5,7 @@ dddd ddddddd sdddd dddrd -ddddf +ddddfj hdd dddddd ddf From 0a9eb9c3330771ab8198977ba808a6c2127f437e Mon Sep 17 00:00:00 2001 From: umar Date: Wed, 21 Jun 2017 02:27:14 +0530 Subject: [PATCH 082/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index e10dc39..26716d1 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -6,7 +6,7 @@ ddddddd sdddd dddrd ddddfj -hdd +hddd dddddd ddf d From 5a6b66b2bf46f85a9b56717237c0b5fdadfa67d3 Mon Sep 17 00:00:00 2001 From: umar Date: Wed, 21 Jun 2017 02:36:51 +0530 Subject: [PATCH 083/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index 26716d1..97b3598 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -7,7 +7,7 @@ sdddd dddrd ddddfj hddd -dddddd +dddddddd ddf d d From 09ce70218f7687a958fee429e6e6d022da85f99d Mon Sep 17 00:00:00 2001 From: umar Date: Wed, 21 Jun 2017 02:47:37 +0530 Subject: [PATCH 084/141] Update arm_veegam.json --- arm_veegam.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/arm_veegam.json b/arm_veegam.json index 97b3598..14e59bb 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -1,13 +1,13 @@ {"ref":"refs/heads/featureA","url":"https://api.github.com/repos/octocat/Hello-orld/gitwww/refs/headsddd/feaeureA","object":{"type":"commit","sha":"aa218f56b14c9653891f9e74264a383fa43fefbd","url":"https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd"}} dddadadd +ddddd dddd -dddd -ddddddd +dddddddd sdddd dddrd ddddfj hddd -dddddddd +dddddd ddf d d From 6d19af3089c16faaeef875815116bafc96a3678a Mon Sep 17 00:00:00 2001 From: umar Date: Wed, 21 Jun 2017 03:16:08 +0530 Subject: [PATCH 085/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index 14e59bb..3bf41b3 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -3,7 +3,7 @@ dddadadd ddddd dddd dddddddd -sdddd +sdddd f dddrd ddddfj hddd From 75b4da5cc6bac2a3480c97d415816a76d00ee601 Mon Sep 17 00:00:00 2001 From: umar Date: Wed, 21 Jun 2017 05:21:16 +0530 Subject: [PATCH 086/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index 3bf41b3..d5453d7 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -5,7 +5,7 @@ dddd dddddddd sdddd f dddrd -ddddfj +ddddfjs hddd dddddd ddf From 1694686e9e4926d7682f0866718db3d5cb94d696 Mon Sep 17 00:00:00 2001 From: umar Date: Wed, 21 Jun 2017 05:31:28 +0530 Subject: [PATCH 087/141] aaa --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index d5453d7..0276f60 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -8,6 +8,6 @@ dddrd ddddfjs hddd dddddd -ddf +ddfee d d From 5fb924cbb2ceec059be269797ed329846445116b Mon Sep 17 00:00:00 2001 From: umar Date: Wed, 21 Jun 2017 20:48:13 +0530 Subject: [PATCH 088/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index 0276f60..751f178 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -6,7 +6,7 @@ dddddddd sdddd f dddrd ddddfjs -hddd +hdddf dddddd ddfee d From dacd1580987b064c96f0edae49dce539306fdec6 Mon Sep 17 00:00:00 2001 From: umar Date: Wed, 21 Jun 2017 20:50:26 +0530 Subject: [PATCH 089/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index 751f178..6af4d87 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -8,6 +8,6 @@ dddrd ddddfjs hdddf dddddd -ddfee +ddfeed d d From 583d686167ec92090371642d2ada8d79bcfe569d Mon Sep 17 00:00:00 2001 From: umar Date: Wed, 21 Jun 2017 21:20:34 +0530 Subject: [PATCH 090/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index 6af4d87..2cff08c 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -3,7 +3,7 @@ dddadadd ddddd dddd dddddddd -sdddd f +sdddd fr dddrd ddddfjs hdddf From ff7f0ab61909be8d698e15c524464d8eb829a841 Mon Sep 17 00:00:00 2001 From: umar Date: Wed, 21 Jun 2017 21:30:43 +0530 Subject: [PATCH 091/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index 2cff08c..eb2b3fc 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -3,7 +3,7 @@ dddadadd ddddd dddd dddddddd -sdddd fr +sdddd frdd dddrd ddddfjs hdddf From 3b42719c081d087b7d42feb74e605cc35f186fc9 Mon Sep 17 00:00:00 2001 From: umar Date: Wed, 21 Jun 2017 21:42:48 +0530 Subject: [PATCH 092/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index eb2b3fc..634cb0c 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -6,7 +6,7 @@ dddddddd sdddd frdd dddrd ddddfjs -hdddf +hdddfrr dddddd ddfeed d From 8ecaffa4abdd59613c68c75d6fc1d1e3ddc1b97a Mon Sep 17 00:00:00 2001 From: umar Date: Thu, 22 Jun 2017 04:25:24 +0530 Subject: [PATCH 093/141] Update arm_veegam.json --- arm_veegam.json | 1 + 1 file changed, 1 insertion(+) diff --git a/arm_veegam.json b/arm_veegam.json index 634cb0c..9f7eaf4 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -11,3 +11,4 @@ dddddd ddfeed d d +d From a8c71a5a9a7ff08e38df92cf90ddd4f78674195a Mon Sep 17 00:00:00 2001 From: umar Date: Thu, 22 Jun 2017 04:58:17 +0530 Subject: [PATCH 094/141] Update arm_veegam.json --- arm_veegam.json | 1 + 1 file changed, 1 insertion(+) diff --git a/arm_veegam.json b/arm_veegam.json index 9f7eaf4..e3965a9 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -12,3 +12,4 @@ ddfeed d d d +d From f6552f9323e8382220be5a1b5d8ce66c04a759ad Mon Sep 17 00:00:00 2001 From: umar Date: Thu, 22 Jun 2017 11:37:00 +0530 Subject: [PATCH 095/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index e3965a9..d971e7d 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -10,6 +10,6 @@ hdddfrr dddddd ddfeed d -d +de d d From 5e06ee10904daf0e4a194e757a6fc478688aa19f Mon Sep 17 00:00:00 2001 From: umar Date: Thu, 22 Jun 2017 11:38:31 +0530 Subject: [PATCH 096/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index d971e7d..fc6c8ec 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -2,7 +2,7 @@ dddadadd ddddd dddd -dddddddd +dddddddd3 sdddd frdd dddrd ddddfjs From 8f02ddf8574e4c7ee6979d8d11157738132181fd Mon Sep 17 00:00:00 2001 From: umar Date: Thu, 22 Jun 2017 11:59:36 +0530 Subject: [PATCH 097/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index fc6c8ec..f12bb98 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -5,7 +5,7 @@ dddd dddddddd3 sdddd frdd dddrd -ddddfjs +ddddfjse hdddfrr dddddd ddfeed From d9658c9bf6ab0dec58faa39577d32819969ce9d3 Mon Sep 17 00:00:00 2001 From: umar Date: Thu, 22 Jun 2017 12:24:44 +0530 Subject: [PATCH 098/141] Update arm_veegam.json --- arm_veegam.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arm_veegam.json b/arm_veegam.json index f12bb98..ba9417f 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -4,8 +4,8 @@ ddddd dddd dddddddd3 sdddd frdd -dddrd -ddddfjse +dddrds +ddddfjsedd hdddfrr dddddd ddfeed From d883e2ef4d8cdb2fad70e2f94ef8bfe03e01d3e6 Mon Sep 17 00:00:00 2001 From: umar Date: Thu, 22 Jun 2017 12:51:11 +0530 Subject: [PATCH 099/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index ba9417f..836bba6 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -8,7 +8,7 @@ dddrds ddddfjsedd hdddfrr dddddd -ddfeed +ddfeede d de d From be6afea921abd408f943578d750da05fb12eb53a Mon Sep 17 00:00:00 2001 From: umar Date: Thu, 22 Jun 2017 17:42:14 +0530 Subject: [PATCH 100/141] Update index.html --- app/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/index.html b/app/index.html index 2c98f56..433a3b3 100644 --- a/app/index.html +++ b/app/index.html @@ -6,7 +6,7 @@ - Veegam a cloud App + Veegam a cloud Appd d d From 9d98786f14206c0622800782228bd349b3b3f550 Mon Sep 17 00:00:00 2001 From: umar Date: Thu, 22 Jun 2017 17:50:21 +0530 Subject: [PATCH 101/141] Update index.html --- app/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/index.html b/app/index.html index 433a3b3..61839d5 100644 --- a/app/index.html +++ b/app/index.html @@ -6,7 +6,7 @@ - Veegam a cloud Appd + Veegam a cloud Appdr d d From 8677cc0b7435ff982d7e788321ed30f746d39384 Mon Sep 17 00:00:00 2001 From: umar Date: Thu, 22 Jun 2017 18:13:02 +0530 Subject: [PATCH 102/141] Update index.html --- app/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/index.html b/app/index.html index 61839d5..55de889 100644 --- a/app/index.html +++ b/app/index.html @@ -6,7 +6,7 @@ - Veegam a cloud Appdr + Veegam a cloud Appdrd d d From 77a55db2643e15f859563f2aead294f992c3f1cb Mon Sep 17 00:00:00 2001 From: umar Date: Thu, 22 Jun 2017 18:16:50 +0530 Subject: [PATCH 103/141] Update index.html --- app/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/index.html b/app/index.html index 55de889..ad8ff16 100644 --- a/app/index.html +++ b/app/index.html @@ -5,7 +5,7 @@ - + d Veegam a cloud Appdrd d From 533675bb8673c65eb712dce2114e1a74d66b9bec Mon Sep 17 00:00:00 2001 From: umar Date: Thu, 22 Jun 2017 19:09:18 +0530 Subject: [PATCH 104/141] Update index.html --- app/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/index.html b/app/index.html index ad8ff16..70c0425 100644 --- a/app/index.html +++ b/app/index.html @@ -5,7 +5,7 @@ - d + dtt Veegam a cloud Appdrd d From 0ba8b7b1730965c235a64ad82879fd7b08c33298 Mon Sep 17 00:00:00 2001 From: umar Date: Thu, 22 Jun 2017 20:09:29 +0530 Subject: [PATCH 105/141] Update index.html --- app/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/index.html b/app/index.html index 70c0425..5e28bd7 100644 --- a/app/index.html +++ b/app/index.html @@ -7,9 +7,9 @@ dtt Veegam a cloud Appdrd - + s d - d + d From 4a870c6e6dcb4cb42837584c8d7f7cfefd2644c6 Mon Sep 17 00:00:00 2001 From: umar Date: Fri, 23 Jun 2017 11:16:38 +0530 Subject: [PATCH 106/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index 836bba6..d18e87e 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -5,7 +5,7 @@ dddd dddddddd3 sdddd frdd dddrds -ddddfjsedd +ddddfjseddd hdddfrr dddddd ddfeede From 59358a4d57fa61ff773ad40db2c3ffd0fd88cc02 Mon Sep 17 00:00:00 2001 From: umar Date: Fri, 23 Jun 2017 11:18:41 +0530 Subject: [PATCH 107/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index d18e87e..05c3310 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -6,7 +6,7 @@ dddddddd3 sdddd frdd dddrds ddddfjseddd -hdddfrr +hdddfrrd dddddd ddfeede d From 75f5e28398d64aa5b134697a2a0035864ffcef00 Mon Sep 17 00:00:00 2001 From: umar Date: Fri, 23 Jun 2017 11:26:17 +0530 Subject: [PATCH 108/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index 05c3310..110ed90 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -3,7 +3,7 @@ dddadadd ddddd dddd dddddddd3 -sdddd frdd +sdddd frddd dddrds ddddfjseddd hdddfrrd From 37b7dd3b6eea22c53d5001590733e62f640b75e2 Mon Sep 17 00:00:00 2001 From: umar Date: Fri, 23 Jun 2017 11:38:26 +0530 Subject: [PATCH 109/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index 110ed90..0d65027 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -5,7 +5,7 @@ dddd dddddddd3 sdddd frddd dddrds -ddddfjseddd +ddddfjsedddd hdddfrrd dddddd ddfeede From 52058266d7f5f02540086c00232f31f32a07ad0a Mon Sep 17 00:00:00 2001 From: umar Date: Fri, 23 Jun 2017 11:54:26 +0530 Subject: [PATCH 110/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index 0d65027..95295d3 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -4,7 +4,7 @@ ddddd dddd dddddddd3 sdddd frddd -dddrds +dddrdse ddddfjsedddd hdddfrrd dddddd From 5988171076011bede7059937dfe3d1d3079e1b1e Mon Sep 17 00:00:00 2001 From: umar Date: Fri, 23 Jun 2017 12:44:40 +0530 Subject: [PATCH 111/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index 95295d3..049f5ba 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -7,7 +7,7 @@ sdddd frddd dddrdse ddddfjsedddd hdddfrrd -dddddd +ddddddh ddfeede d de From 5983083563361abc739b2e7fce664f4c61edc19c Mon Sep 17 00:00:00 2001 From: umar Date: Fri, 23 Jun 2017 12:51:59 +0530 Subject: [PATCH 112/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index 049f5ba..83a7e53 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -5,7 +5,7 @@ dddd dddddddd3 sdddd frddd dddrdse -ddddfjsedddd +ddddfjseddddd hdddfrrd ddddddh ddfeede From b05760f4a6822644ec47b74f0f266323bd88bde1 Mon Sep 17 00:00:00 2001 From: umar Date: Fri, 23 Jun 2017 12:53:57 +0530 Subject: [PATCH 113/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index 83a7e53..b37f287 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -3,7 +3,7 @@ dddadadd ddddd dddd dddddddd3 -sdddd frddd +sdddd frddde dddrdse ddddfjseddddd hdddfrrd From 517c19435d787fbc4eb24fdbe18567840f3e28bf Mon Sep 17 00:00:00 2001 From: umar Date: Fri, 23 Jun 2017 14:21:57 +0530 Subject: [PATCH 114/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index b37f287..be6a596 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -5,7 +5,7 @@ dddd dddddddd3 sdddd frddde dddrdse -ddddfjseddddd +ddddfjsedddddd hdddfrrd ddddddh ddfeede From 35d115febe6df8a00c7b71b5712f21586e11c8eb Mon Sep 17 00:00:00 2001 From: umar Date: Fri, 23 Jun 2017 14:26:25 +0530 Subject: [PATCH 115/141] Update arm_veegam.json --- arm_veegam.json | 1 + 1 file changed, 1 insertion(+) diff --git a/arm_veegam.json b/arm_veegam.json index be6a596..22d8613 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -13,3 +13,4 @@ d de d d +b From aa5c5a5fc78ddfd8bb5dc41879de3e4fbbc030d1 Mon Sep 17 00:00:00 2001 From: umar Date: Fri, 23 Jun 2017 14:40:23 +0530 Subject: [PATCH 116/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index 22d8613..80fecce 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -6,7 +6,7 @@ dddddddd3 sdddd frddde dddrdse ddddfjsedddddd -hdddfrrd +hdddfrrdd ddddddh ddfeede d From ecbb49e2767b62f671fb66360bc5a54ee98d8aca Mon Sep 17 00:00:00 2001 From: umar Date: Fri, 23 Jun 2017 15:22:02 +0530 Subject: [PATCH 117/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index 80fecce..1503f15 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -6,7 +6,7 @@ dddddddd3 sdddd frddde dddrdse ddddfjsedddddd -hdddfrrdd +hdddfrrddd ddddddh ddfeede d From 2a995699391219eabe4d0d336dc44d313e4e746e Mon Sep 17 00:00:00 2001 From: umar Date: Fri, 23 Jun 2017 18:49:29 +0530 Subject: [PATCH 118/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index 1503f15..8e07edc 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -4,7 +4,7 @@ ddddd dddd dddddddd3 sdddd frddde -dddrdse +dddrdsecc ddddfjsedddddd hdddfrrddd ddddddh From f6664dbe92d07781d03e18e6bc93dff98781f7e4 Mon Sep 17 00:00:00 2001 From: umar Date: Fri, 23 Jun 2017 19:20:42 +0530 Subject: [PATCH 119/141] Update app.js --- app/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/app.js b/app/app.js index 5c3b490..1bfa172 100644 --- a/app/app.js +++ b/app/app.js @@ -6,7 +6,7 @@ angular.module('myApp', [ 'myApp.version',f 'ngMaterial',dd 'ngCookies',ddndf - 'myApp.login', + 'myApp.login',x 'auth0',c 'FBAngular', 'ui.router',c From 807b1616554dd3babfeb494433e7a0f2459078b0 Mon Sep 17 00:00:00 2001 From: umar Date: Thu, 29 Jun 2017 16:45:12 +0530 Subject: [PATCH 120/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index 8e07edc..80e6dfe 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -7,7 +7,7 @@ sdddd frddde dddrdsecc ddddfjsedddddd hdddfrrddd -ddddddh +ddddddhd ddfeede d de From 20f5e61f77286aa314723704275db4f3b513bdcd Mon Sep 17 00:00:00 2001 From: umar Date: Thu, 29 Jun 2017 16:56:02 +0530 Subject: [PATCH 121/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index 80e6dfe..955cca1 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -4,7 +4,7 @@ ddddd dddd dddddddd3 sdddd frddde -dddrdsecc +dddrdseccd ddddfjsedddddd hdddfrrddd ddddddhd From 0063be6a2b6c0220d300d09ab24734b791ff5c1f Mon Sep 17 00:00:00 2001 From: umar Date: Thu, 29 Jun 2017 18:18:40 +0530 Subject: [PATCH 122/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index 955cca1..2ac2ccb 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -2,7 +2,7 @@ dddadadd ddddd dddd -dddddddd3 +dddddddd3d sdddd frddde dddrdseccd ddddfjsedddddd From 51b3fbbc0db5ebb690cf5c5649676b2158d251f7 Mon Sep 17 00:00:00 2001 From: umar Date: Fri, 30 Jun 2017 15:41:42 +0530 Subject: [PATCH 123/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index 2ac2ccb..3e186c1 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -7,7 +7,7 @@ sdddd frddde dddrdseccd ddddfjsedddddd hdddfrrddd -ddddddhd +ddddddhdww ddfeede d de From c063c990d2419264aa84b65fc5c4af62f396e10b Mon Sep 17 00:00:00 2001 From: umar Date: Fri, 30 Jun 2017 15:43:33 +0530 Subject: [PATCH 124/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index 3e186c1..b9617d2 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -9,7 +9,7 @@ ddddfjsedddddd hdddfrrddd ddddddhdww ddfeede -d +ds de d d From a02604f383d2c529c6a757c1aa38b5b24c147c84 Mon Sep 17 00:00:00 2001 From: umar Date: Fri, 30 Jun 2017 15:46:04 +0530 Subject: [PATCH 125/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index b9617d2..30d5314 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -10,7 +10,7 @@ hdddfrrddd ddddddhdww ddfeede ds -de +dew d d b From 72ea04734342f25bba7bbd8efc985fa17abc0620 Mon Sep 17 00:00:00 2001 From: umar Date: Fri, 30 Jun 2017 16:06:20 +0530 Subject: [PATCH 126/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index 30d5314..08eeaba 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -8,7 +8,7 @@ dddrdseccd ddddfjsedddddd hdddfrrddd ddddddhdww -ddfeede +ddfeedese ds dew d From b68218f03bb87918241042af6b46576aa3b50798 Mon Sep 17 00:00:00 2001 From: umar Date: Tue, 4 Jul 2017 14:41:43 +0530 Subject: [PATCH 127/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index 08eeaba..f30e9eb 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -6,7 +6,7 @@ dddddddd3d sdddd frddde dddrdseccd ddddfjsedddddd -hdddfrrddd +hdddfrrdddds ddddddhdww ddfeedese ds From 9c6d6352278b751b4f8b3be76221607f23c9235b Mon Sep 17 00:00:00 2001 From: umar Date: Tue, 4 Jul 2017 16:15:56 +0530 Subject: [PATCH 128/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index f30e9eb..3b4cdc0 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -3,7 +3,7 @@ dddadadd ddddd dddd dddddddd3d -sdddd frddde +sdddd frddded dddrdseccd ddddfjsedddddd hdddfrrdddds From fddddc39671038f42c62c154fe3e4d56ae01c555 Mon Sep 17 00:00:00 2001 From: umar Date: Tue, 4 Jul 2017 16:19:17 +0530 Subject: [PATCH 129/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index 3b4cdc0..73ea785 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -8,7 +8,7 @@ dddrdseccd ddddfjsedddddd hdddfrrdddds ddddddhdww -ddfeedese +ddfeedesed ds dew d From 1e95f68da5271c8e4614e9ce7727a8d4b9d90597 Mon Sep 17 00:00:00 2001 From: umar Date: Tue, 4 Jul 2017 16:39:54 +0530 Subject: [PATCH 130/141] Update arm_veegam.json --- arm_veegam.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index 73ea785..3df187c 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -9,8 +9,9 @@ ddddfjsedddddd hdddfrrdddds ddddddhdww ddfeedesed -ds +dss dew d d b +d From 3fa62d56f8ec5fef3924f7d98d7887a7de3dcba0 Mon Sep 17 00:00:00 2001 From: umar Date: Tue, 4 Jul 2017 16:53:45 +0530 Subject: [PATCH 131/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index 3df187c..bb60465 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -9,7 +9,7 @@ ddddfjsedddddd hdddfrrdddds ddddddhdww ddfeedesed -dss +dssd dew d d From d55a493abc12869101ed0434b5998f6f3b1f16b2 Mon Sep 17 00:00:00 2001 From: umar Date: Tue, 4 Jul 2017 17:19:11 +0530 Subject: [PATCH 132/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index bb60465..fb1fe5e 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -8,7 +8,7 @@ dddrdseccd ddddfjsedddddd hdddfrrdddds ddddddhdww -ddfeedesed +ddfeedesedx dssd dew d From 6bafecba045c99eba56c44aa57eb960cafbc4b43 Mon Sep 17 00:00:00 2001 From: umar Date: Tue, 4 Jul 2017 17:38:08 +0530 Subject: [PATCH 133/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index fb1fe5e..2b852ab 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -7,7 +7,7 @@ sdddd frddded dddrdseccd ddddfjsedddddd hdddfrrdddds -ddddddhdww +ddddddhdwwd ddfeedesedx dssd dew From 66aa2be247d441dbcd7718bdbfd2a817944c012a Mon Sep 17 00:00:00 2001 From: umar Date: Tue, 4 Jul 2017 17:44:41 +0530 Subject: [PATCH 134/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index 2b852ab..f8eb949 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -6,7 +6,7 @@ dddddddd3d sdddd frddded dddrdseccd ddddfjsedddddd -hdddfrrdddds +hdddfrrddddsvvv ddddddhdwwd ddfeedesedx dssd From 64e90237491f53e7b8dbfe680da1063550bca3dd Mon Sep 17 00:00:00 2001 From: umar Date: Tue, 4 Jul 2017 18:23:47 +0530 Subject: [PATCH 135/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index f8eb949..ecb217d 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -9,7 +9,7 @@ ddddfjsedddddd hdddfrrddddsvvv ddddddhdwwd ddfeedesedx -dssd +dssdw dew d d From bc5e03c4d5033f4bf03718f26883715d1dd8db54 Mon Sep 17 00:00:00 2001 From: umar Date: Thu, 6 Jul 2017 16:48:27 +0530 Subject: [PATCH 136/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index ecb217d..3d946cf 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -5,7 +5,7 @@ dddd dddddddd3d sdddd frddded dddrdseccd -ddddfjsedddddd +ddddfjseddddddj hdddfrrddddsvvv ddddddhdwwd ddfeedesedx From bb72499e5cc208ba4bf0cb0516d203e2080846da Mon Sep 17 00:00:00 2001 From: umar Date: Thu, 6 Jul 2017 17:29:28 +0530 Subject: [PATCH 137/141] Update arm_veegam.json --- arm_veegam.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arm_veegam.json b/arm_veegam.json index 3d946cf..962bcb1 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -1,7 +1,7 @@ {"ref":"refs/heads/featureA","url":"https://api.github.com/repos/octocat/Hello-orld/gitwww/refs/headsddd/feaeureA","object":{"type":"commit","sha":"aa218f56b14c9653891f9e74264a383fa43fefbd","url":"https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd"}} dddadadd ddddd -dddd +ddddx dddddddd3d sdddd frddded dddrdseccd @@ -13,5 +13,5 @@ dssdw dew d d -b +bxx d From a4b602bad9e3b748875314d42bf253dd7e84acaa Mon Sep 17 00:00:00 2001 From: umar Date: Thu, 6 Jul 2017 17:40:59 +0530 Subject: [PATCH 138/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index 962bcb1..f128e9f 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -4,7 +4,7 @@ ddddd ddddx dddddddd3d sdddd frddded -dddrdseccd +dddrdseccdd ddddfjseddddddj hdddfrrddddsvvv ddddddhdwwd From 537fcb9bb225238b08a87df24acfd2c6f62cf417 Mon Sep 17 00:00:00 2001 From: umar Date: Thu, 6 Jul 2017 17:49:51 +0530 Subject: [PATCH 139/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index f128e9f..11e0bdf 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -11,7 +11,7 @@ ddddddhdwwd ddfeedesedx dssdw dew -d +dsss d bxx d From 3f505e847fe8df36f2858bca176dfa027a8b7636 Mon Sep 17 00:00:00 2001 From: umar Date: Thu, 6 Jul 2017 19:05:42 +0530 Subject: [PATCH 140/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index 11e0bdf..3a27696 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -4,7 +4,7 @@ ddddd ddddx dddddddd3d sdddd frddded -dddrdseccdd +dddrdseccdds ddddfjseddddddj hdddfrrddddsvvv ddddddhdwwd From 5d31098de94de8c57faf31b1a5f6ecad43c152db Mon Sep 17 00:00:00 2001 From: umar Date: Thu, 6 Jul 2017 19:15:06 +0530 Subject: [PATCH 141/141] Update arm_veegam.json --- arm_veegam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_veegam.json b/arm_veegam.json index 3a27696..bde9f69 100644 --- a/arm_veegam.json +++ b/arm_veegam.json @@ -5,7 +5,7 @@ ddddx dddddddd3d sdddd frddded dddrdseccdds -ddddfjseddddddj +ddddfjseddddddjrww hdddfrrddddsvvv ddddddhdwwd ddfeedesedx