Skip to content

Commit

Permalink
[TIMOB-26084] Removed project directory from analytics events. Update…
Browse files Browse the repository at this point in the history
…d copyright years. (#10085)
  • Loading branch information
cb1kenobi authored and hansemannn committed Jun 5, 2018
1 parent 8ddeb11 commit 09d43b4
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 31 deletions.
1 change: 0 additions & 1 deletion android/cli/commands/_build.js
Original file line number Diff line number Diff line change
Expand Up @@ -1817,7 +1817,6 @@ AndroidBuilder.prototype.doAnalytics = function doAnalytics(next) {
}

cli.addAnalyticsEvent(eventName, {
dir: cli.argv['project-dir'],
name: cli.tiapp.name,
publisher: cli.tiapp.publisher,
url: cli.tiapp.url,
Expand Down
23 changes: 11 additions & 12 deletions android/cli/commands/_buildModule.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
/**
* Android module build command.
*
* @module cli/_buildModule
*
* @copyright
* Copyright (c) 2014-2017 by Appcelerator, Inc. All Rights Reserved.
*
* @license
* Licensed under the terms of the Apache Public License
* Please see the LICENSE included with this distribution for details.
*/
* Android module build command.
*
* @module cli/_buildModule
*
* @copyright
* Copyright (c) 2014-2018 by Appcelerator, Inc. All Rights Reserved.
*
* @license
* Licensed under the terms of the Apache Public License
* Please see the LICENSE included with this distribution for details.
*/

'use strict';

Expand Down Expand Up @@ -362,7 +362,6 @@ AndroidModuleBuilder.prototype.doAnalytics = function doAnalytics(next) {
eventName = 'android.' + cli.argv.type;

cli.addAnalyticsEvent(eventName, {
dir: cli.argv['project-dir'],
name: manifest.name,
publisher: manifest.author,
appid: manifest.moduleid,
Expand Down
3 changes: 1 addition & 2 deletions cli/lib/creators/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Logic for creating new Titanium apps.
*
* @copyright
* Copyright (c) 2014-2015 by Appcelerator, Inc. All Rights Reserved.
* Copyright (c) 2014-2018 by Appcelerator, Inc. All Rights Reserved.
*
* @license
* Licensed under the terms of the Apache Public License
Expand Down Expand Up @@ -209,7 +209,6 @@ AppCreator.prototype.run = function run(callback) {
tasks.push(function (next) {
// send the analytics
this.cli.addAnalyticsEvent('project.create.mobile', {
dir: projectDir,
name: argv.name,
publisher: projectConfig.publisher,
url: projectConfig.url,
Expand Down
3 changes: 1 addition & 2 deletions cli/lib/creators/module.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Logic for creating new Titanium modules.
*
* @copyright
* Copyright (c) 2014-2017 by Appcelerator, Inc. All Rights Reserved.
* Copyright (c) 2014-2018 by Appcelerator, Inc. All Rights Reserved.
*
* @license
* Licensed under the terms of the Apache Public License
Expand Down Expand Up @@ -192,7 +192,6 @@ ModuleCreator.prototype.run = function run(callback) {
tasks.push(function (next) {
// send the analytics
this.cli.addAnalyticsEvent('project.create.module', {
dir: projectDir,
name: variables.moduleName,
author: variables.author,
moduleid: variables.moduleId,
Expand Down
3 changes: 1 addition & 2 deletions iphone/cli/commands/_build.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* @module cli/_build
*
* @copyright
* Copyright (c) 2009-2017 by Appcelerator, Inc. All Rights Reserved.
* Copyright (c) 2009-2018 by Appcelerator, Inc. All Rights Reserved.
*
* @license
* Licensed under the terms of the Apache Public License
Expand Down Expand Up @@ -2329,7 +2329,6 @@ iOSBuilder.prototype.doAnalytics = function doAnalytics() {
}

cli.addAnalyticsEvent(eventName, {
dir: cli.argv['project-dir'],
name: this.tiapp.name,
publisher: this.tiapp.publisher,
url: this.tiapp.url,
Expand Down
23 changes: 11 additions & 12 deletions iphone/cli/commands/_buildModule.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
/**
* iOS module build command.
*
* @module cli/_buildModule
*
* @copyright
* Copyright (c) 2014-2017 by Appcelerator, Inc. All Rights Reserved.
*
* @license
* Licensed under the terms of the Apache Public License
* Please see the LICENSE included with this distribution for details.
*/
* iOS module build command.
*
* @module cli/_buildModule
*
* @copyright
* Copyright (c) 2014-2018 by Appcelerator, Inc. All Rights Reserved.
*
* @license
* Licensed under the terms of the Apache Public License
* Please see the LICENSE included with this distribution for details.
*/

'use strict';

Expand Down Expand Up @@ -126,7 +126,6 @@ iOSModuleBuilder.prototype.doAnalytics = function doAnalytics() {
eventName = 'ios.' + cli.argv.type;

cli.addAnalyticsEvent(eventName, {
dir: this.cli.argv['project-dir'],
name: this.moduleName,
publisher: this.manifest.author,
appid: this.moduleId,
Expand Down

0 comments on commit 09d43b4

Please sign in to comment.