From guido at codespeak.net Wed Feb 1 12:36:55 2006 From: guido at codespeak.net (guido@codespeak.net) Date: Wed Feb 1 12:36:59 2006 Subject: [kupu-checkins] r22919 - kupu/tag/kupu-1.3.5b1 Message-ID: <20060201113655.EC6F110094@code0.codespeak.net> Author: guido Date: Wed Feb 1 12:36:51 2006 New Revision: 22919 Added: kupu/tag/kupu-1.3.5b1/ - copied from r22918, kupu/branch/kupu-1.3/ Modified: kupu/tag/kupu-1.3.5b1/version.txt Log: Tag for the 1.3.5 release, as requested by Infrae. Modified: kupu/tag/kupu-1.3.5b1/version.txt ============================================================================== --- kupu/branch/kupu-1.3/version.txt (original) +++ kupu/tag/kupu-1.3.5b1/version.txt Wed Feb 1 12:36:51 2006 @@ -1 +1 @@ -kupu 1.3.5 pre +kupu 1.3.5b1 From duncan at codespeak.net Wed Feb 1 14:43:35 2006 From: duncan at codespeak.net (duncan@codespeak.net) Date: Wed Feb 1 14:43:38 2006 Subject: [kupu-checkins] r22921 - in kupu/trunk/kupu/plone: kupu_plone_layer kupu_references Message-ID: <20060201134335.D8D5A10086@code0.codespeak.net> Author: duncan Date: Wed Feb 1 14:43:31 2006 New Revision: 22921 Modified: kupu/trunk/kupu/plone/kupu_plone_layer/kupuplone.css.dtml kupu/trunk/kupu/plone/kupu_references/referencebrowser.js kupu/trunk/kupu/plone/kupu_references/referencebrowser.pt Log: Tidied up display of reference browser. Made the linked elements into links so you can navigate to them. Modified: kupu/trunk/kupu/plone/kupu_plone_layer/kupuplone.css.dtml ============================================================================== --- kupu/trunk/kupu/plone/kupu_plone_layer/kupuplone.css.dtml (original) +++ kupu/trunk/kupu/plone/kupu_plone_layer/kupuplone.css.dtml Wed Feb 1 14:43:31 2006 @@ -245,6 +245,24 @@ border: &dtml-borderWidth; solid &dtml-globalBorderColor;; } +.kupu-reference .kupu-preview-row { + float: left; +} + +.kupu-reference a .kupu-description-row { + display: none; +} + +.kupu-reference a { position: relative; } + +.kupu-reference a:hover .kupu-description-row { + display: block; + position: absolute; top: 20px; left: 128px; width: 200px; + padding: 5px; margin: 10px; z-index: 100; + color: black; background: #ffffa0; + font: 10px Verdana, sans-serif; +} + .odd .kupu-preview-row { background-color: &dtml-oddRowBackgroundColor;; } Modified: kupu/trunk/kupu/plone/kupu_references/referencebrowser.js ============================================================================== --- kupu/trunk/kupu/plone/kupu_references/referencebrowser.js (original) +++ kupu/trunk/kupu/plone/kupu_references/referencebrowser.js Wed Feb 1 14:43:31 2006 @@ -63,7 +63,10 @@ var imp = window.document.importNode(result, true); div = document.createElement("div"); div.className = i%2?'odd':'even'; - Sarissa.copyChildNodes(imp, div, true); + var link = document.createElement('a'); + link.href = node.selectSingleNode('uri/text()').nodeValue.strip()+'/view'; + Sarissa.copyChildNodes(imp, link, true); + div.appendChild(link); preview.appendChild(div); } this.field.value = this.currentSelection.join('\n'); Modified: kupu/trunk/kupu/plone/kupu_references/referencebrowser.pt ============================================================================== --- kupu/trunk/kupu/plone/kupu_references/referencebrowser.pt (original) +++ kupu/trunk/kupu/plone/kupu_references/referencebrowser.pt Wed Feb 1 14:43:31 2006 @@ -127,13 +127,15 @@
- +

Item heading

+
+
 
+
From guido at codespeak.net Thu Feb 2 14:50:00 2006 From: guido at codespeak.net (guido@codespeak.net) Date: Thu Feb 2 14:50:03 2006 Subject: [kupu-checkins] r22957 - kupu/tag/kupu-1.3.5 Message-ID: <20060202135000.0A74F100C0@code0.codespeak.net> Author: guido Date: Thu Feb 2 14:49:58 2006 New Revision: 22957 Added: kupu/tag/kupu-1.3.5/ - copied from r22956, kupu/tag/kupu-1.3.5b1/ Log: Set tag for 1.3.5 release. From guido at codespeak.net Thu Feb 2 14:52:46 2006 From: guido at codespeak.net (guido@codespeak.net) Date: Thu Feb 2 14:52:48 2006 Subject: [kupu-checkins] r22958 - in kupu/tag/kupu-1.3.5: . default plone Message-ID: <20060202135246.8F8FF100C0@code0.codespeak.net> Author: guido Date: Thu Feb 2 14:52:44 2006 New Revision: 22958 Modified: kupu/tag/kupu-1.3.5/default/toolbar.kupu kupu/tag/kupu-1.3.5/plone/toolbar.kupu kupu/tag/kupu-1.3.5/version.txt Log: Upped version numbers. Modified: kupu/tag/kupu-1.3.5/default/toolbar.kupu ============================================================================== --- kupu/tag/kupu-1.3.5/default/toolbar.kupu (original) +++ kupu/tag/kupu-1.3.5/default/toolbar.kupu Thu Feb 2 14:52:44 2006 @@ -52,7 +52,7 @@ Modified: kupu/tag/kupu-1.3.5/plone/toolbar.kupu ============================================================================== --- kupu/tag/kupu-1.3.5/plone/toolbar.kupu (original) +++ kupu/tag/kupu-1.3.5/plone/toolbar.kupu Thu Feb 2 14:52:44 2006 @@ -10,7 +10,7 @@ Modified: kupu/tag/kupu-1.3.5/version.txt ============================================================================== --- kupu/tag/kupu-1.3.5/version.txt (original) +++ kupu/tag/kupu-1.3.5/version.txt Thu Feb 2 14:52:44 2006 @@ -1 +1 @@ -kupu 1.3.5b1 +kupu 1.3.5 From duncan at codespeak.net Mon Feb 13 10:26:52 2006 From: duncan at codespeak.net (duncan@codespeak.net) Date: Mon Feb 13 10:26:54 2006 Subject: [kupu-checkins] r23272 - kupu/tag/ngo-stable/build1.3 Message-ID: <20060213092652.A361D100A5@code0.codespeak.net> Author: duncan Date: Mon Feb 13 10:26:51 2006 New Revision: 23272 Removed: kupu/tag/ngo-stable/build1.3/ Log: Replacing tag 'ngo-stable/build1.3' From duncan at codespeak.net Mon Feb 13 10:26:55 2006 From: duncan at codespeak.net (duncan@codespeak.net) Date: Mon Feb 13 10:26:57 2006 Subject: [kupu-checkins] r23273 - kupu/tag/ngo-stable/build1.3 Message-ID: <20060213092655.A8DCA100A7@code0.codespeak.net> Author: duncan Date: Mon Feb 13 10:26:52 2006 New Revision: 23273 Added: kupu/tag/ngo-stable/build1.3/ - copied from r23272, kupu/trunk/kupu/ Log: Create tag 'ngo-stable/build1.3' From duncan at codespeak.net Mon Feb 13 11:41:19 2006 From: duncan at codespeak.net (duncan@codespeak.net) Date: Mon Feb 13 11:41:21 2006 Subject: [kupu-checkins] r23274 - kupu/trunk/kupu/plone Message-ID: <20060213104119.D5424100A5@code0.codespeak.net> Author: duncan Date: Mon Feb 13 11:41:17 2006 New Revision: 23274 Modified: kupu/trunk/kupu/plone/plonelibrarytool.py Log: Avoid the deprecation warning because of non-ascii character in a comment. Modified: kupu/trunk/kupu/plone/plonelibrarytool.py ============================================================================== --- kupu/trunk/kupu/plone/plonelibrarytool.py (original) +++ kupu/trunk/kupu/plone/plonelibrarytool.py Mon Feb 13 11:41:17 2006 @@ -1,3 +1,4 @@ +# -*- coding: latin-1 -*- ############################################################################## # # Copyright (c) 2003-2005 Kupu Contributors. All rights reserved. From mihxil at codespeak.net Mon Feb 13 17:04:10 2006 From: mihxil at codespeak.net (mihxil@codespeak.net) Date: Mon Feb 13 17:04:13 2006 Subject: [kupu-checkins] r23286 - kupu/trunk/kupu/common Message-ID: <20060213160410.062F010098@code0.codespeak.net> Author: mihxil Date: Mon Feb 13 17:04:08 2006 New Revision: 23286 Modified: kupu/trunk/kupu/common/kupueditor.js Log: it seems that FF does not accept integer in this command any more, but wants an actual boolean. At least, that makes it work again.. Modified: kupu/trunk/kupu/common/kupueditor.js ============================================================================== --- kupu/trunk/kupu/common/kupueditor.js (original) +++ kupu/trunk/kupu/common/kupueditor.js Mon Feb 13 17:04:08 2006 @@ -344,7 +344,7 @@ this.content_changed = true; // Done here otherwise it doesn't always work or gets lost // after some commands - this.getDocument().execCommand('styleWithCSS', this.config.use_css); + this.getDocument().execCommand('styleWithCSS', this.config.use_css == 1); }; }; this.getDocument().execCommand(command, param); From mihxil at codespeak.net Mon Feb 13 17:05:49 2006 From: mihxil at codespeak.net (mihxil@codespeak.net) Date: Mon Feb 13 17:05:49 2006 Subject: [kupu-checkins] r23287 - kupu/trunk/kupu/common/kupudrawers Message-ID: <20060213160549.1BAB810098@code0.codespeak.net> Author: mihxil Date: Mon Feb 13 17:05:42 2006 New Revision: 23287 Modified: kupu/trunk/kupu/common/kupudrawers/drawer.xsl Log: made it easier to add some CSS in your extension, withouth having to respecify a complete template Modified: kupu/trunk/kupu/common/kupudrawers/drawer.xsl ============================================================================== --- kupu/trunk/kupu/common/kupudrawers/drawer.xsl (original) +++ kupu/trunk/kupu/common/kupudrawers/drawer.xsl Mon Feb 13 17:05:42 2006 @@ -72,8 +72,9 @@ - kupudrawerstyles.css + kupudrawerstyles.css + Modified: kupu/trunk/kupu/plone/kupu_plone_layer/kupuselection.xml.pt ============================================================================== --- kupu/trunk/kupu/plone/kupu_plone_layer/kupuselection.xml.pt (original) +++ kupu/trunk/kupu/plone/kupu_plone_layer/kupuselection.xml.pt Thu Feb 16 10:20:03 2006 @@ -16,7 +16,7 @@ icon Selected Current selection. - Source + Source Author: limi Date: Thu Feb 16 11:38:26 2006 New Revision: 23396 Modified: kupu/branch/plone-2.1/refresh.txt Log: Checking if I am commit-capable ;) Modified: kupu/branch/plone-2.1/refresh.txt ============================================================================== --- kupu/branch/plone-2.1/refresh.txt (original) +++ kupu/branch/plone-2.1/refresh.txt Thu Feb 16 11:38:26 2006 @@ -1 +1 @@ -this file allows the product to be reloaded in Zope2 \ No newline at end of file +This file allows the product to be reloaded in Zope2 \ No newline at end of file From limi at codespeak.net Thu Feb 16 14:47:50 2006 From: limi at codespeak.net (limi@codespeak.net) Date: Thu Feb 16 14:47:51 2006 Subject: [kupu-checkins] r23401 - in kupu/branch/plone-2.1/plone: . kupu_plone_layer kupu_plone_layer/plonekupuimages Message-ID: <20060216134750.9EAA7100C2@code0.codespeak.net> Author: limi Date: Thu Feb 16 14:47:33 2006 New Revision: 23401 Added: kupu/branch/plone-2.1/plone/kupu_plone_layer/plonekupuimages/image.gif (contents, props changed) Modified: kupu/branch/plone-2.1/plone/kupu_plone_layer/kupu_wysiwyg_support.html kupu/branch/plone-2.1/plone/kupu_plone_layer/kupuplone.css.dtml kupu/branch/plone-2.1/plone/kupu_plone_layer/plonekupuimages/anchor.gif kupu/branch/plone-2.1/plone/kupu_plone_layer/plonekupuimages/bgcolor.gif kupu/branch/plone-2.1/plone/kupu_plone_layer/plonekupuimages/bold.gif kupu/branch/plone-2.1/plone/kupu_plone_layer/plonekupuimages/center.gif kupu/branch/plone-2.1/plone/kupu_plone_layer/plonekupuimages/definitionlist.gif kupu/branch/plone-2.1/plone/kupu_plone_layer/plonekupuimages/hr.gif kupu/branch/plone-2.1/plone/kupu_plone_layer/plonekupuimages/hyperlink.gif kupu/branch/plone-2.1/plone/kupu_plone_layer/plonekupuimages/indent.gif kupu/branch/plone-2.1/plone/kupu_plone_layer/plonekupuimages/italic.gif kupu/branch/plone-2.1/plone/kupu_plone_layer/plonekupuimages/left_just.gif kupu/branch/plone-2.1/plone/kupu_plone_layer/plonekupuimages/list.gif kupu/branch/plone-2.1/plone/kupu_plone_layer/plonekupuimages/numbered_list.gif kupu/branch/plone-2.1/plone/kupu_plone_layer/plonekupuimages/outdent.gif kupu/branch/plone-2.1/plone/kupu_plone_layer/plonekupuimages/redo.gif kupu/branch/plone-2.1/plone/kupu_plone_layer/plonekupuimages/right_just.gif kupu/branch/plone-2.1/plone/kupu_plone_layer/plonekupuimages/strikethrough.gif kupu/branch/plone-2.1/plone/kupu_plone_layer/plonekupuimages/subscript.gif kupu/branch/plone-2.1/plone/kupu_plone_layer/plonekupuimages/superscript.gif kupu/branch/plone-2.1/plone/kupu_plone_layer/plonekupuimages/table.gif kupu/branch/plone-2.1/plone/kupu_plone_layer/plonekupuimages/textcolor.gif kupu/branch/plone-2.1/plone/kupu_plone_layer/plonekupuimages/tools.gif kupu/branch/plone-2.1/plone/kupu_plone_layer/plonekupuimages/underline.gif kupu/branch/plone-2.1/plone/kupu_plone_layer/plonekupuimages/undo.gif kupu/branch/plone-2.1/plone/kupu_plone_layer/plonekupuimages/unformat.gif kupu/branch/plone-2.1/plone/kupu_plone_layer/plonekupuimages/view-source.gif kupu/branch/plone-2.1/plone/kupu_plone_layer/wysiwyg_support.pt kupu/branch/plone-2.1/plone/wire.kupu Log: Updating icons to better match the Plone style; improved tool ordering (growing elements like the text format selector should be at the end, since they displace all the other icons when they change if not), regenerated plonemacros. Modified: kupu/branch/plone-2.1/plone/kupu_plone_layer/kupu_wysiwyg_support.html ============================================================================== --- kupu/branch/plone-2.1/plone/kupu_plone_layer/kupu_wysiwyg_support.html (original) +++ kupu/branch/plone-2.1/plone/kupu_plone_layer/kupu_wysiwyg_support.html Thu Feb 16 14:47:33 2006 @@ -3,7 +3,7 @@ - + @@ -11,21 +11,21 @@ - - + + - + - + - + - - - + + +
@@ -120,23 +120,13 @@ - - @@ -195,6 +185,16 @@ + + - - + + From duncan at codespeak.net Mon Feb 20 10:54:02 2006 From: duncan at codespeak.net (duncan@codespeak.net) Date: Mon Feb 20 10:54:04 2006 Subject: [kupu-checkins] r23507 - kupu/branch/kupu-1.3/common/kupudrawers Message-ID: <20060220095402.6CA0B10072@code0.codespeak.net> Author: duncan Date: Mon Feb 20 10:54:01 2006 New Revision: 23507 Modified: kupu/branch/kupu-1.3/common/kupudrawers/drawer.xsl Log: Backport patch for image uploading from trunk: Firefox 1.5 disagrees with all other browsers over the meaning of the target attribute in form submission: it expects to find the target name in the iframe's id attribute where everything else uses the name attribute. The fix is to make the id and the name the same. Modified: kupu/branch/kupu-1.3/common/kupudrawers/drawer.xsl ============================================================================== --- kupu/branch/kupu-1.3/common/kupudrawers/drawer.xsl (original) +++ kupu/branch/kupu-1.3/common/kupudrawers/drawer.xsl Mon Feb 20 10:54:01 2006 @@ -298,7 +298,7 @@
-
From guido at codespeak.net Thu Feb 23 17:16:35 2006 From: guido at codespeak.net (guido@codespeak.net) Date: Thu Feb 23 17:16:37 2006 Subject: [kupu-checkins] r23620 - kupu/trunk/ecmaunit Message-ID: <20060223161635.66A231016B@code0.codespeak.net> Author: guido Date: Thu Feb 23 17:16:28 2006 New Revision: 23620 Modified: kupu/trunk/ecmaunit/ecmaunit.js Log: Fixed some missing 'this'. Modified: kupu/trunk/ecmaunit/ecmaunit.js ============================================================================== --- kupu/trunk/ecmaunit/ecmaunit.js (original) +++ kupu/trunk/ecmaunit/ecmaunit.js Thu Feb 23 17:16:28 2006 @@ -291,7 +291,8 @@ }; }; -StdoutReporter.prototype.reportError = function(testcase, attr, exception, raw) { +StdoutReporter.prototype.reportError = function(testcase, attr, + exception, raw) { /* report a test failure */ if (this.verbose) { print(testcase + '.' + attr + '(): FAILED!'); @@ -310,7 +311,7 @@ var exception = exceptions[i][2]; var raw = exceptions[i][3]; print(testcase + '.' + attr + ', exception: ' + exception); - if (verbose) { + if (this.verbose) { this._printStackTrace(raw); }; };