Re: [xwiki-users] [l10n] issue posting translation to XWiki site

2010-06-15 Thread coldserenity

I believe that this property has wrong english text
http://l10n.xwiki.org/xwiki/bin/view/XE/XEXWikiCoreResources_330701080_plugin-tag-editcomment-added_uk
 

And one more thing, should
http://l10n.xwiki.org/xwiki/bin/view/XE/XEXWikiCoreResources_-1208697545_hrtext_uk
remain empty?
-- 
View this message in context: 
http://xwiki.475771.n2.nabble.com/l10n-issue-posting-translation-to-XWiki-site-tp5163871p5180963.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Lucene does not appear to be indexing

2010-06-15 Thread Thomas Mortagne
On Tue, Jun 15, 2010 at 02:41, James Cuzella
james.cuze...@alumni.mines.edu wrote:
 Hello,

 I'm running xwiki-enterprise-2.3.1.  After adding a bunch of documents
 to the wiki, and trying to click on the Rebuild the Lucene index
 link on the LuceneSearch page, it seems to hang indefinitely.  A whole
 bunch of documents are in the wiki that should show up to a search
 term Hardware, but none appear when searching using Lucene.

 When using the old WebSearch page, they all show up.  Is there a way
 to fix this?

Lucene is supposed to work well on 2.3.1. So you have any error in the log ?


 Thanks,
 - James Cuzella
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users




-- 
Thomas Mortagne
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] PDF Export of {code} sections

2010-06-15 Thread Alexander Pokahr
Hi Tomas, all,

debugging XWiki in eclipse, I found at least part of the problem:
In PdfExportImpl.convertToStrictXHtml() the page is converted
to strict xhtml using jtidy. Unfortunately, jtidy also imposes its own
indentation on the document, which effectively breaks any pre
environment like the one generated by the code macro.

I haven't used jtidy. Can it be configured to keep the original
indentation and whitespaces of an input document?

Cheers,
Alex


Thomas Mortagne schrieb:
 On Fri, Jun 11, 2010 at 17:22, Alexander Pokahr
 pok...@informatik.uni-hamburg.de wrote:
   
 Dear Thomas,

 thanks for your quick reply.
 I tried following the instructions at:
 http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Configuration#HCustomizingthePDFexportLook26Feel

 I even tried with very simple css snippets such as:
 h1
 {
   color: blue;
 }
 but it doesn't seem to have any effect on the PDF output.
 

 Actually maybe the issue you have is related to
 http://jira.xwiki.org/jira/browse/XWIKI-4869

   
 BTW, i was wondering why there is no pdf.css in my XWiki
 installation. I'm using XWiki Enterprise 2.1.1.
 

 I could not say sorry, i can't find it either in the latest versions.
 I guess the default css are somewhere else or maybe there is none by
 default.

   
 I have looked in the release notes to check that the PDF export
 hasn't changed in newer versions, right?

 Any ideas how I could debug this issue? Are the intermediary files
 during generation available somewhere?
 

 I don't think so. You would have to run XWiki in debug mode in Eclipse
 or something.

   
 Cheers,
 Alex


 On 11.06.2010 15:21, Thomas Mortagne wrote:
 
 On Fri, Jun 11, 2010 at 14:50, Alexander Pokahr
 pok...@informatik.uni-hamburg.de  wrote:

   
 Dear all,

 we are using XWiki for the project websites and online
 documentation of our open source projects and are
 (almost) very happy with it.

 For releasing distributions and for easy printing of multi-page
 documents, we would like to use the PDF export facility
 of XWiki. The problem is that the {code} snippets used
 often in our documentation are nearly unreadable in PDF.

 Here is an example (web page and PDF export):
 http://jadex-agents.informatik.uni-hamburg.de/xwiki/bin/view/Standalone+Platform+Guide/01+Introduction
 http://jadex-agents.informatik.uni-hamburg.de/xwiki/bin/export/Standalone+Platform+Guide/01+Introduction?format=pdf

 We browsed the documentation, but found it a little bit confusing.
 Can anyone please point us in the right direction for solving
 this issue or (even better) suggest a fix?

 
 The display of code macro is controlled by a css class, maybe it's
 missing in the css used with PDF export or it's not supported by PDF
 export.


   
 Kind regards and thanks in advance,
 Lars
 Alex


 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users


 

   
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users

 



   

___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Archive of Pages with Live Table Macro

2010-06-15 Thread Aleks87


Aleks87 wrote:
 
 Hello,
 I am trying to create a LiveTable like this one: 
 http://code.xwiki.org/xwiki/bin/view/Snippets/LiveTableAllDocsSnippet Live
 Table Snippet for All Docs Page 
 I have readed the Description of 
 http://code.xwiki.org/xwiki/bin/view/Macros/LiveTableMacro LiveTableMacro 
 but I'm not able to create a Live Table List which shows me a linked list
 of all created pages in one Space (e.g. Main.WebHome)
 
 - Page Name , Date , Author , Last Modified (sort by Date)
 
 Can someone help me please? My Lists are all empty. 
 

I have this code:
###
{{velocity}}
#set($collist = [doc.name,doc.date, doc.author, _actions])
#set($colprops = {
   doc.name : { type : text , size : 30, link :
view}, 
   doc.space : { type : text, link : space},
   doc.date : { type : date },
   doc.author : { type : text, link : author},
   _actions : {actions: [edit,delete,rename]}
 })
#set($options = { translationPrefix : xe.index.,
  rowCount: 10,
  description: This table lists all the documents found
on this wiki. The columns can be sorted and some can be filtered.,
  selectedColumn: doc.date,
  defaultOrder : desc
 })
#livetable(alldocs $collist $colprops $options)
{{/velocity}}
###
who makes me a Live Table:
Page , Date , Last Author , Actions [edit,delete,rename]
sorted by date

But this table is showing me all wiki pages. Is it possible to make this
live table showing me only pages in one space?
-- 
View this message in context: 
http://xwiki.475771.n2.nabble.com/Archive-of-Pages-with-Live-Table-Macro-tp5181339p5182068.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Archive of Pages with Live Table Macro

2010-06-15 Thread Marius Dumitru Florea
On 06/15/2010 05:04 PM, Aleks87 wrote:


 Aleks87 wrote:

 Hello,
 I am trying to create a LiveTable like this one:
 http://code.xwiki.org/xwiki/bin/view/Snippets/LiveTableAllDocsSnippet Live
 Table Snippet for All Docs Page
 I have readed the Description of
 http://code.xwiki.org/xwiki/bin/view/Macros/LiveTableMacro LiveTableMacro
 but I'm not able to create a Live Table List which shows me a linked list
 of all created pages in one Space (e.g. Main.WebHome)

 -  Page Name , Date , Author , Last Modified (sort by Date)

 Can someone help me please? My Lists are all empty.


 I have this code:
 ###
 {{velocity}}
 #set($collist = [doc.name,doc.date, doc.author, _actions])
 #set($colprops = {
 doc.name : { type : text , size : 30, link :
 view},
 doc.space : { type : text, link : space},
 doc.date : { type : date },
 doc.author : { type : text, link : author},
 _actions : {actions: [edit,delete,rename]}
   })
 #set($options = { translationPrefix : xe.index.,
rowCount: 10,
description: This table lists all the documents found
 on this wiki. The columns can be sorted and some can be filtered.,
selectedColumn: doc.date,
defaultOrder : desc
   })
 #livetable(alldocs $collist $colprops $options)
 {{/velocity}}
 ###
 who makes me a Live Table:
 Page , Date , Last Author , Actions [edit,delete,rename]
 sorted by date

 But this table is showing me all wiki pages. Is it possible to make this
 live table showing me only pages in one space?

Check out this thread 
http://lists.xwiki.org/pipermail/users/2010-June/020947.html

Hope this helps,
Marius
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] The new GWT-based WYSIWYG editor doesn't support the syntax

2010-06-15 Thread Lee Chalupa

I used the url you sent me to create a new page.

Entered the code you sent me.

I can't complete the next step:

making sure the syntax d 
isplayed in the Document Information panel is XWiki 2.0). Save and view.

My document information panel does not have any reference to a field with a
value such as XWiki 2.0?

lee
-- 
View this message in context: 
http://xwiki.475771.n2.nabble.com/The-new-GWT-based-WYSIWYG-editor-doesn-t-support-the-syntax-tp5135766p5182290.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Permission problems after XAR import

2010-06-15 Thread Mike Jakubik
On 6/14/2010 6:14 PM, Caleb James DeLisle wrote:

 To get this working simply edit XWiki.RegistrationConfig and 
 AnnotationCode.AnnotationConfig
 so they are saved with your user name.


Thanks for the help guys, that fixed the problem.

___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] The new GWT-based WYSIWYG editor doesn't support the syntax

2010-06-15 Thread Lee Chalupa

Ok. I made some progress.  I've been checking the xwiki.cfg file comparing
it's content to the default file that comes with the release.

After these changes, on the page information panel, I am not getting another
field: page syntax.  I am only able to get one value in that field:  1.0
syntax, not the 2.0 syntax. So I don't have a choice.
How do I fix that?

We are getting closer.


-- 
View this message in context: 
http://xwiki.475771.n2.nabble.com/The-new-GWT-based-WYSIWYG-editor-doesn-t-support-the-syntax-tp5135766p5183228.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] The new GWT-based WYSIWYG editor doesn't support the syntax

2010-06-15 Thread Lee Chalupa

Sorry, I'm getting tired.  The last post has an error in it.  It should say
that I AM NOW getting the page syntax field. This field was not displaying
in earlier tests.  However I'm only able to get one value in it.

lee
-- 
View this message in context: 
http://xwiki.475771.n2.nabble.com/The-new-GWT-based-WYSIWYG-editor-doesn-t-support-the-syntax-tp5135766p5183230.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] The new GWT-based WYSIWYG editor doesn't support the syntax

2010-06-15 Thread Lee Chalupa

More testing...also found this error. I have double checked that the plug in
is in the config file.

The Application Manager plugin is not enabled. This page will not work
properly. Make sure
com.xpn.xwiki.plugin.applicationmanager.ApplicationManagerPlugin is listed
in xwiki.plugins parameter in xwiki.cfg file.



-- 
View this message in context: 
http://xwiki.475771.n2.nabble.com/The-new-GWT-based-WYSIWYG-editor-doesn-t-support-the-syntax-tp5135766p5183324.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users