Skip to content

Commit

Permalink
Rename project to cxml and update dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
jjrv committed Jan 15, 2016
1 parent d71969e commit 2cec037
Show file tree
Hide file tree
Showing 37 changed files with 43 additions and 42 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
fast-xml
========
cxml
====

(Currently incomplete and not operational) streaming XML parser using node-expat (requires node-gyp to compile).

Expand Down
11 changes: 6 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{
"name": "fast-xml",
"name": "cxml",
"version": "0.0.2",
"description": "(incomplete) fast XML parser with XSD support",
"description": "(incomplete) fast schema-aware XML parser with XSD support",
"main": "index.js",
"scripts": {
"tsc": "tsc",
"tsd": "tsd",
"prepublish": "tsc",
"prepublish": "tsd install && tsc",
"test": "node index.js"
},
"author": "Juha Järvi",
Expand All @@ -21,10 +22,10 @@
"dependencies": {
"bluebird": "~3.1.1",
"cget": "~0.0.3",
"node-expat": "~2.3.11"
"node-expat": "~2.3.12"
},
"devDependencies": {
"tsd": "~0.6.5",
"typescript": "^1.8.0-dev.20151204"
"typescript": "~1.8.0-dev.20160114"
}
}
2 changes: 1 addition & 1 deletion src/schema.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file is part of fast-xml, copyright (c) 2015-2016 BusFaster Ltd.
// This file is part of cxml, copyright (c) 2015-2016 BusFaster Ltd.
// Released under the MIT license, see LICENSE.

export {Namespace} from './schema/Namespace';
Expand Down
2 changes: 1 addition & 1 deletion src/schema/ExporterTS.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file is part of fast-xml, copyright (c) 2015-2016 BusFaster Ltd.
// This file is part of cxml, copyright (c) 2015-2016 BusFaster Ltd.
// Released under the MIT license, see LICENSE.

import * as path from 'path';
Expand Down
2 changes: 1 addition & 1 deletion src/schema/Member.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file is part of fast-xml, copyright (c) 2016 BusFaster Ltd.
// This file is part of cxml, copyright (c) 2016 BusFaster Ltd.
// Released under the MIT license, see LICENSE.

import {Namespace} from './Namespace';
Expand Down
2 changes: 1 addition & 1 deletion src/schema/Namespace.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file is part of fast-xml, copyright (c) 2016 BusFaster Ltd.
// This file is part of cxml, copyright (c) 2016 BusFaster Ltd.
// Released under the MIT license, see LICENSE.

import * as path from 'path';
Expand Down
2 changes: 1 addition & 1 deletion src/schema/NamespaceRef.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file is part of fast-xml, copyright (c) 2016 BusFaster Ltd.
// This file is part of cxml, copyright (c) 2016 BusFaster Ltd.
// Released under the MIT license, see LICENSE.

import {Namespace} from './Namespace';
Expand Down
2 changes: 1 addition & 1 deletion src/schema/Type.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file is part of fast-xml, copyright (c) 2016 BusFaster Ltd.
// This file is part of cxml, copyright (c) 2016 BusFaster Ltd.
// Released under the MIT license, see LICENSE.

import {Namespace} from './Namespace';
Expand Down
2 changes: 1 addition & 1 deletion src/xsd.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file is part of fast-xml, copyright (c) 2015-2016 BusFaster Ltd.
// This file is part of cxml, copyright (c) 2015-2016 BusFaster Ltd.
// Released under the MIT license, see LICENSE.

import {Cache} from 'cget';
Expand Down
2 changes: 1 addition & 1 deletion src/xsd/Exporter.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file is part of fast-xml, copyright (c) 2015-2016 BusFaster Ltd.
// This file is part of cxml, copyright (c) 2015-2016 BusFaster Ltd.
// Released under the MIT license, see LICENSE.

import {Namespace} from './Namespace';
Expand Down
2 changes: 1 addition & 1 deletion src/xsd/Loader.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file is part of fast-xml, copyright (c) 2015-2016 BusFaster Ltd.
// This file is part of cxml, copyright (c) 2015-2016 BusFaster Ltd.
// Released under the MIT license, see LICENSE.

import {Address, FetchOptions, Cache, CacheResult, util} from 'cget'
Expand Down
2 changes: 1 addition & 1 deletion src/xsd/Namespace.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file is part of fast-xml, copyright (c) 2015-2016 BusFaster Ltd.
// This file is part of cxml, copyright (c) 2015-2016 BusFaster Ltd.
// Released under the MIT license, see LICENSE.

import {Loader} from './Loader';
Expand Down
2 changes: 1 addition & 1 deletion src/xsd/Parser.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file is part of fast-xml, copyright (c) 2015-2016 BusFaster Ltd.
// This file is part of cxml, copyright (c) 2015-2016 BusFaster Ltd.
// Released under the MIT license, see LICENSE.

import * as expat from 'node-expat';
Expand Down
2 changes: 1 addition & 1 deletion src/xsd/QName.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file is part of fast-xml, copyright (c) 2015-2016 BusFaster Ltd.
// This file is part of cxml, copyright (c) 2015-2016 BusFaster Ltd.
// Released under the MIT license, see LICENSE.

import {Namespace} from './Namespace'
Expand Down
2 changes: 1 addition & 1 deletion src/xsd/Scope.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file is part of fast-xml, copyright (c) 2015-2016 BusFaster Ltd.
// This file is part of cxml, copyright (c) 2015-2016 BusFaster Ltd.
// Released under the MIT license, see LICENSE.

import * as types from './types';
Expand Down
2 changes: 1 addition & 1 deletion src/xsd/Source.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file is part of fast-xml, copyright (c) 2015-2016 BusFaster Ltd.
// This file is part of cxml, copyright (c) 2015-2016 BusFaster Ltd.
// Released under the MIT license, see LICENSE.

import * as url from 'url';
Expand Down
2 changes: 1 addition & 1 deletion src/xsd/State.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file is part of fast-xml, copyright (c) 2015-2016 BusFaster Ltd.
// This file is part of cxml, copyright (c) 2015-2016 BusFaster Ltd.
// Released under the MIT license, see LICENSE.

import * as expat from 'node-expat';
Expand Down
2 changes: 1 addition & 1 deletion src/xsd/types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file is part of fast-xml, copyright (c) 2015-2016 BusFaster Ltd.
// This file is part of cxml, copyright (c) 2015-2016 BusFaster Ltd.
// Released under the MIT license, see LICENSE.

export {Base, BaseClass} from './types/Base';
Expand Down
2 changes: 1 addition & 1 deletion src/xsd/types/Annotation.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file is part of fast-xml, copyright (c) 2015-2016 BusFaster Ltd.
// This file is part of cxml, copyright (c) 2015-2016 BusFaster Ltd.
// Released under the MIT license, see LICENSE.

import * as types from '../types';
Expand Down
2 changes: 1 addition & 1 deletion src/xsd/types/AnyAttribute.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file is part of fast-xml, copyright (c) 2015-2016 BusFaster Ltd.
// This file is part of cxml, copyright (c) 2015-2016 BusFaster Ltd.
// Released under the MIT license, see LICENSE.

import {State} from '../State';
Expand Down
2 changes: 1 addition & 1 deletion src/xsd/types/Attribute.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file is part of fast-xml, copyright (c) 2015-2016 BusFaster Ltd.
// This file is part of cxml, copyright (c) 2015-2016 BusFaster Ltd.
// Released under the MIT license, see LICENSE.

import {State} from '../State';
Expand Down
2 changes: 1 addition & 1 deletion src/xsd/types/AttributeGroup.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file is part of fast-xml, copyright (c) 2015-2016 BusFaster Ltd.
// This file is part of cxml, copyright (c) 2015-2016 BusFaster Ltd.
// Released under the MIT license, see LICENSE.

import {State} from '../State';
Expand Down
2 changes: 1 addition & 1 deletion src/xsd/types/Base.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file is part of fast-xml, copyright (c) 2015-2016 BusFaster Ltd.
// This file is part of cxml, copyright (c) 2015-2016 BusFaster Ltd.
// Released under the MIT license, see LICENSE.

import {State, Rule} from '../State';
Expand Down
2 changes: 1 addition & 1 deletion src/xsd/types/ComplexType.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file is part of fast-xml, copyright (c) 2015 BusFaster Ltd.
// This file is part of cxml, copyright (c) 2015-2016 BusFaster Ltd.
// Released under the MIT license, see LICENSE.

import {State} from '../State';
Expand Down
2 changes: 1 addition & 1 deletion src/xsd/types/DerivationBase.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file is part of fast-xml, copyright (c) 2015-2016 BusFaster Ltd.
// This file is part of cxml, copyright (c) 2015-2016 BusFaster Ltd.
// Released under the MIT license, see LICENSE.

import {State} from '../State';
Expand Down
2 changes: 1 addition & 1 deletion src/xsd/types/Documentation.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file is part of fast-xml, copyright (c) 2015-2016 BusFaster Ltd.
// This file is part of cxml, copyright (c) 2015-2016 BusFaster Ltd.
// Released under the MIT license, see LICENSE.

import {State} from '../State';
Expand Down
2 changes: 1 addition & 1 deletion src/xsd/types/Element.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file is part of fast-xml, copyright (c) 2015-2016 BusFaster Ltd.
// This file is part of cxml, copyright (c) 2015-2016 BusFaster Ltd.
// Released under the MIT license, see LICENSE.

import {State} from '../State';
Expand Down
2 changes: 1 addition & 1 deletion src/xsd/types/Enumeration.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file is part of fast-xml, copyright (c) 2015-2016 BusFaster Ltd.
// This file is part of cxml, copyright (c) 2015-2016 BusFaster Ltd.
// Released under the MIT license, see LICENSE.

import {State} from '../State';
Expand Down
2 changes: 1 addition & 1 deletion src/xsd/types/Extension.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file is part of fast-xml, copyright (c) 2015-2016 BusFaster Ltd.
// This file is part of cxml, copyright (c) 2015-2016 BusFaster Ltd.
// Released under the MIT license, see LICENSE.

import {DerivationBase} from './DerivationBase';
Expand Down
2 changes: 1 addition & 1 deletion src/xsd/types/Group.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file is part of fast-xml, copyright (c) 2015-2016 BusFaster Ltd.
// This file is part of cxml, copyright (c) 2015-2016 BusFaster Ltd.
// Released under the MIT license, see LICENSE.

import {State} from '../State';
Expand Down
2 changes: 1 addition & 1 deletion src/xsd/types/Import.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file is part of fast-xml, copyright (c) 2015 BusFaster Ltd.
// This file is part of cxml, copyright (c) 2015 BusFaster Ltd.
// Released under the MIT license, see LICENSE.

import {State} from '../State';
Expand Down
2 changes: 1 addition & 1 deletion src/xsd/types/MemberBase.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file is part of fast-xml, copyright (c) 2015-2016 BusFaster Ltd.
// This file is part of cxml, copyright (c) 2015-2016 BusFaster Ltd.
// Released under the MIT license, see LICENSE.

import {State} from '../State';
Expand Down
2 changes: 1 addition & 1 deletion src/xsd/types/MissingReferenceError.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file is part of fast-xml, copyright (c) 2015-2016 BusFaster Ltd.
// This file is part of cxml, copyright (c) 2015-2016 BusFaster Ltd.
// Released under the MIT license, see LICENSE.

import {State} from '../State';
Expand Down
2 changes: 1 addition & 1 deletion src/xsd/types/Primitive.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file is part of fast-xml, copyright (c) 2015-2016 BusFaster Ltd.
// This file is part of cxml, copyright (c) 2015-2016 BusFaster Ltd.
// Released under the MIT license, see LICENSE.

import {TypeBase} from './TypeBase';
Expand Down
2 changes: 1 addition & 1 deletion src/xsd/types/Restriction.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file is part of fast-xml, copyright (c) 2015-2016 BusFaster Ltd.
// This file is part of cxml, copyright (c) 2015-2016 BusFaster Ltd.
// Released under the MIT license, see LICENSE.

import {State} from '../State';
Expand Down
2 changes: 1 addition & 1 deletion src/xsd/types/Schema.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file is part of fast-xml, copyright (c) 2015 BusFaster Ltd.
// This file is part of cxml, copyright (c) 2015 BusFaster Ltd.
// Released under the MIT license, see LICENSE.

import {State} from '../State';
Expand Down
2 changes: 1 addition & 1 deletion src/xsd/types/TypeBase.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file is part of fast-xml, copyright (c) 2015-2016 BusFaster Ltd.
// This file is part of cxml, copyright (c) 2015-2016 BusFaster Ltd.
// Released under the MIT license, see LICENSE.

import {Base, BaseClass} from './Base';
Expand Down

0 comments on commit 2cec037

Please sign in to comment.