-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrated to qxcompiler and proper contrib structure
- Loading branch information
Showing
19 changed files
with
92 additions
and
372 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
source/script/* | ||
build/* | ||
api/* | ||
.*.swp | ||
# .gitignore template for skeleton-based apps | ||
/compiled | ||
/contrib |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,32 @@ | ||
{ | ||
"info" : | ||
"info" : | ||
{ | ||
"name" : "qxfileio", | ||
|
||
"summary" : "Utilitary class to read and write file client side", | ||
"description" : "This application contains classes that allow reading and writing files to user file system using the W3C File API.", | ||
"homepage" : "http://some.homepage.url/", | ||
|
||
"homepage" : "https://github.com/sgaillard/qxfileio", | ||
|
||
"license" : "CeCILL", | ||
"authors" : | ||
"authors" : | ||
[ | ||
{ | ||
"name" : "Sylvain Gaillard (sgaillard)", | ||
"email" : "sylvain.gaillard@angers.inra.fr" | ||
"email" : "[email protected]" | ||
} | ||
], | ||
|
||
"version" : "master", | ||
"qooxdoo-versions": ["5.0"] | ||
"version" : "0.1.0", | ||
"qooxdoo-versions": ["5.0.2", "6.0.0-alpha"] | ||
}, | ||
|
||
"provides" : | ||
"requires" : { | ||
"qooxdoo-sdk": "^6.0.0-alpha", | ||
"qooxdoo-compiler": "^0.3.0-alpha" | ||
}, | ||
|
||
"provides" : | ||
{ | ||
"namespace" : "qxfileio", | ||
"encoding" : "utf-8", | ||
|
@@ -31,4 +36,3 @@ | |
"type" : "application" | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"targets": [ | ||
{ | ||
"type": "source", | ||
"outputPath": "compiled/source", | ||
"bundle": { | ||
"include": "qx.*" | ||
} | ||
}, | ||
{ | ||
"type": "build", | ||
"outputPath": "compiled/build" | ||
} | ||
], | ||
"defaultTarget": "source", | ||
"locales": ["en"], | ||
|
||
"applications": [ | ||
{ | ||
"class": "qxfileio.demo.Application", | ||
"theme": "qxfileio.theme.Theme", | ||
"name": "qxfileio" | ||
} | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# qxfileio | ||
|
||
Utilitary class to read and write client side files | ||
|
||
This contrib contains classes that allow reading and writing files to user file | ||
system using the W3C File API. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
/** <h3> qxfileio API Documentation </h3> | ||
* | ||
* Provides class to read and write files on the client file system. | ||
* Replace this text with an appropriate overview and introduction to your | ||
* contrib library. | ||
* | ||
*/ |
Oops, something went wrong.