Skip to content

Commit

Permalink
Prepare v3.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
joewiz committed Jan 6, 2023
1 parent d2dd7c5 commit 1f51469
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 9 deletions.
19 changes: 13 additions & 6 deletions docs/docs.md
Expand Up @@ -123,16 +123,21 @@ will only work if the app window has been
opened from within eXide, not via the Dashboard. A web page cannot control other windows unless it
created them.

## Drop Files
## Drag and Drop Files

Drag a file on the editor to open its contents in a new tab. The new tab will not have the original file's name,
but you can provide a name via "File > Save".

## Directory Uploads
## Upload Directories

Use "File > Manage > Upload Files > Upload Directory" to upload
entire directories and preserve their structure. Or drag and drop onto the Upload Files pane.

## Download Resources

Use "File > Manage > (select a resource or collection) > Download Selected" to download an individual files or
entire collections from the database and preserve their structure.

## Run XQSuite tests

Execute [XQSuite test suites](https://exist-db.org/exist/apps/doc/xqsuite) embedded in XQuery library modules by
Expand Down Expand Up @@ -161,14 +166,16 @@ To see the results of a query, hit the "Eval" button in eXide's toolbar. (The "R
and is only available for queries that have been saved to the database.) To automatically submit a query as you edit it,
select the "Live Preview" checkbox at the top of the query results window.

eXide displays query results in groups of 10 (i.e., a query `1 to 100` would be split into 10 pages). Navigate through these
eXide displays query results 10 at a time (i.e., a query `1 to 100` would be split into 10 pages), or customize the number of
results. Navigate through pages of
results with the `<<` and `>>` icons at the top of the query results window. To see all results in a single screen, surround your
query with an array constructor: `array { 1 to 100 }`.
query with an array constructor: `array { 1 to 100 }`. Use the "Copy to Clipboard" button to copy the current page's worth of
results.

When displaying query results, use the dropdown menu above the query results window to select a serialization method to apply
to the results. The options available include all serialization options supported by eXist: Adaptive Output (eXide's default),
JSON, Text, XML, HTML5, XHTML, XHTML5, MicroXML, and "Direct". In all but the last option, the selection overrides any
serialization declarations in a query's prolog, and the results are displayed as plain text. The "Direct" option allows the
JSON, Text, XML, HTML5, XHTML, XHTML5, MicroXML, and "Direct". In all but the last option, the selection overrides any
serialization declarations in a query's prolog, and the results are displayed as plain text. The final, "Direct" option allows the
serialization method to be set in the query, but the results are shown in the display window not as plain text but as the
browser would render them assuming HTML.

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "exide",
"version": "3.4.0",
"version": "3.5.0",
"description": "a web-based XQuery IDE",
"main": "main.js",
"directories": {
Expand Down
12 changes: 12 additions & 0 deletions repo.xml
Expand Up @@ -12,6 +12,18 @@
<finish/>
<permissions xmlns:repo="http://exist-db.org/xquery/repo" password="eXide" user="eXide" group="eXide" mode="0775"/>
<changelog>
<change version="3.5.0">
<ul xmlns="http://www.w3.org/1999/xhtml">
<li>Fixed: Login dialog should focus on User input field with File > Manage - <a href="https://github.com/eXist-db/eXide/pull/468">#468</a></li>
<li>New: Save as uses current file's collection - <a href="https://github.com/eXist-db/eXide/pull/469">#469</a></li>
<li>New: Add preference to toggle auto-pairing of comments and brackets, and improve auto-pairing - <a href="https://github.com/eXist-db/eXide/pull/471">#471</a>, <a href="https://github.com/eXist-db/eXide/pull/475">#475</a></li>
<li>New: Add download button to DB Manager view - <a href="https://github.com/eXist-db/eXide/pull/484">#484</a></li>
<li>Fixed: Handling of resources with special characters - <a href="https://github.com/eXist-db/eXide/pull/489">#489</a></li>
<li>New: Syntax highlighting applied to query results - <a href="https://github.com/eXist-db/eXide/pull/491">#491</a></li>
<li>New: Copy results pane to clipboard - <a href="https://github.com/eXist-db/eXide/pull/513">#513</a></li>
<li>New: Set the number of results displayed - <a href="https://github.com/eXist-db/eXide/pull/527">#527</a></li>
</ul>
</change>
<change version="3.4.0">
<ul xmlns="http://www.w3.org/1999/xhtml">
<li>New: Warn user when saving contents of XQuery window with non-XQuery file extension - <a href="https://github.com/eXist-db/eXide/pull/462">#462</a></li>
Expand Down

0 comments on commit 1f51469

Please sign in to comment.