Github user kamrik commented on a diff in the pull request:

    https://github.com/apache/cordova-lib/pull/226#discussion_r31049589
  
    --- Diff: cordova-lib/src/cordova/metadata/PlatformHandler.js ---
    @@ -0,0 +1,100 @@
    +/**
    +    Licensed to the Apache Software Foundation (ASF) under one
    +    or more contributor license agreements.  See the NOTICE file
    +    distributed with this work for additional information
    +    regarding copyright ownership.  The ASF licenses this file
    +    to you under the Apache License, Version 2.0 (the
    +    "License"); you may not use this file except in compliance
    +    with the License.  You may obtain a copy of the License at
    +
    +    http://www.apache.org/licenses/LICENSE-2.0
    +
    +    Unless required by applicable law or agreed to in writing,
    +    software distributed under the License is distributed on an
    +    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    +    KIND, either express or implied.  See the License for the
    +    specific language governing permissions and limitations
    +    under the License.
    +*/
    +
    +/* jshint sub:true */
    +
    +'use strict';
    +
    +var path = require('path');
    +var shell = require('shelljs');
    +var util = require('../util');
    +var ParserHelper = require('./parserhelper/ParserHelper');
    +
    +/**
    + * Base module for platform parsers
    + *
    + * @param {String} [platform]    Platform name (e.g. android)
    + * @param {String} [projectPath] path/to/platform/project
    + */
    +function PlatformHandler (platform, projectPath) {
    +
    +    this.platform = platform || '';
    +    this.root = this.path = projectPath || '';
    +
    +    // Extend with a ParserHelper instance
    +    Object.defineProperty(this, 'helper', {
    +        value: new ParserHelper(this.platform),
    +        enumerable: true,
    +        configurable: false,
    +        writable: false
    +    });
    +}
    +
    +/**
    + * Base implementation for getConfigXml. Assumes that config.xml
    + * is placed at the root of project.
    + * @return {String} Path to platform's config.xml file
    + */
    +PlatformHandler.prototype.getConfigXml = function() {
    +    return  path.join(this.root, 'config.xml');
    +};
    +
    +/**
    + * Base implementation for getWwwDir. Assumes that
    + * www directory is placed at the root of project.
    + * @return {String} Path to platform's www directory.
    + */
    +PlatformHandler.prototype.getWwwDir = function() {
    +    return  path.join(this.root, 'www');
    +};
    +
    +/**
    + * Base implementation for getCordovaJsSrc. Assumes that cordova.js
    + * source is placed at the root of platform's source dir.
    + * @return {String} Path to platform's 'cordova-js-src' folder.
    + */
    +PlatformHandler.prototype.getCordovaJsSrc = function(platformSource) {
    +    return path.resolve(platformSource, 'cordova-js-src');
    +};
    +
    +/**
    + * Base implementation for updateWww.
    + */
    +PlatformHandler.prototype.updateWww = function() {
    +    var projectRoot = util.isCordova(this.root);
    +    var appWww = util.projectWww(projectRoot);
    +    var platformWww = path.join(this.root, 'platform_www');
    --- End diff --
    
    Looks like we would like to avoid using util.isCordova() here. One can 
easily create single platform projects that do not maintain the traditional 
Cordova Project directory structure. Kind of like it was with plugman based 
workflow or with my latests attempts at the gulp based workflow.
    
    Myabe just pass the appWww as a parameter to this function, and for now as 
a compatibility feature, get it from util.isCordova() if it's not provided.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to