Skip to content

Commit

Permalink
Migrated to qxcompiler and proper contrib structure
Browse files Browse the repository at this point in the history
  • Loading branch information
sgaillard committed Mar 15, 2019
1 parent 9f53eba commit 7935c47
Show file tree
Hide file tree
Showing 19 changed files with 92 additions and 372 deletions.
7 changes: 3 additions & 4 deletions .gitignore
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
38 changes: 0 additions & 38 deletions Gruntfile.js

This file was deleted.

22 changes: 13 additions & 9 deletions Manifest.json
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",
Expand All @@ -31,4 +36,3 @@
"type" : "application"
}
}

25 changes: 25 additions & 0 deletions compile.json
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"
}
]
}
89 changes: 0 additions & 89 deletions config.json

This file was deleted.

152 changes: 0 additions & 152 deletions generate.py

This file was deleted.

9 changes: 0 additions & 9 deletions package.json

This file was deleted.

6 changes: 6 additions & 0 deletions readme.md
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.
11 changes: 0 additions & 11 deletions readme.txt

This file was deleted.

3 changes: 2 additions & 1 deletion source/class/qxfileio/__init__.js
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.
*
*/
Loading

0 comments on commit 7935c47

Please sign in to comment.