Author: earle
Date: 2005-10-23 20:24:03 +0100 (Sun, 23 Oct 2005)
New Revision: 702
Modified:
trunk/Changes
Log:
make much more readable
Modified: trunk/Changes
===================================================================
--- trunk/Changes 2005-10-23 19:09:38 UTC (rev 701)
+++ trunk/Changes 2005-10-23 19:24:03 UTC (rev 702)
@@ -1,25 +1,40 @@
0.51
- When trying to view a non-existent node, you will now be presented
- with a message asking if you want to create that node, rather than
- a blank page.
- New "summary" metadata field for one-line summaries of nodes.
- Add summary field to RDF as dc:description.
- Show node summary in search results.
- New "format=raw" option for outputting wiki text of a node.
- Add "address" field that was missing from the RDF node view.
- Update URL for Dublin Core elements in RDF index view.
- Locales, address and summary fields now XML-escaped properly.
- Requirement on CGI::Wiki::Plugin::RSS::ModWiki bumped to 0.073 for
- associated fix escaping node names in RSS feed.
- Fix bug that was breaking coordinate entry fields on search page if lat/lon
- was being used.
- Replace underscores in node names in redirection message with spaces.
- Redirection message now links to a rendered version of the old page
- rather than the editing view.
- Fix bug in OpenGuides::SuperSearch that wasn't passing "latitude" and
- "longitude" values to the search template when a distance search
- was being done.
+ Important changes:
+ * The preferred way to get RecentChanges is now to pass the CGI the
+ parameter "action=rc", rather than just using the page name
+ "RecentChanges". However, this method will still work for the time
+ being. Similarly, the URL parameter for the RecentChanges RSS feed
+ has changed from "action=rss" to "action=rc;format=rss". Requests
+ for the former will be redirected to the latter.
+
+ New features:
+ * When trying to view a non-existent node, you will now be presented
+ with a message asking if you want to create that node, rather than
+ a blank page.
+ * New "summary" metadata field for one-line summaries of nodes:
+ - Add summary field to RDF as dc:description.
+ - Show node summary in search results.
+ * New "format=raw" option for outputting wiki text of a node.
+ RDF bugfixes:
+ * Locales, address and summary fields now XML-escaped properly.
+ (Requirement on CGI::Wiki::Plugin::RSS::ModWiki bumped to 0.073 for
+ associated fix escaping node names in RSS feed.)
+ * Add "address" field that was missing from the RDF node view.
+ * Update URL for Dublin Core elements in RDF index view.
+
+ Search bugfixes:
+ * Fix bug that was breaking coordinate entry fields on search page if
+ lat/lon was being used.
+ * Fix bug in OpenGuides::SuperSearch that wasn't passing "latitude" and
+ "longitude" values to the search template when a distance search
+ was being done.
+
+ Minor improvements:
+ * Replace underscores in node names in "redirected from" message with spaces.
+ * "Redirected from" message now links to a rendered version of the old page
+ rather than the editing view.
+
0.50 2 October 2005
Remove rogue ampersand that had crept into the RSS feed.
@@ -29,18 +44,18 @@
0.48 24 July 2005
RDF enhancements:
- Removed redundant "id" parameter specification from dc:source in
+ * Removed redundant "id" parameter specification from dc:source in
rdf:Description in RDF node listings.
- Fixed bug that was causing all nodes to be flagged as a
+ * Fixed bug that was causing all nodes to be flagged as a
geo:SpatialThing whether they were or not.
- Ensured that ampersands and greater/less than symbols were properly
+ * Ensured that ampersands and greater/less than symbols were properly
escaped so as not to be XML-toxic.
- Added geo:lat, geo:long and RSS link attributes to items in
+ * Added geo:lat, geo:long and RSS link attributes to items in
category/locale listings to facilitate integration with mapping
applications.
- Added owl:sameAs property to RDF output for nodes that are redirects
+ * Added owl:sameAs property to RDF output for nodes that are redirects
to other nodes.
- RSS feed now has correct timestamp (matching most recent item) and
+ * RSS feed now has correct timestamp (matching most recent item) and
matching Last-Modified HTTP header.
Reorder navigation bar to provide more logical groupings.
Add "format=plain" option for all-nodes index listing and associated
Author: earle
Date: 2005-10-23 18:14:20 +0100 (Sun, 23 Oct 2005)
New Revision: 699
Modified:
trunk/Changes
trunk/templates/node.tt
Log:
new "make this node?" message
Modified: trunk/Changes
===================================================================
--- trunk/Changes 2005-10-23 16:36:13 UTC (rev 698)
+++ trunk/Changes 2005-10-23 17:14:20 UTC (rev 699)
@@ -1,9 +1,12 @@
0.51
- New "format=raw" option for outputting wiki text of a node.
+ When trying to view a non-existent node, you will now be presented
+ with a message asking if you want to create that node, rather than
+ a blank page.
New "summary" metadata field for one-line summaries of nodes.
Add summary field to RDF as dc:description.
Show node summary in search results.
- Add "address" field that had got missed out from the RDF.
+ New "format=raw" option for outputting wiki text of a node.
+ Add "address" field that was missing from the RDF node view.
Update URL for Dublin Core elements in RDF index view.
Locales, address and summary fields now XML-escaped properly.
Requirement on CGI::Wiki::Plugin::RSS::ModWiki bumped to 0.073 for
Modified: trunk/templates/node.tt
===================================================================
--- trunk/templates/node.tt 2005-10-23 16:36:13 UTC (rev 698)
+++ trunk/templates/node.tt 2005-10-23 17:14:20 UTC (rev 699)
@@ -22,6 +22,9 @@
<span class="node_name">[% node_name %]</span></em>
</h2>
[% END %]
+[% IF not (content || coord_field_1_value || coord_field_2_value || latitude || longitude) %]
+We don't have a node called "[% node_param %]". Would you like to <a href="[% full_cgi_url %]?action=edit;id=[% node_param %]">make
+[% ELSE %]
[% INCLUDE display_metadata.tt %]
<!-- NODE CONTENT STARTS -->
@@ -94,6 +97,6 @@
versions.</a>
[% END %]
</div>
-
+[% END %]
</div>
[% INCLUDE footer.tt %]
Author: earle
Date: 2005-10-23 15:13:35 +0100 (Sun, 23 Oct 2005)
New Revision: 696
Modified:
trunk/Changes
Log:
mention RDF escaping fix
Modified: trunk/Changes
===================================================================
--- trunk/Changes 2005-10-23 14:11:34 UTC (rev 695)
+++ trunk/Changes 2005-10-23 14:13:35 UTC (rev 696)
@@ -5,6 +5,7 @@
Show node summary in search results.
Add "address" field that had got missed out from the RDF.
Update URL for Dublin Core elements in RDF index view.
+ Address and summary fields now XML-escaped properly.
Fix bug that was breaking coordinate entry fields on search page if lat/lon
was being used.
Replace underscores in node names in redirection message with spaces.
Author: earle
Date: 2005-10-13 19:56:53 +0100 (Thu, 13 Oct 2005)
New Revision: 693
Modified:
trunk/Changes
trunk/templates/rdf_index.tt
Log:
update dc: url
Modified: trunk/Changes
===================================================================
--- trunk/Changes 2005-10-12 03:15:22 UTC (rev 692)
+++ trunk/Changes 2005-10-13 18:56:53 UTC (rev 693)
@@ -4,6 +4,7 @@
Add summary field to RDF as dc:description.
Show node summary in search results.
Add "address" field that had got missed out from the RDF.
+ Update URL for Dublin Core elements in RDF index view.
Fix bug that was breaking coordinate entry fields on search page if lat/lon
was being used.
Replace underscores in node names in redirection message with spaces.
Modified: trunk/templates/rdf_index.tt
===================================================================
--- trunk/templates/rdf_index.tt 2005-10-12 03:15:22 UTC (rev 692)
+++ trunk/templates/rdf_index.tt 2005-10-13 18:56:53 UTC (rev 693)
@@ -3,7 +3,7 @@
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
- xmlns:dc="http://purl.org/dc/1.0/"
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns="http://purl.org/rss/1.0/"