commit 419a10c6daab079973c0c784474f80519f9673a2 Author: Skylar Ittner Date: Fri Jun 29 15:48:01 2018 -0600 Initialize Cordova diff --git a/.bowerrc b/.bowerrc new file mode 100644 index 0000000..28ccb8a --- /dev/null +++ b/.bowerrc @@ -0,0 +1,3 @@ +{ + "directory": "www/bower_components" +} diff --git a/.npmignore b/.npmignore new file mode 100644 index 0000000..fd29596 --- /dev/null +++ b/.npmignore @@ -0,0 +1,2 @@ +# OS X +.DS_Store diff --git a/Gruntfile.js b/Gruntfile.js new file mode 100644 index 0000000..37d6aa7 --- /dev/null +++ b/Gruntfile.js @@ -0,0 +1,10 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +module.exports = function (grunt) { + // Project configuration. + grunt.initConfig({ + }); +}; diff --git a/bower.json b/bower.json new file mode 100644 index 0000000..0a6a2ed --- /dev/null +++ b/bower.json @@ -0,0 +1,13 @@ +{ + "name": "PCInfoClient", + "version": "1.0.0", + "main": "path/to/main.css", + "ignore": [ + ".jshintrc", + "**/*.txt" + ], + "dependencies": { + }, + "devDependencies": { + } +} diff --git a/config.xml b/config.xml new file mode 100644 index 0000000..779edfb --- /dev/null +++ b/config.xml @@ -0,0 +1,26 @@ + + + PCInfoClient + + A sample Apache Cordova application that responds to the deviceready event. + + + Apache Cordova Team + + + + + + + + + + + + + + + + + + diff --git a/gulpfile.js b/gulpfile.js new file mode 100644 index 0000000..18b3733 --- /dev/null +++ b/gulpfile.js @@ -0,0 +1,11 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ + +var gulp = require('gulp'); + +gulp.task('default', function () { + // place code for your default task here +}); diff --git a/hooks/README.md b/hooks/README.md new file mode 100644 index 0000000..574ad4c --- /dev/null +++ b/hooks/README.md @@ -0,0 +1,23 @@ + +# Cordova Hooks + +Cordova Hooks represent special scripts which could be added by application and plugin developers or even by your own build system to customize cordova commands. See Hooks Guide for more details: http://cordova.apache.org/docs/en/edge/guide_appdev_hooks_index.md.html#Hooks%20Guide. diff --git a/nbproject/build.xml b/nbproject/build.xml new file mode 100644 index 0000000..1879b63 --- /dev/null +++ b/nbproject/build.xml @@ -0,0 +1,293 @@ + + + + + + + + + + = "3.0.0") { + project.setProperty(attributes.get("property"), true); + } + ]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Install "${basedir}/platforms/ios/build/${project.name}.ipa" through iTunes and run it. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/nbproject/configs/android.properties b/nbproject/configs/android.properties new file mode 100644 index 0000000..409754d --- /dev/null +++ b/nbproject/configs/android.properties @@ -0,0 +1,3 @@ +device=emulator +display.name=Android Emulator +type=android diff --git a/nbproject/configs/android_1.properties b/nbproject/configs/android_1.properties new file mode 100644 index 0000000..bc6b508 --- /dev/null +++ b/nbproject/configs/android_1.properties @@ -0,0 +1,3 @@ +device=device +display.name=Android Device +type=android diff --git a/nbproject/configs/ios.properties b/nbproject/configs/ios.properties new file mode 100644 index 0000000..35059da --- /dev/null +++ b/nbproject/configs/ios.properties @@ -0,0 +1,5 @@ +device=emulator +display.name=iPhone Simulator +ios.build.arch=i386 +ios.build.sdk=iphonesimulator6.0 +type=ios diff --git a/nbproject/configs/ios_1.properties b/nbproject/configs/ios_1.properties new file mode 100644 index 0000000..6d6ca26 --- /dev/null +++ b/nbproject/configs/ios_1.properties @@ -0,0 +1,5 @@ +device=device +display.name=iPhone Device +ios.build.arch=armv6 armv7 +ios.build.sdk=iphoneos6.0 +type=ios diff --git a/nbproject/plugins.properties b/nbproject/plugins.properties new file mode 100644 index 0000000..505884d --- /dev/null +++ b/nbproject/plugins.properties @@ -0,0 +1,31 @@ +# This is a list of plugins installed in your project +# You can delete or add new plugins +# +# Format is following: +# id.of.plugin=url_of_repository +# +# Corresponding "id.of.plugin" can be found in the plugin's plugin.xml file: +# +# +# This list contains all core cordova plugins. +# +# For more information about plugins see http://cordova.apache.org/blog/releases/2013/07/23/cordova-3.html +# + +cordova-plugin-device=https://git-wip-us.apache.org/repos/asf/cordova-plugin-device.git +cordova-plugin-network-information=https://git-wip-us.apache.org/repos/asf/cordova-plugin-network-information.git +cordova-plugin-battery-status=https://git-wip-us.apache.org/repos/asf/cordova-plugin-battery-status.git +cordova-plugin-device-motion=https://git-wip-us.apache.org/repos/asf/cordova-plugin-device-motion.git +cordova-plugin-device-orientation=https://git-wip-us.apache.org/repos/asf/cordova-plugin-device-orientation.git +cordova-plugin-geolocation=https://git-wip-us.apache.org/repos/asf/cordova-plugin-geolocation.git +cordova-plugin-camera=https://git-wip-us.apache.org/repos/asf/cordova-plugin-camera.git +cordova-plugin-media-capture=https://git-wip-us.apache.org/repos/asf/cordova-plugin-media-capture.git +cordova-plugin-media=https://git-wip-us.apache.org/repos/asf/cordova-plugin-media.git +cordova-plugin-file=https://git-wip-us.apache.org/repos/asf/cordova-plugin-file.git +cordova-plugin-file-transfer=https://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer.git +cordova-plugin-dialogs=https://git-wip-us.apache.org/repos/asf/cordova-plugin-dialogs.git +cordova-plugin-vibration=https://git-wip-us.apache.org/repos/asf/cordova-plugin-vibration.git +cordova-plugin-contacts=https://git-wip-us.apache.org/repos/asf/cordova-plugin-contacts.git +cordova-plugin-globalization=https://git-wip-us.apache.org/repos/asf/cordova-plugin-globalization.git +cordova-plugin-splashscreen=https://git-wip-us.apache.org/repos/asf/cordova-plugin-splashscreen.git +cordova-plugin-console=https://git-wip-us.apache.org/repos/asf/cordova-plugin-console.git diff --git a/nbproject/project.properties b/nbproject/project.properties new file mode 100644 index 0000000..af131cf --- /dev/null +++ b/nbproject/project.properties @@ -0,0 +1,7 @@ +auxiliary.org-netbeans-modules-cordova.cordova_5f_build_5f_script_5f_version=52 +auxiliary.org-netbeans-modules-cordova.phonegap=true +file.reference.PCInfoClient-test=test +file.reference.PCInfoClient-www=www +files.encoding=UTF-8 +site.root.folder=${file.reference.PCInfoClient-www} +test.folder=${file.reference.PCInfoClient-test} diff --git a/nbproject/project.xml b/nbproject/project.xml new file mode 100644 index 0000000..a1e58bd --- /dev/null +++ b/nbproject/project.xml @@ -0,0 +1,9 @@ + + + org.netbeans.modules.web.clientproject + + + PCInfoClient + + + diff --git a/package.json b/package.json new file mode 100644 index 0000000..477189d --- /dev/null +++ b/package.json @@ -0,0 +1,12 @@ +{ + "name": "com.coolappz.pcinfoclient", + "displayName": "PCInfoClient", + "version": "1.0.0", + "description": "A sample Apache Cordova application that responds to the deviceready event.", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "author": "Apache Cordova Team", + "license": "Apache-2.0" +} \ No newline at end of file diff --git a/res/README.md b/res/README.md new file mode 100644 index 0000000..bffb33b --- /dev/null +++ b/res/README.md @@ -0,0 +1,29 @@ + + +Note that these image resources are not copied into a project when a project +is created with the CLI. Although there are default image resources in a +newly-created project, those come from the platform-specific project template, +which can generally be found in the platform's `template` directory. Until +icon and splashscreen support is added to the CLI, these image resources +aren't used directly. + +See https://issues.apache.org/jira/browse/CB-5145 diff --git a/res/icon/android/icon-36-ldpi.png b/res/icon/android/icon-36-ldpi.png new file mode 100644 index 0000000..cd5032a Binary files /dev/null and b/res/icon/android/icon-36-ldpi.png differ diff --git a/res/icon/android/icon-48-mdpi.png b/res/icon/android/icon-48-mdpi.png new file mode 100644 index 0000000..e79c606 Binary files /dev/null and b/res/icon/android/icon-48-mdpi.png differ diff --git a/res/icon/android/icon-72-hdpi.png b/res/icon/android/icon-72-hdpi.png new file mode 100644 index 0000000..4d27634 Binary files /dev/null and b/res/icon/android/icon-72-hdpi.png differ diff --git a/res/icon/android/icon-96-xhdpi.png b/res/icon/android/icon-96-xhdpi.png new file mode 100644 index 0000000..ec7ffbf Binary files /dev/null and b/res/icon/android/icon-96-xhdpi.png differ diff --git a/res/icon/bada-wac/icon-48-type5.png b/res/icon/bada-wac/icon-48-type5.png new file mode 100644 index 0000000..8ad8bac Binary files /dev/null and b/res/icon/bada-wac/icon-48-type5.png differ diff --git a/res/icon/bada-wac/icon-50-type3.png b/res/icon/bada-wac/icon-50-type3.png new file mode 100644 index 0000000..c6ddf84 Binary files /dev/null and b/res/icon/bada-wac/icon-50-type3.png differ diff --git a/res/icon/bada-wac/icon-80-type4.png b/res/icon/bada-wac/icon-80-type4.png new file mode 100644 index 0000000..f86a27a Binary files /dev/null and b/res/icon/bada-wac/icon-80-type4.png differ diff --git a/res/icon/bada/icon-128.png b/res/icon/bada/icon-128.png new file mode 100644 index 0000000..3516df3 Binary files /dev/null and b/res/icon/bada/icon-128.png differ diff --git a/res/icon/blackberry/icon-80.png b/res/icon/blackberry/icon-80.png new file mode 100644 index 0000000..f86a27a Binary files /dev/null and b/res/icon/blackberry/icon-80.png differ diff --git a/res/icon/blackberry10/icon-80.png b/res/icon/blackberry10/icon-80.png new file mode 100644 index 0000000..f86a27a Binary files /dev/null and b/res/icon/blackberry10/icon-80.png differ diff --git a/res/icon/ios/icon-57-2x.png b/res/icon/ios/icon-57-2x.png new file mode 100644 index 0000000..efd9c37 Binary files /dev/null and b/res/icon/ios/icon-57-2x.png differ diff --git a/res/icon/ios/icon-57.png b/res/icon/ios/icon-57.png new file mode 100644 index 0000000..c795fc4 Binary files /dev/null and b/res/icon/ios/icon-57.png differ diff --git a/res/icon/ios/icon-72-2x.png b/res/icon/ios/icon-72-2x.png new file mode 100644 index 0000000..dd819da Binary files /dev/null and b/res/icon/ios/icon-72-2x.png differ diff --git a/res/icon/ios/icon-72.png b/res/icon/ios/icon-72.png new file mode 100644 index 0000000..b1cfde7 Binary files /dev/null and b/res/icon/ios/icon-72.png differ diff --git a/res/icon/tizen/icon-128.png b/res/icon/tizen/icon-128.png new file mode 100644 index 0000000..3516df3 Binary files /dev/null and b/res/icon/tizen/icon-128.png differ diff --git a/res/icon/webos/icon-64.png b/res/icon/webos/icon-64.png new file mode 100644 index 0000000..03b3849 Binary files /dev/null and b/res/icon/webos/icon-64.png differ diff --git a/res/icon/windows-phone/icon-173-tile.png b/res/icon/windows-phone/icon-173-tile.png new file mode 100644 index 0000000..4f15e20 Binary files /dev/null and b/res/icon/windows-phone/icon-173-tile.png differ diff --git a/res/icon/windows-phone/icon-48.png b/res/icon/windows-phone/icon-48.png new file mode 100644 index 0000000..8ad8bac Binary files /dev/null and b/res/icon/windows-phone/icon-48.png differ diff --git a/res/icon/windows-phone/icon-62-tile.png b/res/icon/windows-phone/icon-62-tile.png new file mode 100644 index 0000000..aab6061 Binary files /dev/null and b/res/icon/windows-phone/icon-62-tile.png differ diff --git a/res/screen/android/screen-hdpi-landscape.png b/res/screen/android/screen-hdpi-landscape.png new file mode 100644 index 0000000..a61e2b1 Binary files /dev/null and b/res/screen/android/screen-hdpi-landscape.png differ diff --git a/res/screen/android/screen-hdpi-portrait.png b/res/screen/android/screen-hdpi-portrait.png new file mode 100644 index 0000000..5d6a28a Binary files /dev/null and b/res/screen/android/screen-hdpi-portrait.png differ diff --git a/res/screen/android/screen-ldpi-landscape.png b/res/screen/android/screen-ldpi-landscape.png new file mode 100644 index 0000000..f3934cd Binary files /dev/null and b/res/screen/android/screen-ldpi-landscape.png differ diff --git a/res/screen/android/screen-ldpi-portrait.png b/res/screen/android/screen-ldpi-portrait.png new file mode 100644 index 0000000..65ad163 Binary files /dev/null and b/res/screen/android/screen-ldpi-portrait.png differ diff --git a/res/screen/android/screen-mdpi-landscape.png b/res/screen/android/screen-mdpi-landscape.png new file mode 100644 index 0000000..a1b697c Binary files /dev/null and b/res/screen/android/screen-mdpi-landscape.png differ diff --git a/res/screen/android/screen-mdpi-portrait.png b/res/screen/android/screen-mdpi-portrait.png new file mode 100644 index 0000000..ea15693 Binary files /dev/null and b/res/screen/android/screen-mdpi-portrait.png differ diff --git a/res/screen/android/screen-xhdpi-landscape.png b/res/screen/android/screen-xhdpi-landscape.png new file mode 100644 index 0000000..79f2f09 Binary files /dev/null and b/res/screen/android/screen-xhdpi-landscape.png differ diff --git a/res/screen/android/screen-xhdpi-portrait.png b/res/screen/android/screen-xhdpi-portrait.png new file mode 100644 index 0000000..c2e8042 Binary files /dev/null and b/res/screen/android/screen-xhdpi-portrait.png differ diff --git a/res/screen/bada-wac/screen-type3.png b/res/screen/bada-wac/screen-type3.png new file mode 100644 index 0000000..ea15693 Binary files /dev/null and b/res/screen/bada-wac/screen-type3.png differ diff --git a/res/screen/bada-wac/screen-type4.png b/res/screen/bada-wac/screen-type4.png new file mode 100644 index 0000000..5d6a28a Binary files /dev/null and b/res/screen/bada-wac/screen-type4.png differ diff --git a/res/screen/bada-wac/screen-type5.png b/res/screen/bada-wac/screen-type5.png new file mode 100644 index 0000000..bd64f76 Binary files /dev/null and b/res/screen/bada-wac/screen-type5.png differ diff --git a/res/screen/bada/screen-portrait.png b/res/screen/bada/screen-portrait.png new file mode 100644 index 0000000..5d6a28a Binary files /dev/null and b/res/screen/bada/screen-portrait.png differ diff --git a/res/screen/blackberry/screen-225.png b/res/screen/blackberry/screen-225.png new file mode 100644 index 0000000..29873e9 Binary files /dev/null and b/res/screen/blackberry/screen-225.png differ diff --git a/res/screen/blackberry10/splash-1280x768.png b/res/screen/blackberry10/splash-1280x768.png new file mode 100644 index 0000000..5f4bca9 Binary files /dev/null and b/res/screen/blackberry10/splash-1280x768.png differ diff --git a/res/screen/blackberry10/splash-720x720.png b/res/screen/blackberry10/splash-720x720.png new file mode 100644 index 0000000..fe1756f Binary files /dev/null and b/res/screen/blackberry10/splash-720x720.png differ diff --git a/res/screen/blackberry10/splash-768x1280.png b/res/screen/blackberry10/splash-768x1280.png new file mode 100644 index 0000000..0fb9c1b Binary files /dev/null and b/res/screen/blackberry10/splash-768x1280.png differ diff --git a/res/screen/ios/screen-ipad-landscape-2x.png b/res/screen/ios/screen-ipad-landscape-2x.png new file mode 100644 index 0000000..0b50ed7 Binary files /dev/null and b/res/screen/ios/screen-ipad-landscape-2x.png differ diff --git a/res/screen/ios/screen-ipad-landscape.png b/res/screen/ios/screen-ipad-landscape.png new file mode 100644 index 0000000..b2f6019 Binary files /dev/null and b/res/screen/ios/screen-ipad-landscape.png differ diff --git a/res/screen/ios/screen-ipad-portrait-2x.png b/res/screen/ios/screen-ipad-portrait-2x.png new file mode 100644 index 0000000..cdac6a7 Binary files /dev/null and b/res/screen/ios/screen-ipad-portrait-2x.png differ diff --git a/res/screen/ios/screen-ipad-portrait.png b/res/screen/ios/screen-ipad-portrait.png new file mode 100644 index 0000000..7f1792c Binary files /dev/null and b/res/screen/ios/screen-ipad-portrait.png differ diff --git a/res/screen/ios/screen-iphone-landscape-2x.png b/res/screen/ios/screen-iphone-landscape-2x.png new file mode 100644 index 0000000..0165669 Binary files /dev/null and b/res/screen/ios/screen-iphone-landscape-2x.png differ diff --git a/res/screen/ios/screen-iphone-landscape.png b/res/screen/ios/screen-iphone-landscape.png new file mode 100644 index 0000000..d154883 Binary files /dev/null and b/res/screen/ios/screen-iphone-landscape.png differ diff --git a/res/screen/ios/screen-iphone-portrait-2x.png b/res/screen/ios/screen-iphone-portrait-2x.png new file mode 100644 index 0000000..bd24886 Binary files /dev/null and b/res/screen/ios/screen-iphone-portrait-2x.png differ diff --git a/res/screen/ios/screen-iphone-portrait-568h-2x.png b/res/screen/ios/screen-iphone-portrait-568h-2x.png new file mode 100644 index 0000000..10ed683 Binary files /dev/null and b/res/screen/ios/screen-iphone-portrait-568h-2x.png differ diff --git a/res/screen/ios/screen-iphone-portrait.png b/res/screen/ios/screen-iphone-portrait.png new file mode 100644 index 0000000..6fcba56 Binary files /dev/null and b/res/screen/ios/screen-iphone-portrait.png differ diff --git a/res/screen/tizen/README.md b/res/screen/tizen/README.md new file mode 100644 index 0000000..82c3f21 --- /dev/null +++ b/res/screen/tizen/README.md @@ -0,0 +1,24 @@ + + +# Tizen Splash Screen + +Splash screens are unsupported on the Tizen platform. diff --git a/res/screen/webos/screen-64.png b/res/screen/webos/screen-64.png new file mode 100644 index 0000000..03b3849 Binary files /dev/null and b/res/screen/webos/screen-64.png differ diff --git a/res/screen/windows-phone/screen-portrait.jpg b/res/screen/windows-phone/screen-portrait.jpg new file mode 100644 index 0000000..479d3e4 Binary files /dev/null and b/res/screen/windows-phone/screen-portrait.jpg differ diff --git a/www/index.html b/www/index.html new file mode 100644 index 0000000..c627c24 --- /dev/null +++ b/www/index.html @@ -0,0 +1,16 @@ + + + + + TODO supply a title + + + + +
TODO write content
+ +