Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The File Connector currently only supports Amazon S3 as the Type (we plan to extend this to Azure Blob Storage soon). The Connector requires the S3 Bucket name which is the top-level bucket name without any additional path, and the AWS Access Key and Secret Access Key.

...

  • XML elements become JSON arrays
  • XML attributes becomes become "$" object objects with fields
  • XML body text becomes "_" when there are attributes
  • All element names are flattened to lowercase
  • Attribute names are not flattened

...

The doNotTrack option is currently only available by modifying the JavaScript _kw.options object. There is no UI configuration available yetas part of this release

For example if you had a HTML body like this: 

Code Block
languagexml
themeEmacs
  <body>
    <h1>Hello world!</h1>
    <div id="content">
      <code id="response">This is a div tag</code>
    </div>
    <div id="testers">
      <a href="index.html" class="doNotTrack">This is a link!</a><br/>
      <div id="form">
        <form action="index.html" method="post">
          <input type="text" name="myText"/>
          <input type="password" name="passField"/>
          <input type="submit" value="Submit me"/>
        </form>
      </div>
    </div>
  </body>

the The following "doNotTrack" object could be used within the _kw.options object: 

...