Skip to content

Commit

Permalink
changes in 2.1.2 (from a long time ago that were never committed via …
Browse files Browse the repository at this point in the history
…google code SVN)
  • Loading branch information
arnett, stu committed Sep 6, 2018
1 parent 133b284 commit 9da89da
Show file tree
Hide file tree
Showing 12 changed files with 352 additions and 82 deletions.
212 changes: 212 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,212 @@
# Created by .ignore support plugin (hsz.mobi)
### Windows template
# Windows thumbnail cache files
Thumbs.db
ehthumbs.db
ehthumbs_vista.db

# Dump file
*.stackdump

# Folder config file
[Dd]esktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

# Windows Installer files
*.cab
*.msi
*.msix
*.msm
*.msp

# Windows shortcuts
*.lnk
### Java template
# Compiled class file
*.class

# Log file
*.log

# BlueJ files
*.ctxt

# Mobile Tools for Java (J2ME)
.mtj.tmp/

# Package Files #
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
### Eclipse template

.metadata
bin/
tmp/
*.tmp
*.bak
*.swp
*~.nib
local.properties
.settings/
.loadpath
.recommenders

# External tool builders
.externalToolBuilders/

# Locally stored "Eclipse launch configurations"
*.launch

# PyDev specific (Python IDE for Eclipse)
*.pydevproject

# CDT-specific (C/C++ Development Tooling)
.cproject

# CDT- autotools
.autotools

# Java annotation processor (APT)
.factorypath

# PDT-specific (PHP Development Tools)
.buildpath

# sbteclipse plugin
.target

# Tern plugin
.tern-project

# TeXlipse plugin
.texlipse

# STS (Spring Tool Suite)
.springBeans

# Code Recommenders
.recommenders/

# Annotation Processing
.apt_generated/

# Scala IDE specific (Scala & Java development for Eclipse)
.cache-main
.scala_dependencies
.worksheet
### macOS template
# General
.DS_Store
.AppleDouble
.LSOverride

# Icon must end with two \r
Icon

# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk
### Node template
# Logs
logs
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# TypeScript v1 declaration files
typings/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env

# parcel-bundler cache (https://parceljs.org/)
.cache

# next.js build output
.next

# nuxt.js build output
.nuxt

# vuepress build output
.vuepress/dist

# Serverless directories
.serverless


*.iws
*.iml
.idea/
out/
4 changes: 3 additions & 1 deletion AtmosJS/build.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<project name="atmos-js" default="compile">
<property name="src" location="src"/>
<property name="version" value="2.1.1"/>
<property name="version" value="2.1.2"/>

<property name="jsdoc_home" value="${user.home}/local/jsdoc-toolkit"/>

<!-- TODO: need to find a replacement for this
<path id="jsdoc_classpath">
<fileset dir="${jsdoc_home}">
<include name="*.jar"/>
Expand All @@ -24,6 +25,7 @@
<fileset dir="${src}" includes="*.js"/>
</jsdoctoolkit>
</target>
-->

<taskdef name="jscomp" classname="com.google.javascript.jscomp.ant.CompileTask"
classpath="compiler.jar"/>
Expand Down
4 changes: 2 additions & 2 deletions AtmosJS/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"author": "Chris Arnett <christopher[email protected]>",
"author": "Stu Arnett <stu[email protected]>",
"name": "atmos",
"description": "Connector for EMC Atmos cloud storage",
"version": "2.1.1",
"version": "2.1.2",
"homepage": "http://code.google.com/p/atmos-js",
"repository": {
"url": ""
Expand Down
2 changes: 1 addition & 1 deletion AtmosJS/samples/node/create-object.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AtmosJS = require( '../../atmos-min-2.1.1.js' );
AtmosJS = require( '../../atmos-min-2.1.2.js' );
AtmosRest = AtmosJS.AtmosRest;
ListOptions = AtmosJS.ListOptions;
AtmosRange = AtmosJS.AtmosRange;
Expand Down
2 changes: 1 addition & 1 deletion AtmosJS/samples/node/delete-object.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AtmosJS = require( '../../atmos-min-2.1.1.js' );
AtmosJS = require( '../../atmos-min-2.1.2.js' );
AtmosRest = AtmosJS.AtmosRest;
ListOptions = AtmosJS.ListOptions;
AtmosRange = AtmosJS.AtmosRange;
Expand Down
2 changes: 1 addition & 1 deletion AtmosJS/samples/node/get-server-info.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AtmosJS = require( '../../atmos-min-2.1.1.js' );
AtmosJS = require( '../../atmos-min-2.1.2.js' );
AtmosRest = AtmosJS.AtmosRest;
ListOptions = AtmosJS.ListOptions;
AtmosRange = AtmosJS.AtmosRange;
Expand Down
2 changes: 1 addition & 1 deletion AtmosJS/samples/node/read-object.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AtmosJS = require( '../../atmos-min-2.1.1.js' );
AtmosJS = require( '../../atmos-min-2.1.2.js' );
AtmosRest = AtmosJS.AtmosRest;
ListOptions = AtmosJS.ListOptions;
AtmosRange = AtmosJS.AtmosRange;
Expand Down
Loading

0 comments on commit 9da89da

Please sign in to comment.