---
title: "Release Notes – Version 5.3001 (April 2013)"
source: https://dev.pageseeder.com/guide/installation/release_notes/release_notes_version_5.3001.html
last_updated: 2026-09-05T17:36:31+10:00
tokens: ~2029
---

# Release Notes – Version 5.3001 (3 April 2013)

referenced by Version 5.3 and 5.3001: Download PageSeeder 5.0002 (reverse links to be added)

**The following features have been added:**

| Description | ID | Date | Version |
| --- | --- | --- | --- |
| **Added:** new System Info page under the Admin menu which shows disk and memory usage, generator statistics and all java threads. Disk usage no longer appears on the Console page. | 461670 | 22 Mar 2013 | 5.2906 |
| **Added:** "Export as Universal Format PSML" option to the Export page for folders and single PS XML documents | 464212 | 20 Mar 2013 | 5.2906 |
| **Added:** to Upload Documents page, support for uploading the PageSeeder Universal Format including portable PSML with a META-INF folder. Since PSML is converted to PS standard XML there are the following restrictions: `<section>` must have an `@id` attribute`@id` attributes  of the `<fragment>` element  must equal the parent section id or have the format `[section id].1xx1` where `xx` is a two digit number.`<property>` element must have a single `@value` attribute or `<xref>` element | 462640 | 12 Mar 2013 | 5.2903 |
| **Added:** support to `list-filter-comments` service for `returngroups` parameter and `*` wildcard suffix on title parameter | 461620 | 19 Feb 2013 | 5.2903 |
| **Added:** move comment and modify attachments functionality to `edit-comment` service | 458429 | 18 Feb 2013 | 5.2903 |
| **Added:** new `get-discussion` service which does not require group | 458428 | 18 Feb 2013 | 5.2903 |
| **Added:** the following new member services: `register-member``invite-self``list-member-visible-groups` | 458427 | 18 Feb 2013 | 5.2903 |

 

- **Added:** support to schematron validation for using the `document()` function to check the contents of other XML documents in PageSeeder. For example the following rule could be used to check if the contents of referenced documents contained a `heading2` element.

```xml

<sch:rule context="xref|blockxref">
  <sch:assert test="document(@href)//heading2">
    Document <sch:value-of select="@href"/> has no heading2.
  </sch:assert>
 </sch:rule>
```

(22 Mar 13, ID: 451191, v5.2906)  

 

- **Added:** support for customizing psxreflist config options using the `body/@type` by supporting "default" or "\[type\]" json properties above the current config options, e.g.

```java

"PSXRefListConfig": {
  "default" : {
    "xref": {
      "type": "Transclude"
    }
  },
  "mytype" : {
    "xref": {
      "type": "None"
    }
  }
}
```

(13 Mar 13, ID: 462713, v5.2903)  

 

- **Added:** support to psxreflist config for autosuggest "display" property which is a list of index fields to be displayed under each result, e.g.

```java

"autosuggest": {
  "display" : ["pslabel", "pscontent"]
}
```

The `"pstitle"` and `"psid"` are always displayed.

> **Note:** To display the document path in existing autosuggest configuration specify the fields "psfolder", "psfilename" in that order.

(13 Mar 13, ID: 462937, v5.2903)

  

**The following changes have been made:**

> **Note:** When upgrading from v5.2 to v5.3, you do not need to run the update using the URL `http://[my server]/ps/servlet/com.pageseeder.Update`, and if you do, it will display an error.

| Description | ID | Date | Version |
| --- | --- | --- | --- |
| **Fixed:** Internet Explorer 10 problems with browser WARNING message, pages with graphs and FCK editor. | 464774 | 03 Apr 2013 | 5.3001 |
| **Fixed:** custom member details from new .xml config file not appear on the group-member-groupdetails page. Projects using the old member details .properties config must be updated to use the new .xml config file and any custom group-member-groupdetails page must be removed or updated to use the new XML format. | 456056 | 02 Apr 2013 | 5.2906 |
| **Fixed:** possible memory leak when uploading large amounts of documents by upgrading to Saxon v9 | 441534 | 25 Mar 2013 | 5.2906 |
| **Removed:** query string and fragment from `@href` attribute in `<xref>` and `<blockXref>` Projects that use the query string or fragment from the `@href` attribute should now use the `@frag` attribute | 464470 | 22 Mar 2013 | 5.2906 |
| **Fixed:** possible error when publishing: "This publishing action is not currently running." | 450775 | 20 Mar 2013 | 5.2906 |
| **Modified:** Comments created when a common group is the current group now do not require ticking the common group but will always display a confirmation dialog. The confirmation dialog for non-current groups is no longer displayed for new comments. | 464380 | 20 Mar 2013 | 5.2906 |
| **Fixed:** reverse XRefs on fragments to archived documents not displaying the archived icon | 464248 | 20 Mar 2013 | 5.2906 |
| **Fixed:** formatting problem on New Project page and added a drop down list of hosts under Advanced Options - Default Folder to make it easier to create projects for multiple hosts | 464250 | 20 Mar 2013 | 5.2906 |
| **Fixed:** the following possible error when uploading documents "URLDecoder: Incomplete trailing escape (%) pattern" | 464302 | 19 Mar 2013 | 5.2906 |
| **Modified:** Comments created on shared documents will now belong to the following groups: if created via the UI the current group is the defaultif emailed to a document the document's default groupif emailed as a reply the original comment's groups | 464325 | 19 Mar 2013 | 5.2906 |
| **Disallowed:** `<table>` or `<headingx>` in `<paraLabel>` inside `<table>` for PS standard XML | 464308 | 18 Mar 2013 | 5.2906 |
| **Fixed:** problem requiring double encoding of special characters in service URLs Projects previously double encoding values will need to be updated. For example the fragment xyz//Discussion in the following service URL should now only be single encoded as `/members/{member}/uris/{uri}/fragments/xyz%2F%2FDiscussion/comments` | 462947 | 18 Mar 2013 | 5.2906 |
| **Removed:** some Admin menu options when not using the licensed host URL | 464252 | 15 Mar 2013 | 5.2906 |
| **Fixed:** `no--reply@[emailDomain]` address incorrect if `template.properties emailDomain=pshosts` | 462070 | 15 Mar 2013 | 5.2906 |
| **Limited:** the number of members or comments that can be listed on a single page to 1000 in most cases and added support for the following global property: `maxPageSize:` The absolute maximum number of results returned per page - default `10000`. | 464207 | 13 Mar 2013 | 5.2903 |
| **Fixed:** problem when autosuggest config for psxreflist has multiple '`with`' values specified | 462814 | 12 Mar 2013 | 5.2903 |
| **Disallowed:** 'project' as the name of a project due to potential URL clash | 463112 | 11 Mar 2013 | 5.2903 |
| **Fixed:** `@version` attribute on export Ant task not working | 462711 | 11 Mar 2013 | 5.2903 |
| **Fixed:** searching for multiple terms showing duplicate content in the search results page table view | 450517 | 04 Mar 2013 | 5.2903 |
| **Modified:** On the New Document page increased the length limit on the title to 250 characters and automatically trim white space from start and end | 462708 | 04 Mar 2013 | 5.2903 |
| **Fixed:** "showing only first x" appearing incorrectly in the confirmation summary on the Document Upload page | 453916 | 04 Mar 2013 | 5.2903 |
| **Fixed:** edits/XRefs not being included when using the export Ant task to get documents from multiple groups | 462102 | 27 Feb 2013 | 5.2903 |
| **Removed:** "Assign new comments to:" option on Document Properties page | 453426 | 27 Feb 2013 | 5.2903 |
| **Removed:** the following member services because `{member}` username could clash with other services: `/members/{member}``/groups/{group}/members/{member}` Instead use: `/members/{member}/details``/groups/{group}/members/{member}/details` | 458426 | 18 Feb 2013 | 5.2903 |
| **Fixed:** edits on transcluded content from another group not appearing | 456058 | 06 Feb 2013 | 5.2903 |
| **Fixed:** member group details config not being loaded from server custom folder | 456055 | 06 Feb 2013 | 5.2903 |
| **Fixed:** description not being indexed on PS XML documents (29 Jan 13, ID: 455241, v5.2903) | 455241 | 29 Jan 2013 | 5.2903 |

