You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by sh...@apache.org on 2013/03/22 02:47:10 UTC

[06/10] Added command line project creation.

http://git-wip-us.apache.org/repos/asf/cordova-osx/blob/42ebcc90/CordovaMac/CordovaMac/config.xml
----------------------------------------------------------------------
diff --git a/CordovaMac/CordovaMac/config.xml b/CordovaMac/CordovaMac/config.xml
deleted file mode 100644
index 685aeaf..0000000
--- a/CordovaMac/CordovaMac/config.xml
+++ /dev/null
@@ -1,35 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-#
-# 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.
-#
--->
-<widget>
-    <!--
-    <preference name="MyPreferenceName" value="true" />
-     -->
-
-    <content src="index.html" />
-
-    <plugins>
-        <plugin name="Device" value="CDVDevice"/>
-        <plugin name="NetworkStatus" value="CDVConnection" />
-    </plugins>
-
-    <access origin="*" />
-</widget>

http://git-wip-us.apache.org/repos/asf/cordova-osx/blob/42ebcc90/CordovaMac/CordovaMac/main.m
----------------------------------------------------------------------
diff --git a/CordovaMac/CordovaMac/main.m b/CordovaMac/CordovaMac/main.m
deleted file mode 100644
index 736a22e..0000000
--- a/CordovaMac/CordovaMac/main.m
+++ /dev/null
@@ -1,25 +0,0 @@
-/*
- 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.
- */
-
-#import <Cocoa/Cocoa.h>
-
-int main(int argc, char *argv[])
-{
-	return NSApplicationMain(argc, (const char **)argv);
-}