summaryrefslogtreecommitdiffstats
path: root/org/madore/damlengine/TodoWrefAttr.java
diff options
context:
space:
mode:
authorDavid A. Madore <david+git@madore.org>2014-10-12 17:59:13 +0200
committerDavid A. Madore <david+git@madore.org>2014-10-12 17:59:54 +0200
commit4e7ceb1dde219d03e577c7c038e19f977c9abc29 (patch)
treea45dfa00055bff48662fef644e4d955f873fc121 /org/madore/damlengine/TodoWrefAttr.java
parentfc921ecbda441f37ff33a1e4b76581434fc3c954 (diff)
downloaddamlengine-4e7ceb1dde219d03e577c7c038e19f977c9abc29.tar.gz
damlengine-4e7ceb1dde219d03e577c7c038e19f977c9abc29.tar.bz2
damlengine-4e7ceb1dde219d03e577c7c038e19f977c9abc29.zip
Separate the "has_cut" property from "do_single_page".
Note: the following SQL should be used to upgrade the database: ALTER TABLE entries ADD COLUMN has_cut boolean NOT NULL DEFAULT FALSE ; UPDATE entries SET has_cut = (array_length(xpath('.//d:cut-here', content, ARRAY[ARRAY['d', 'http://www.madore.org/~david/NS/daml/']]), 1) NOTNULL) ; -- Check that the following returns nothing: SELECT edate , id FROM entries WHERE has_cut != ( do_single_page NOTNULL ) ;
Diffstat (limited to 'org/madore/damlengine/TodoWrefAttr.java')
-rw-r--r--org/madore/damlengine/TodoWrefAttr.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org/madore/damlengine/TodoWrefAttr.java b/org/madore/damlengine/TodoWrefAttr.java
index 650297c..a2b67ac 100644
--- a/org/madore/damlengine/TodoWrefAttr.java
+++ b/org/madore/damlengine/TodoWrefAttr.java
@@ -70,8 +70,8 @@ public class TodoWrefAttr extends TodoAttr {
wrefNumberStr, wrefSupplementStr);
// Decide whether link target is on this page
final boolean onThisPage;
- if ( lk.singlePage != null && ! lk.supplementStr.equals("") ) {
- // Linking to a _fragment_ of an entry that has a single page.
+ if ( esum != null && esum.hasCut && ! lk.supplementStr.equals("") ) {
+ // Linking to a _fragment_ of an entry that has a cut-here element.
if ( ctx.wsc != null && ctx.wsc.sel != null
&& ctx.wsc instanceof Context.WeblogSingleSelectionContext
&& ((Context.WeblogSingleSelectionContext)ctx.wsc).number == wrefNumber )