Skip to content

Commit 10e2dc4

Browse files
committed
update publish detail
1 parent fb012da commit 10e2dc4

File tree

4 files changed

+11272
-3125
lines changed

4 files changed

+11272
-3125
lines changed

README.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,14 +90,24 @@ const xmlContent = builder.build(jObj);
9090

9191
In a HTML page
9292
```html
93-
<script src="path/to/fxparser.js"></script>
93+
<script src="path/to/fxp.min.js"></script>
9494
:
9595
<script>
9696
const parser = new fxparser.XMLParser();
9797
parser.parse(xmlContent);
9898
</script>
9999
```
100100

101+
Check lib folder for different browser bundles
102+
103+
| Bundle Name | Size |
104+
| -- | -- |
105+
| fxbuilder.min.js | 5.2K |
106+
| fxparser.js | 50K |
107+
| fxparser.min.js | 17K |
108+
| fxp.min.js | 22K |
109+
| fxvalidator.min.js | 5.7K |
110+
101111
### Documents
102112
**v3**
103113
* [documents](./docs/v3/docs.md)
@@ -135,6 +145,7 @@ In a HTML page
135145
* Run tests for a route or from a route
136146
* Customizable reporting
137147
* Central dashboard for better monitoring
148+
* Options to integrate E2E tests with Jira, Github etc using Central dashboard `Tian`.
138149
* **[Stubmatic](https://github.com/NaturalIntelligence/Stubmatic)** : Create fake webservices, DynamoDB or S3 servers, Manage fake/mock stub data, Or fake any HTTP(s) call.
139150

140151

index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<!-- <script src="static/js/prettify.min.js"></script> -->
2727
<link rel="stylesheet" type="text/css" href="static/css/animate3.5.2.min.css">
2828

29-
<script src="lib/fxparser.js"></script>
29+
<script src="lib/fxp.min.js"></script>
3030
<script src="static/js/jquery-confirm.min.js"></script>
3131
<style>
3232
.CodeMirror{
@@ -145,7 +145,7 @@ <h2>Note!!</h2>
145145

146146
$('#toJson').on('click', function() {
147147
$('#result').val('');
148-
const parser = new fxparser.XMLParser(buildParsingConfig());
148+
const parser = new fxp.XMLParser(buildParsingConfig());
149149
let result;
150150
try{
151151
result = parser.parse(editor.getValue(),{
@@ -162,7 +162,7 @@ <h2>Note!!</h2>
162162
let input = $('#result').val().trim() ;
163163
if(input.length){
164164
editor.setValue('');
165-
const builder = new fxparser.XMLBuilder(xmlBuilderOptions());
165+
const builder = new fxp.XMLBuilder(xmlBuilderOptions());
166166
const result = builder.build(JSON.parse( $('#result').val() ));
167167
editor.setValue('<?xml version="1.0"?>\n'+result);
168168
}else{
@@ -172,7 +172,7 @@ <h2>Note!!</h2>
172172

173173
$('#validate').on('click', function() {
174174
$('#result').val('');
175-
const parser = fxparser.XMLValidator;
175+
const parser = fxp.XMLValidator;
176176
const config = {
177177
allowBooleanAttributes: $("#allowBooleanAttributes_v").prop("checked"),
178178
};

0 commit comments

Comments
 (0)