-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
attempt to fix csv writing on cordova by replacing streaming
This is an attempt to fix duplicate headers in the csv export. It replaces the node stream functionality with simple string writing, and uses papa parse instead of constructing the csv manually. It doesn't seem to work!
- Loading branch information
Showing
4 changed files
with
19 additions
and
6 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,13 +1,16 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | ||
<widget android-versionCode="6388" id="org.codaco.NetworkCanvasInterviewer6" ios-CFBundleIdentifier="org.codaco.networkCanvasInterviewerBusiness" ios-CFBundleVersion="6388" version="6.5.1" xmlns="http://www.w3.org/ns/widgets" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:cdv="http://cordova.apache.org/ns/1.0"> | ||
<widget android-versionCode="6388" id="org.codaco.NetworkCanvasInterviewer6" ios-CFBundleIdentifier="org.codaco.networkCanvasInterviewerBusiness" ios-CFBundleVersion="6388" version="6.5.1" | ||
xmlns="http://www.w3.org/ns/widgets" | ||
xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:cdv="http://cordova.apache.org/ns/1.0"> | ||
<name>Network Canvas Interviewer</name> | ||
<description> | ||
A tool for conducting Network Canvas Interviews. | ||
</description> | ||
<author email="[email protected]" href="http://coda.co"> | ||
Complex Data Collective | ||
</author> | ||
<content src="index.html"/> | ||
<content src="http://192.168.1.210:3000/"/> | ||
<access origin="*"/> | ||
<access origin="cdvfile://*"/> | ||
<allow-intent href="http://*/*"/> | ||
|
@@ -84,4 +87,4 @@ | |
<plugin name="cordova-plugin-network-information" spec="~2.0.2"/> | ||
<plugin name="cordova-plugin-chooser" spec="~1.3.1"/> | ||
<plugin name="cordova-sqlite-storage" spec="6.0.0"/> | ||
</widget> | ||
</widget> |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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