Re: Table.jar under JSPWiki v2.9.1

2013-12-15 Thread Dirk Frederickx
Hi Ed, As JSPWiki 2.9.x is moving to Apache, all contributed plugins are currently broken. The java path com.ecyrd.jspwiki.plugin is not valid anymore, and should be replaced by org.apache.wiki.plugin instead. Also other api's may have been moved and need plugin updates. Currently, we still need

Re: Table.jar under JSPWiki v2.9.1

2013-12-16 Thread Dirk Frederickx
k forward to it becoming fully integrated > with ASF. > > Best regards and Happy Holidays, > > Ed Jaffe > > > On 12/15/2013 5:47 AM, Dirk Frederickx wrote: > > Hi Ed, > > As JSPWiki 2.9.x is moving to Apache, all contributed plugins are > currently broken

Re: Mootools vs. jQuery

2014-01-06 Thread Dirk Frederickx
Hi, As Janne pointed out, mootools was chosen as it was the more performant, light-weight and feature-rich js framework at the time we started with javascript on JSPWiki. Today, mootools and jquery are feature-wise comparable, but jquery definitely has won the popularity contest. I still prefe

Re: new JSPWiki wiki available, https://jspwiki-wiki.apache.org

2014-01-06 Thread Dirk Frederickx
Ichiro, I noticed some colouring issues: - the pagename is white, on a white background - also the page-footer text is white, on a white background - idem for the recent-search results (in the quick-navigation drop down) BTW, the google fonts are loaded from http://, while the apache wiki site i

Re: Mootools vs. jQuery

2014-01-06 Thread Dirk Frederickx
braries such as D3.js > (something Neocortext is doing). > > I can understand your advocacy and investment in Mootools, but hope > you might consider the benefits to the JSPWiki project of moving > towards jQuery -- it would bring a lot more people to a place where > the

Re: new JSPWiki wiki available, https://jspwiki-wiki.apache.org

2014-01-06 Thread Dirk Frederickx
:// ; which gives a security warning in google > chrome. > > You may want to also load the fonts from https:// > > I've in my local copy made that change, and if that doesn't cause any > issues that may be a preferred solution. We can also load the fonts from > the A

Re: new JSPWiki wiki available, https://jspwiki-wiki.apache.org

2014-01-09 Thread Dirk Frederickx
hat is? Possibly do an 'Inspect Element > (Q)' > on it with FireBug to provide the selector? > > Cheers, > > Ichiro > > > > On Tue, Jan 7, 2014 at 10:54 AM, Dirk Frederickx > wrote: > > > Ichiro, > > > > Aha - Firefox; that loo

Re: new JSPWiki wiki available, https://jspwiki-wiki.apache.org

2014-01-09 Thread Dirk Frederickx
c selector to that list: > > #searchOutput ui li a { ... } > > and will publish that upon the next update. > > Ichiro > > > > On Fri, Jan 10, 2014 at 8:23 AM, Dirk Frederickx > wrote: > > > Ichiro, > > > > > > > > > > >

Re: Mootools vs. jQuery

2014-01-09 Thread Dirk Frederickx
regard. Also, > > using jQuery opens up possibilities for using other libraries such as > D3.js > > (something Neocortext is doing). > > > > I can understand your advocacy and investment in Mootools, but hope > > you might consider the benefits to the JSPWiki proje

Re: new JSPWiki wiki available, https://jspwiki-wiki.apache.org

2014-01-12 Thread Dirk Frederickx
plate, > > > all > > > > coloring issues have been fixed. > > > > I just put it on https://jspwiki-wiki.apache.org . > > > > > > > > If there are no more issues, what about adding this template to the > > core > > >

Re: [VOTE] Release JSPWiki version 2.10.0

2014-01-16 Thread Dirk Frederickx
Also +1 dirk On Thu, Jan 16, 2014 at 8:10 PM, Juan Pablo Santos Rodríguez < juanpablo.san...@gmail.com> wrote: > +1 too > > > br, > juan pablo > > > On Thu, Jan 16, 2014 at 4:42 AM, Glen Mazza wrote: > > > +1 > > > > Glen > > > > > > On 01/15/2014 03:48 PM, Harry Metske wrote: > > > >> +1 > >>

Re: JSON-RPC support

2014-01-30 Thread Dirk Frederickx
Hi Ichiro, Here are a few quick pointers, hope it can help your investigation. The jsonrpc invocation javascript is located in jspwiki-common.js, around line 400+ {{{ $jsonid : 1, jsonrpc: function(method, params, fn) { new Ajax( Wiki.JsonUrl, { postBody: Json.toString({"id":Wiki.$jsonid++,

Re: JSON-RPC support

2014-02-01 Thread Dirk Frederickx
t; > This suggests that perhaps the person who wrote the JSONRPCManager > might have envisaged its use with a jQuery-based environment rather than > mootools. In any case, the global features of JSONRPCManager work > (obviously) but the local ones are unsupported in the JavaScript. >

Re: JAbsorb to replace com.metaparadigm.jsonrpc?

2014-02-06 Thread Dirk Frederickx
Hi Ichiro, I was not aware about the change of the jsonrpc java implementation. It seems that the upgrade would be the right thing to do , not clear what the improvements really are -- I suggest to log an improvement ticket in JIRA. >From the error message, it seems the the jsonrpc server cannot

Re: JSON-RPC support

2014-02-12 Thread Dirk Frederickx
Hi Ichiro, At the server side (java part) you should have something like this: ... JSONRPCManager.registerGlobalObject( "blah", new MyJSONBlahSample() ); public class MyJSONBlahSample implements RPCCallable { // JSONRPC command => "blah.respond", [qv,5] public int getRespon

Re: JSON-RPC support

2014-02-13 Thread Dirk Frederickx
Ichiro, The json error indicates that the command "blah.response" is not found. Maybe the JSON registerGlobalObject was not called? Can you put a log just before/after the registerGlobalObject() to check whether it gets invoked ? dirk On Thu, Feb 13, 2014 at 9:41 AM, Ichiro Furusato wrote: >

Re: JSON-RPC support

2014-02-13 Thread Dirk Frederickx
Ichiro, I took some more time to read back through your message trace, and probably I was on the wrong foot. I understand you are trying to use JSON inside a JSPWiki-plugin (based on ' RPCSamplePlugin') Looking more in detail to the RPCSamplePlugin and the JSONRPCManager, I was puzzled about

HADDOCK template

2014-02-14 Thread Dirk Frederickx
All, I've just committed a new Apache JSPWiki Template/UI, "haddock". It is partly a back-port of various v3.0 template changes, resolving a number of long-outstanding JIRA's. But most visible, it provides a complete new look&feel, build on top of the popular BOOTSTRAP css framework. To activate

Re: JSON-RPC support

2014-02-15 Thread Dirk Frederickx
Ichiro, The issue is *not* client-side related ; actually the moo tools rpc-calls are working perfectly; and returning the proper json rpc error codes. So mootools or jquery would not make any difference here. The problem is the registration of the JSONRPC-Callable classes on the server. Perhaps

Re: JSON-RPC support

2014-02-15 Thread Dirk Frederickx
Ichiro, e.a., More digging in json-rpc ... I did some further investigation, trying to rewrite emitJSONCall to something workable. Apparently there are 2 types of rpc's, those that are registered via registerGlobalObject(..) and those that are registered via registerJSONObject(..) registerGlob

Re: HADDOCK template

2014-02-17 Thread Dirk Frederickx
tent: > * it doesn't take the full width of the screen > * the top and bottom blue area's are too large (high) > * the left menu too wide (but it can be clicked away). > > > Thanks for all your efforts. > kind regards, > Harry > > > > > On 14 February 20

Re: HADDOCK template

2014-02-20 Thread Dirk Frederickx
on console. Same happens with > "More Menu" and "Sidebar" links on the upper-right corner, and I'm also > unable to upload files > > will there be skin (as in default template) support? Related to this > question, don't know how, but I stumbl

Re: HADDOCK template

2014-02-20 Thread Dirk Frederickx
hidden. > The javascript console says : > > SyntaxError: invalid range in character class at haddock.js:1 > > regards, > Harry > > > > On 20 February 2014 17:30, Dirk Frederickx >wrote: > > > Juan, > > > > I can't reproduce the issues on FF w.

Re: [jira] [Commented] (JSPWIKI-432) Simplify Tabbed Section markup

2014-03-03 Thread Dirk Frederickx
Hi Harry, May-be not yet, as I'm still not yet 100% done with all commits. Please post via the dev list for now. If something cannot immediately be picked up, we can still log a JIRA. dirk On Mon, Mar 3, 2014 at 6:59 PM, Harry Metske wrote: > Dirk, > > good to see progress on the haddock

maven question

2014-03-03 Thread Dirk Frederickx
I notice that running this command: mvn clean install -Dmaven.test.skip -Dminimize=false still minimises all js and css. Could anyone help to check why the variable minimize=false is not handled ? dirk

Re: maven question

2014-03-03 Thread Dirk Frederickx
gt; tl;dr: should work now with latest trunk > > > br, > juan pablo > > > > On Mon, Mar 3, 2014 at 7:06 PM, Dirk Frederickx > wrote: > > > I notice that running this command: > > > > mvn clean install -Dmaven.test.skip -Dminimize=false > > > &

Re: svn commit: r1573667 - in /jspwiki/trunk: jspwiki-war/pom.xml pom.xml

2014-03-03 Thread Dirk Frederickx
Juan, Quick check : The haddock.css is now generated in the templates/default directory. This should be the templates/haddock directory. Note how these lines were different in the original jspwiki-war/pom.xml. ${project.build.directory}/generated-sources/wro/ templates/default/ ${project.buil

Re: svn commit: r1573667 - in /jspwiki/trunk: jspwiki-war/pom.xml pom.xml

2014-03-03 Thread Dirk Frederickx
Perfect now. tx! dirk On Mon, Mar 3, 2014 at 8:08 PM, Juan Pablo Santos Rodríguez < juanpablo.san...@gmail.com> wrote: > do'h, didn't noticed; they should have their value correctly set by now > > > thx for looking into it, > juan pablo > > > On Mon,

Re: [jira] [Commented] (JSPWIKI-830) Prettify breaks when using %%category %% on the same page

2014-03-18 Thread Dirk Frederickx
Hi Frank, Plse check out https://jspwiki-wiki.apache.org/Wiki.jsp?page=Testing%20JSPWIKI-830 Seems to work allright ... - the jspwiki version is normally also shown in the footer of your wiki-page - which browser are you using ? dirk On Tue, Mar 18, 2014 at 10:52 AM, Frank Ralf (JIRA) wrote:

Re: Mobile experience

2014-03-27 Thread Dirk Frederickx
Jürgen, AFAIK, there is no mobile stylesheet made for jspwiki. Currently a new HADDOCK template is being developed, for which the stylesheet is based on Twitter's BOOTSTRAP framework. This css framework is build for developing responsive, mobile first projects on the web, thus providing the HADD

Re: [VOTE] Release JSPWiki version 2.10.1

2014-05-26 Thread Dirk Frederickx
Also +1 for me, dirk On Mon, May 26, 2014 at 6:58 PM, Harry Metske wrote: > +1 > > > On 25 May 2014 19:38, Juan Pablo Santos Rodríguez < > juanpablo.san...@gmail.com> wrote: > > > This is a release vote for Apache JSPWiki, version 2.10.1. The vote will > be > > open for at least 72 hours from n

Re: [jira] [Created] (JSPWIKI-872) JSPWiki Plugin with Web Resources (JS, CSS, HTML)

2014-11-10 Thread Dirk Frederickx
Aleksander, Check out the "TemplateManager.addResourceRequest" API which can be used to inject CSS or JAVASCRIPT resources into a JSPWiki page. Example: TemplateManager.addResourceRequest( context, TemplateManager.RESOURCE_SCRIPT, context.getURL( WikiContext.NONE, "/my-javascrip

Re: Fwd: svn commit: r1689770 - /jspwiki/board/2015-07.txt

2015-07-08 Thread Dirk Frederickx
+1 dirk On Wed, Jul 8, 2015 at 2:54 PM, David Vittor wrote: > Looks good to me. > On 8 Jul 2015 9:08 am, "Juan Pablo Santos Rodríguez" < > juanpablo.san...@gmail.com> wrote: > > > Hi, > > > > below is a draft report for July's Board meeting. It is intended to be > sent > > tomorrow night, so if

Re: [jira] [Updated] (JSPWIKI-886) Dynamic search is not working using Haddock

2015-07-10 Thread Dirk Frederickx
Dave, I'll try to look into that over the weekend. dirk On Fri, Jul 10, 2015 at 5:49 PM, Dave Koelmeyer (JIRA) wrote: > > [ > https://issues.apache.org/jira/browse/JSPWIKI-886?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel > ] > > Dave Koelmeyer updated JSPWIKI-886: > ---

Re: question on fontawesome files without AL headers

2015-07-14 Thread Dirk Frederickx
Juan, "fontjspwiki" is just a packaging of some font characters, all taken from Font Awesome by Dave Gandy (http://fontawesome.io), and build with IcoMoon. Font Awesome is fully open source and is GPL friendly. (see http://fontawesome.io/license/) The license information is included in font-js

Re: Haddock template and bugs

2015-08-04 Thread Dirk Frederickx
> Cheers, > > > David V > > > > > > > > > On Tue, Jun 30, 2015 at 1:08 PM, David Vittor > wrote: > > > > > > > Link is here: > > > > http://www.digitalspider.com.au/testwiki/ > > > > > > > > > >

mvn clean test not working ?

2015-08-04 Thread Dirk Frederickx
Trying to run mvn clean test But getting this error : [INFO] Apache JSPWiki SUCCESS [0.678s] [INFO] Apache JSPWiki initial wiki pages builder . SUCCESS [0.021s] [INFO] Apache JSPWiki initial wiki pages (de) SUCCESS [0.345s] [INFO] Apa

Re: Haddock template and bugs

2015-08-04 Thread Dirk Frederickx
. > > > > Cheers, > > David V > > > > > > On Tue, Jun 30, 2015 at 1:08 PM, David Vittor wrote: > > > > > Link is here: > > > http://www.digitalspider.com.au/testwiki/ > > > > > > > > > On Tue, Jun 30, 2015 at 1:07 PM,

Re: preparing for 2.10.2

2015-08-13 Thread Dirk Frederickx
Joan, all About the upcoming 2.10.2 release - on Translations: Because of the developments on the Haddock Template I added here and there new I18N resources, avoiding to change existing items used by the default template. So far, those new items still need translations. - The Haddock temp

Re: Haddock template and bugs

2015-08-23 Thread Dirk Frederickx
Hi Dave, Would you be able to refresh http://digitalspider.com.au/testwiki <http://digitalspider.com.au/testwiki/Wiki.jsp?page=Authortest> with the latest dev branch (2.10.2-svn-34) ? The site seems to be down for the last couple of days. dirk On Tue, Aug 4, 2015 at 9:53 PM, Dirk Fred

Re: [DRAFT] Report from the Apache JSPWiki committee

2015-10-13 Thread Dirk Frederickx
+1 , tx for the prep. dirk On Tue, Oct 13, 2015 at 7:53 PM, Harry Metske wrote: > JP, > > +1 for the report. > > Tx, > Harry > Op 13 okt. 2015 15:30 schreef "Juan Pablo Santos Rodríguez" < > juanpablo.san...@gmail.com>: > > > Hi, > > > > below is a draft for this quarter's Board report. I'll tr

Re: Some possible education assistance with maintenance tasks

2016-02-02 Thread Dirk Frederickx
- port some of the v2.9.x java plugins to the latest apache version ( https://jspwiki-wiki.apache.org/Wiki.jsp?page=ContributedPlugins ) - extend jspwiki with auto-save and minor-edit function during edit https://issues.apache.org/jira/browse/JSPWIKI-436 - create new-page with templates https

Re: preparing 2.10.2 tomorrow night?

2016-02-16 Thread Dirk Frederickx
Hi Juan, +1 I'm also ok to release the 2.10.2. There are still a few JIRA's on the HADDOCK template from Dave I'd like to get fixed, but I guess none are really blocking. Putting HADDOCK as the default template on the JSPWiki site would help to further stabilise the template and tweak it. (eg b

Re: [VOTE] Release JSPWiki version 2.10.2

2016-02-17 Thread Dirk Frederickx
+1 On Wed, Feb 17, 2016 at 10:38 PM, Juan Pablo Santos Rodríguez < juanpablo.san...@gmail.com> wrote: > +1 here too > > On Wed, Feb 17, 2016 at 8:41 PM, Harry Metske > wrote: > > > +1 > > > > On 17 February 2016 at 11:17, Juan Pablo Santos Rodríguez < > > juanpablo.san...@gmail.com> wrote: > >

Re: [ANNOUNCE] Dave Koelmeyer as new JSPWiki PMC/Committer

2016-04-06 Thread Dirk Frederickx
HI Dave, Welcome on board ! dirk On Wed, Apr 6, 2016 at 7:32 PM, Harry Metske wrote: > Welcome to the team Dave! > > Kind regards, > Harry > Op 6 apr. 2016 14:51 schreef "Juan Pablo Santos Rodríguez" < > juanpablo.san...@gmail.com>: > > > Hi all, > > > > We're glad to announce that the JSPWiki

Re: Blog post for review: introducing Haddock

2016-05-15 Thread Dirk Frederickx
Dave, Tx -- Great summary ! dirk On Sun, May 15, 2016 at 9:43 AM, Dave Koelmeyer < dave.koelme...@davekoelmeyer.co.nz> wrote: > Hi All, > > This is currently in draft ready for posting, please let me know if any > changes needed: > > *** > > Introducing the Haddock template > > As mention

Re: Blog post for review: introducing Haddock

2016-05-18 Thread Dirk Frederickx
" > ... https://jspwiki-wiki.apache.org/Wiki.jsp?page=Haddock%20Template > > > take care, > GB > > > - Original Message - >>> On 16/05/16 02:44, Dirk Frederickx wrote: >>> Dave, >>> Tx -- Great summary ! >>> dirk >>> &g

Re: Blog post for review: Tab Completion

2016-08-02 Thread Dirk Frederickx
Dave, Txs. Great posts ! dirk On Tue, Aug 2, 2016 at 2:52 PM, Dave Koelmeyer < dave.koelme...@davekoelmeyer.co.nz> wrote: > Thanks Juan Pablo, published now: > > > https://blogs.apache.org/jspwiki/entry/jspwiki_feature_highlight_tab_completion > > Cheers, > Dave > > On 03/08/16 00:21, Juan Pabl

Re: Blog post for review: ContextualDiffProvider

2016-08-07 Thread Dirk Frederickx
Dave, +1 Maybe you can also mention that you can step through each difference by clicking the backward/forward links. dirk On Mon, Aug 8, 2016 at 6:34 AM, Harry Metske wrote: > +1 > > On 8 August 2016 at 01:41, Dave Koelmeyer < > dave.koelme...@davekoelmeyer.co.nz> wrote: > > > Hi All, > > > >

Re: switching svn to git for jspwiki ?

2016-08-21 Thread Dirk Frederickx
+1 for me too. dirk On Sat, Aug 20, 2016 at 9:00 PM, Juan Pablo Santos Rodríguez < juanpablo.san...@gmail.com> wrote: > Hi, > > +1 here too > > br, > juan pablo > > El 20 ago. 2016 5:14 a. m., "David Vittor" escribió: > > > Oops on mobile. That was meant to be +1. :) > > On 20/08/2016 1:13 PM,

Re: blog post for review: inactive session timeout

2016-08-25 Thread Dirk Frederickx
Hi Dave, Did you know that you can change the "Session Timeout" message which is shown by JSPWiki when that timeout occurs ? Just create the SessionExpired page.It's probably also a good idea to put a [{ALLOW edit Admin}] in that page. dirk On Fri, Aug 26, 2016 at 2:50 AM, Dave Koelmeyer

Re: svn commit: r1764751 - /jspwiki/board/2016-10.txt

2016-10-13 Thread Dirk Frederickx
Juan +1 , txs dirk On Thu, Oct 13, 2016 at 8:46 PM, Harry Metske wrote: > looks good > > thanks, > Harry > > On 13 October 2016 at 20:22, Juan Pablo Santos Rodríguez < > juanpablo.san...@gmail.com> wrote: > > > Hi, > > > > as it says below, this is the tentative Board report for this quarter. >

Re: [DRAFT] ASF Board Report for JSPWiki - January 2017

2017-01-12 Thread Dirk Frederickx
+1 tx dirk On Thu, Jan 12, 2017 at 7:08 PM, Harry Metske wrote: > +1 > > also on the doc git repo. > > tx JP! > > regards, > Harry > > > On 12 January 2017 at 09:34, Juan Pablo Santos Rodríguez < > juanpablo.san...@gmail.com> wrote: > > > Hi all, > > > > please find below a draft of this quar

Re: Blog post for review: MathJax support in JSPWiki

2017-02-23 Thread Dirk Frederickx
Hi Dave, Happy to see the continuation of the blog ! You may want to add to the text that with MathJax you can use either Tex/LaTex or AsciiMath notation in your wiki pages. BTW, I'm hacking on some cool additional effects for Images and page Backgrounds in Haddock. (more reasons to use the

Re: Build failed in Jenkins: JSPWiki-sonarqube #4

2017-03-13 Thread Dirk Frederickx
All, Any clue why this build failed ? Running maven locally is working perfectly. dirk On Sun, Mar 12, 2017 at 4:58 PM, Apache Jenkins Server < jenk...@builds.apache.org> wrote: > See display/redirect?page=changes> > > Changes: > > [brushed]

Re: Build failed in Jenkins: JSPWiki-sonarqube #4

2017-03-14 Thread Dirk Frederickx
ution seems to have done fine, so the analysis is now > reachable at > https://builds.apache.org/analysis/overview?id=org. > apache.jspwiki%3Ajspwiki-builder > > > br, > juan pablo > > > On Mon, Mar 13, 2017 at 6:25 PM, Dirk Frederickx < > dirk.frederi...@gmail.com>

Re: jspwiki site git repo + git integration for JIRA

2017-03-21 Thread Dirk Frederickx
+1 dirk On Tue, Mar 21, 2017 at 9:44 PM, Harry Metske wrote: > +1 > > Regards, > Harry > > > Op 21 mrt. 2017 20:51 schreef "Juan Pablo Santos Rodríguez" < > juanpablo.san...@gmail.com>: > > > Hi, > > > > I've requested a few minutes ago one more git repo, to host the CMS files > > (current sit

Re: Apache JSPWiki homepage template

2017-04-14 Thread Dirk Frederickx
juan pablo > > > > > > On Sun, Mar 12, 2017 at 2:31 AM, Dave Koelmeyer < > > dave.koelme...@davekoelmeyer.co.nz> wrote: > > > >> Hi All, > >> > >> So it sounds like we can go ahead with requesting a redirect from infra > >> to point

Re: Apache JSPWiki homepage template

2017-04-15 Thread Dirk Frederickx
Juan Pablo Santos Rodríguez < > juanpablo.san...@gmail.com> wrote: > > > Hi Dirk, > > > > I like very much the accordion idea! I'll play with it and come back here > > when finished. > > > > > > cheers, > > jp > > > > On Sat,

Re: board report for 2017-04

2017-04-15 Thread Dirk Frederickx
+1 On Sat, Apr 15, 2017 at 12:51 PM, Juan Pablo Santos Rodríguez < juanpablo.san...@gmail.com> wrote: > Hi, > > below is this quarter's proposed board report. I should have already sent > it, so if no changes make into it I'll plan to send it between tonight and > tomorrow morning. > > > br, > ju

Search down on us-wiki

2017-05-13 Thread Dirk Frederickx
Seems like the Search is not functioning anymore on https://jspwiki-wiki.apache.org. Also ajax search is not working Can someone have a look at this ? dirk

Re: Search down on us-wiki

2017-05-13 Thread Dirk Frederickx
Harry > > > > On 13 May 2017 at 17:43, Dirk Frederickx > wrote: > > > Seems like the Search is not functioning anymore on > > https://jspwiki-wiki.apache.org. > > Also ajax search is not working > > > > Can someone have a look at this ? > > > > > > dirk > > >

Re: haddock-based version of jspwiki.apache.org

2017-06-26 Thread Dirk Frederickx
Hi Juan, Quick reply (I haven't had the time to check / build the site locally) : For the Accordion, you only need a around an ... All the other markup and classes (like "panel", "panel-group", ... ) is automatically generated by the haddock.js. So, just mimic the rendered jspwiki page with

Re: proposed 07/2017 board report

2017-07-16 Thread Dirk Frederickx
Juan, +1 Txs for preparing the report. dirk On Sun, Jul 16, 2017 at 2:23 PM, Juan Pablo Santos Rodríguez < juanpablo.san...@gmail.com> wrote: > Hi, > > below is the proposed Board report for this quarter. I should have sent > this earlier, but was caught up by work this week. I plan to submit i

Re: Blog post for review: SVN > Git migration

2017-08-03 Thread Dirk Frederickx
Hi `Dave, +1 Did you ever tried to use jspwiki's own weblog mechanism ? EG https://jspwikiwiki.apache.org/Wiki.jsp?page=HaddockWeblogExample dirk On Thu, Aug 3, 2017 at 12:35 PM, Dave Koelmeyer < dave.koelme...@davekoelmeyer.co.nz> wrote: > > Hi All, > > I should have done this at the time,

Re: [jira] [Created] (JSPWIKI-1063) Replace nekohtml with a different parser

2017-08-30 Thread Dirk Frederickx
+1 On Wed, Aug 30, 2017 at 7:26 PM, Harry Metske wrote: > I would agree with that. > Do we then have to shift our jdk requirement to 7 or 8? > Our current requirement is Jdk 6 if I m correct (which is very old now) > > Regards, > Harry > > > On Aug 29, 2017 00:14, "Jürgen Weber (JIRA)" wrote: >

Re: Blog post for review: custom fonts

2017-09-16 Thread Dirk Frederickx
Hi Dave, In Haddock there are actually 2 ways to use different fonts, supported by %%add-css : First by attaching a font file to a page. (we are supporting .ttf, .otf and .woff font files) Or by remotely loading a font file from google's font repository. (See the page [Font Example]) This onl

Re: Markdown support

2017-11-11 Thread Dirk Frederickx
Hi Juan, Adding markup support would indeed be an excellent extension for jspwiki. When changing the parser/render as you proposed, this would mean that for one jspwiki instance the backend storage would be changed from jspwiki-markup to markdown. I think this has some important limitations: -

Re: Markdown support

2017-11-19 Thread Dirk Frederickx
bleOfContents wasn't > usable under markdown, I removed the generation of #-links and instead of > executing the plugin, > switched it to flexmark's own TOC extension, surrounded with some divs. So > as for now, whereas > TableOfContents generates something like:

Re: Markdown support

2017-11-19 Thread Dirk Frederickx
n as a dependency to jspwiki-war ", > that would mean > something like > https://github.com/juanpablo-santos/jspwiki-markdown/blob/ > master/jspwiki-markdown-war/pom.xml#L36-L49 > But for that you have to have access to latest snapshot, either by > compiling latest master,

jspwiki down

2018-02-02 Thread Dirk Frederickx
All, Getting this error on jspwiki apache site: This server could not prove that it is *jspwiki-wiki.apache.org *; its security certificate expired yesterday. dirk

Re: release plan for 2.10.3

2018-02-05 Thread Dirk Frederickx
hi all, +1 for an upcoming release. @Dave, You may want to consider publishing the blog post also on jspwiki-wiki.a.o. That way we promote even jspwiki more. (see https://jspwiki-wiki.apache.org/Wiki.jsp?page=Haddock%20Weblog%20Example ) An "BLOG" page, next to the NEWS link in the LeftMenu w

Re: [VOTE] Release JSPWiki version 2.10.3

2018-02-09 Thread Dirk Frederickx
+1 dirk On Sat, Feb 10, 2018 at 1:37 AM, Juan Pablo Santos Rodríguez < juanpa...@apache.org> wrote: > Hi all, > > this is a release vote for Apache JSPWiki, version 2.10.3. The vote > will be open for at least 72 hours from now. > > It fixes the following issues: > > https://issues

Re: [jira] [Commented] (JSPWIKI-835) better mobile experience

2018-04-28 Thread Dirk Frederickx
All, With the last 2 commits, I've added support for mobile devices to the Haddock Template. (long overdue request) Would it be possible to refresh https://jspwiki-wiki.apache.org ; to collect feedback ? dirk On Sat, Apr 28, 2018 at 4:49 PM, ASF subversion and git services (JIRA) <

Re: [jira] ASF subversion and git services mentioned you on JSPWIKI-835 (JIRA) (JIRA)

2018-04-28 Thread Dirk Frederickx
All, With the last 2 commits, I've added support for mobile devices to the Haddock Template. (long overdue request) Would it be possible to refresh https://jspwiki-wiki.apache.org ; to collect feedback ? dirk On Sat, Apr 28, 2018 at 4:49 PM, ASF subversion and git services (JIRA) < j...@apac

Re: [jira] ASF subversion and git services mentioned you on JSPWIKI-835 (JIRA) (JIRA)

2018-04-28 Thread Dirk Frederickx
> > edit pages. > > > > see attachment > > > > cheers, > > Harry > > > > > > On 28 April 2018 at 17:10, Dirk Frederickx > > wrote: > > > >> All, > >> > >> With the last 2 commits, I've added sup

Re: [jira] ASF subversion and git services mentioned you on JSPWIKI-835 (JIRA) (JIRA)

2018-04-29 Thread Dirk Frederickx
gt; > doRun(NioEndpoint.java:1437) > > at org.apache.tomcat.util.net.SocketProcessorBase.run( > > SocketProcessorBase.java:49) > > at java.util.concurrent.ThreadPoolExecutor.runWorker( > > ThreadPoolExecutor.java:1149) > > at java.util.concurrent.ThreadPoolExecutor$Worker.

Re: 2.10.4?

2018-05-13 Thread Dirk Frederickx
+1 for 2.10.4 release. Much appreciated if you'd continue to take care of the delivery, unless anybody else volunteers. dirk On Fri, May 11, 2018 at 8:56 PM Juan Pablo Santos Rodríguez < juanpablo.san...@gmail.com> wrote: > Hi all, > > as we're heading into mid-may now, it's time for 2.10.4, f

Re: [VOTE] Release JSPWiki version 2.10.4

2018-05-21 Thread Dirk Frederickx
Juan, tx for pushing the release. +1 dirk On Mon, May 21, 2018 at 10:55 AM Dave Koelmeyer < dave.koelme...@davekoelmeyer.co.nz> wrote: > +1 > > -- > Dave Koelmeyer > http://blog.davekoelmeyer.co.nz > GPG Key ID: 0x238BFF87 > The Document Foundation (TDF) member > > > On 21/05/18 07:11, Juan P

Re: [apache/jspwiki] Clickable buttons (#1)

2018-06-20 Thread Dirk Frederickx
Harry, Juan, I made a commit earlier this week to resolve the hover/clickable buttons for devices with a touch-interface. Would it be possible to push the update to jspwiki-wiki.apache.org . Testing was done on iPad/iPhone, but I'd like to get feedback on other types of touch devices. Not sure

Re: [apache/jspwiki] Clickable buttons (#1)

2018-06-24 Thread Dirk Frederickx
ments you see fit"? (btw, @jonasmue > are you on this list? I bet you probably are..) WDYT? > > > br, > juan pablo > > [#1]: > > https://repository.apache.org/#nexus-search;gav~org.apache.jspwiki~~2.10.5-SNAPSHOT~~ > > On Thu, Jun 21, 2018 at 7:42 AM, Harry Metsk

Re: [apache/jspwiki] Clickable buttons (#1)

2018-07-01 Thread Dirk Frederickx
thx + br, > juan pablo > > On Sun, Jun 24, 2018 at 10:45 AM, Dirk Frederickx < > dirk.frederi...@gmail.com > > wrote: > > > Hi Juan, > > > > Txs. > > > > *>>> - I'm unable to click on button / links on login area. More > > preci

Re: Draft for upcoming board report

2018-07-09 Thread Dirk Frederickx
+1 On Mon, Jul 9, 2018 at 1:35 PM Harry Metske wrote: > looks good! > > thanks, > Harry > > > On Sun, 8 Jul 2018 at 21:58, Juan Pablo Santos Rodríguez < > juanpablo.san...@gmail.com> wrote: > > > Hi all, > > > > below is a draft for the upcoming board report, I'm planning on sending > it > > 2 o

Re: [VOTE] Release JSPWiki version 2.10.5

2018-09-02 Thread Dirk Frederickx
+1 On Sun, Sep 2, 2018 at 2:30 PM David Vittor wrote: > +1 > > On Sun, Sep 2, 2018 at 9:43 PM Harry Metske > wrote: > > > +1 > > > > On Sat, 1 Sep 2018 at 01:00, Juan Pablo Santos Rodríguez < > > juanpa...@apache.org> wrote: > > > > > This is a release vote for Apache JSPWiki, version 2.10.5.

Re: Haddock and existing wiki pages

2018-09-18 Thread Dirk Frederickx
Hi Florian, Existing wiki content should indeed be rendered 100% correctly. When using specific styles provided by Haddock, they are of-course only effective in this template. dirk On Tue, Sep 18, 2018 at 6:45 AM Florian Holeczek wrote: > Hi all, Dirk, > > I've just updated a portable wiki

Re: [VOTE] Release JSPWiki version 2.11.0.M1

2018-12-05 Thread Dirk Frederickx
-1 also for me. mvn clean install fails on running the step Apache JSPWiki markdown support *FAILURE* Previously the markdown support step was not part of the main build (separate branch?) and did not block the war creation. I never got it running previously as well. I ass

Re: Post mortem JSPWiki 2.11.0.M1-rc1

2018-12-08 Thread Dirk Frederickx
Juan *- Point 6, question: on which version was that tested? the issue raisedpoints to 2.11.0.M2-SNAPSHOT (current master, not the RC tag), but that isalso building ([#2] does the whole build). On previous versions, themarkdown module was build after the main war, and with 2.11.0.M1 it b

Re: Post mortem JSPWiki 2.11.0.M1-rc1

2018-12-10 Thread Dirk Frederickx
On Sat, Dec 8, 2018 at 2:15 PM Dirk Frederickx wrote: > Juan > > > > > > > > > > > > *- Point 6, question: on which version was that tested? the issue > raisedpoints to 2.11.0.M2-SNAPSHOT (current master, not the RC tag), but > that isalso buil

Re: Post mortem JSPWiki 2.11.0.M1-rc1

2018-12-11 Thread Dirk Frederickx
returned value, as opposed to the expected one)?.. > > > thx, > juan pablo > > El mar., 11 dic. 2018 0:44, Dirk Frederickx > escribió: > > > Juan, > > > > Thanks for putting your description on > > > > > https://jspwiki-wiki.apache.org/Wik

Re: Post mortem JSPWiki 2.11.0.M1-rc1

2018-12-15 Thread Dirk Frederickx
I just pushed some fixes related to the default (now haddock) template. Please rerun your tests. dirk On Tue, Dec 11, 2018 at 10:11 PM Dirk Frederickx wrote: > Hi Juan, > > I did some further testing. > > JSPWiki's template engine has an automatic mechanism to resolve the

Re: [jspwiki] branch master updated: 2.11.0-M1-git-13: AJAX based search results are not shown.

2018-12-24 Thread Dirk Frederickx
pwiki-main/src/main/java/org/apache/wiki/Release.java | 2 +- > > jspwiki-war/src/main/webapp/templates/default/AJAXSearch.jsp | 5 - > > 3 files changed, 11 insertions(+), 2 deletions(-) > > > > diff --git a/ChangeLog b/ChangeLog > > index 1e6f212..cb66b75 100

Re: Draft board report for 2019/01

2019-01-11 Thread Dirk Frederickx
Txs for preparing the report. +1 Happy New Year to all ! dirk On Fri, Jan 11, 2019 at 12:26 AM Juan Pablo Santos Rodríguez < juanpablo.san...@gmail.com> wrote: > Hi, > > I've just pushed a draft for the upcoming board report at > > https://github.com/apache/jspwiki-asf-docs/blob/master/boa

Re: [VOTE] Release JSPWiki version 2.11.0.M1

2019-01-27 Thread Dirk Frederickx
One more +1. dirk On Sun, Jan 27, 2019 at 1:28 PM Harry Metske wrote: > +1 > > thanks, > Harry > > > On Sat, 26 Jan 2019 at 18:39, Juan Pablo Santos Rodríguez < > juanpablo.san...@gmail.com> wrote: > > > This is a release vote for Apache JSPWiki, version 2.11.0.M1. The vote > will > > be open

Re: [VOTE] Release JSPWiki version 2.11.0.M1

2019-01-27 Thread Dirk Frederickx
1) During this transition moving the haddock template folder, it would be wise to still keep an empty template/haddock folder. JSPWiki will automatically fall back to the default template when it doesn't find the requested JSP; so migrating would become more easy. 2) As an improvement on the lo

Re: releasing 2.11.0.M2?

2019-02-18 Thread Dirk Frederickx
Agree. I would be sensible to push out a release; to stabilise the template upgrade. dirk On Mon, Feb 18, 2019 at 5:53 PM Harry Metske wrote: > JP, > > that would be fine I think. > > tx, > Harry > > > Op zo 17 feb. 2019 om 23:58 schreef Juan Pablo Santos Rodríguez < > juanpablo.san...@gmail.co

Re: [VOTE] Release JSPWiki version 2.11.0.M2

2019-03-05 Thread Dirk Frederickx
Juan, +1 dirk On Tue, Mar 5, 2019 at 12:00 AM Juan Pablo Santos Rodríguez < juanpablo.san...@gmail.com> wrote: > my +1 > > > best regards, > juan pablo > > On Mon, Mar 4, 2019 at 11:55 PM Juan Pablo Santos Rodríguez < > juanpablo.san...@gmail.com> wrote: > > > This is a release vote for Apache

Re: Revisiting an old thread - Seeding content in pages not yet created

2019-03-20 Thread Dirk Frederickx
Hi Brian, As far as I can see, nothing has changed on the plain editor w.r.t. the _editedtext parameter name. You can still use it to overwrite the content of the edit area. However, I would have expected to see another edit URL, i.e. without /wiki : https://my.web.server/Edit.jsp?page=&_edited

Re: [VOTE] Release JSPWiki version 2.11.0.M3

2019-03-22 Thread Dirk Frederickx
+1 Tx for creating the CVE's too dirk On Fri, Mar 22, 2019 at 8:09 PM Juan Pablo Santos Rodríguez < juanpablo.san...@gmail.com> wrote: > my +1 > > best regards, > juan pablo > > On Fri, Mar 22, 2019 at 6:53 PM Juan Pablo Santos Rodríguez < > juanpablo.san...@gmail.com> wrote: > > > This is a re

Re: [DRAFT] 2019-04 Board report

2019-03-31 Thread Dirk Frederickx
+1 small typo at " and no too much later 2.11.0.M3" On Sat, Mar 30, 2019 at 11:34 PM Juan Pablo Santos Rodríguez < juanpablo.san...@gmail.com> wrote: > Hi, > > below is a draft for next Board Report. We've seen a lot of activity this > quarter, so it is possible that I've forgotten something, or

Re: scope until 2.11?

2019-03-31 Thread Dirk Frederickx
Stuff I'd like to add to that list: Expand JSPWiki markup: * [JSPWIKI-1100] Add support for mixed css-class & css-style markup * [JSPWIKI-1040] Add new markup %%% ... /% for plain-text sections Rendering engine: * [JSPWIKI-1101] Change rendering of {{{inline preformatted text}}} using a css class

  1   2   >