Return-Path: X-Original-To: apmail-devicemap-commits-archive@www.apache.org Delivered-To: apmail-devicemap-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 1100A18127 for ; Wed, 5 Aug 2015 16:28:28 +0000 (UTC) Received: (qmail 96414 invoked by uid 500); 5 Aug 2015 16:28:28 -0000 Delivered-To: apmail-devicemap-commits-archive@devicemap.apache.org Received: (qmail 96386 invoked by uid 500); 5 Aug 2015 16:28:27 -0000 Mailing-List: contact commits-help@devicemap.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@devicemap.apache.org Delivered-To: mailing list commits@devicemap.apache.org Received: (qmail 96377 invoked by uid 99); 5 Aug 2015 16:28:27 -0000 Received: from eris.apache.org (HELO hades.apache.org) (140.211.11.105) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 05 Aug 2015 16:28:27 +0000 Received: from hades.apache.org (localhost [127.0.0.1]) by hades.apache.org (ASF Mail Server at hades.apache.org) with ESMTP id CECE9AC027A for ; Wed, 5 Aug 2015 16:28:27 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1694264 - in /devicemap/trunk/clients/2.0/javascript: devicemap.js index.html Date: Wed, 05 Aug 2015 16:28:27 -0000 To: commits@devicemap.apache.org From: rezan@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20150805162827.CECE9AC027A@hades.apache.org> Author: rezan Date: Wed Aug 5 16:28:27 2015 New Revision: 1694264 URL: http://svn.apache.org/r1694264 Log: loading Modified: devicemap/trunk/clients/2.0/javascript/devicemap.js devicemap/trunk/clients/2.0/javascript/index.html Modified: devicemap/trunk/clients/2.0/javascript/devicemap.js URL: http://svn.apache.org/viewvc/devicemap/trunk/clients/2.0/javascript/devicemap.js?rev=1694264&r1=1694263&r2=1694264&view=diff ============================================================================== --- devicemap/trunk/clients/2.0/javascript/devicemap.js (original) +++ devicemap/trunk/clients/2.0/javascript/devicemap.js Wed Aug 5 16:28:27 2015 @@ -16,7 +16,11 @@ devicemap.debug = devicemap.debug || fun } }; -devicemap.loadPattern = function(patternFile) { +devicemap.loadURLs = function(patternURL) { + devicemap.debug(2, 'patternURL:', patternURL); +}; + +devicemap.loadObjects = function(patternFile) { devicemap.debug(2, 'loadPattern:', patternFile.domain); }; Modified: devicemap/trunk/clients/2.0/javascript/index.html URL: http://svn.apache.org/viewvc/devicemap/trunk/clients/2.0/javascript/index.html?rev=1694264&r1=1694263&r2=1694264&view=diff ============================================================================== --- devicemap/trunk/clients/2.0/javascript/index.html (original) +++ devicemap/trunk/clients/2.0/javascript/index.html Wed Aug 5 16:28:27 2015 @@ -71,7 +71,7 @@ } function loadClient(patternFile) { - devicemap.loadPattern(patternFile); + devicemap.loadObjects(patternFile); } function getFile(url, onready) {