Hai,
How can i set Watch List to particular user through the admin login.
(i am in admin login but i need to set watch list to particular User)
Regards
Rajasekar
Hi Vincent,
AFAIK, the conversion from xhtml to xwiki syntax is hard because many
things about how to render the html elements in xwiki syntax are still
not sure, like table, img, {style} macro. Furthermore, the xhtmlparser
is buggy, like <img> <link> list. I will try my best to make the
conversion work, but to make a option, I want develop a feature that
just convert office doument to xhtml. So the user can just use the
convert2html to get the xhtml and fill xhtml into xwiki page with
xwiki syntax 1.0. After we finish the new rendering and the
xhtmlparser, the use can change to convert2xwikisyntax.
The convert2html is easy but some thing to handle
* clean the html (htmlcleaner)
* remove the <style> in head (htmlcleaner)
* remove empty link (htmlcleaner)
* remove <p> in <li> (jdom)
* replace <img> with {img} (jdom)
* replace link <a> to [] (jdom)
* handle the ppt and odp to the single page
All these step is easy to implement. The convert2html may be not
perfect, but it can work for most conversion requirement for now. As I
am runnig for deadline, I think a workable feature is useful. However,
I will work on the finial gold "convert to xwiki syntax2.0"
continually.
WDYT?
--
Thanks
Wang Ning
Hi,
I just finished the implementation of OpenID authentication support
(http://jira.xwiki.org/jira/browse/XWIKI-2588). You can download a ZIP file
containing all the needed patches from here:
http://jira.xwiki.org/jira/secure/attachment/13049/openid-authentication-pa…
Make sure that you update the user profile page so that the "Attach OpenID"
button appears (it's included in the applications patch).
Please test it out and report me any errors you find. You shouldn't find
many since it's already well tested :-)
Cheers,
Markus
Good morning
I instaled the Office Importer to import a .doc file saved in OpenOffice 2.4, into my XWiki. The result was
almost perfect, but where I should have this "[ ]" i have this "?", a link to an empty page.
For example:
listPojosByField(String field, Object value, ServiceContext ctx, String[][] optimizations) 21 - in the
original document
listPojosByField(String field, Object value, ServiceContext ctx, String][? optimizations) 21 - after
conversion
JSP – [READ-ONLY] Página gerada com nome que segue a nomenclatura “AREA_MODULO_Componente.jsp”. - in the
original document
JSP – READ-ONLY? Página gerada com nome que segue a nomenclatura “AREA_MODULO_Componente.jsp”. - after
conversion
Can you help me resolving this?
Best regards
Bruno Neves
Hi Ludovic,
I have been trying to mount xwiki-wedav on XP as a drive but couldn't get it
to work :(
I will explain my setup to you so that you can let me know what i'm doing
wrong.
1. I have integrated xwiki-webdav into an existing XE installation so that
xwiki-webdav root is located under /xwiki/webdav
2. I have written the ROOT servlet as bellow
<code>
protected void doOptions(HttpServletRequest request, HttpServletResponse
response)
throws ServletException, IOException
{
response.setStatus(HttpServletResponse.SC_OK);
response.setHeader("MS-Author-Via", "DAV");
response.setHeader("Content-Language", "en");
response.setHeader("DAV", "1,2");
response.setHeader("Allow", "OPTIONS, GET, HEAD, PROPFIND, LOCK,
UNLOCK");
response.setHeader("Content-Length", "0");
response.flushBuffer();
}
protected void doGet(HttpServletRequest req, HttpServletResponse resp)
throws ServletException, IOException
{
resp.sendRedirect("/xwiki");
}
</code>
3. I have following two webapps on jetty (XE Installation)
xwiki-enterprise-hsqldb-1.5/webapps/root <- root webapp
xwiki-enterprise-hsqldb-1.5/webapps/xwiki <- XE
3. And when i do OPTIONS request on "/" using telnet:
[asiri@asiri-desktop xwiki-enterprise-hsqldb-1.5]$ telnet localhost 80
Trying 127.0.0.1...
Connected to localhost (127.0.0.1).
Escape character is '^]'.
OPTIONS / HTTP/1.1
Host: localhsot
HTTP/1.1 200 OK
Date: Sat, 16 Aug 2008 10:34:37 GMT
Server: Jetty/5.1.5 (Linux/2.6.22.14-72.fc6PAE i386 java/1.5.0_11
MS-Author-Via: DAV
Content-Language: en
DAV: 1,2
Allow: OPTIONS, GET, HEAD, PROPFIND, LOCK, UNLOCK
Content-Length: 0
This means that the root servlet is working.
4. I have modified the XP registry to include UseBasicAuth key and set it's
value to 1.
5. But When i try the command
net use * "http://mydavserver/xwiki/webdav/" /User:Admin admin
I get an Access Denied error on XP
6. In the back log of jetty, i get the following log message:
192.168.1.4 - - [16/ao�t/2008:10:27:54 +0000] "OPTIONS / HTTP/1.1" 200 0 14
192.168.1.4 - - [16/ao�t/2008:10:27:54 +0000] "PROPFIND /xwiki HTTP/1.1" 302
0 1
192.168.1.4 - - [16/ao�t/2008:10:27:54 +0000] "PROPFIND /xwiki/ HTTP/1.1"
405 1237 3
This means that the OPTIONS command on root is working but PROPFIND on
/xwiki/ fails (Method Not Implemented). But I can't do much about it because
that comes from the XE installation.
Please help me find the problem with this setup, I'm really stuck here. :`(
For the moment, i will start working on some other feature.
Thanks a lot.
- Asiri
Hi,
I am trying to invoke login method of
XWikiClient rpc = new SwizzleXWikiClient(url);
rpc.login("admin", "admin");
I get the following exceptions: RemoteClientException.
when i check server logs, I got information regarding version mismatch.
i am trying to open the URL: http://localhost:8080/xwiki/xmlrpc/xwiki. Here i found error: Document not found.
i am using Xwiki-core-1.3.2 version.
is it a version mismatch problem or i am missing something.
TIA
ac
Hello XWiki friends,
Considering files as being "static resources" within an installation
has the big advantage that it can be left to a serving infrastructure
that can honour all the optimized change management the web has
prepared for us (If-Modified-Since, caching at several levels, pre-
allocations thanks to Content-Length...).
I had done it for http://i2geo.net/, basically by guessing, and the
result was amazing, a huge speed-up perception factor. But now... I
need to redo this for our curriki instance.
How could I recognize a file as being subject of static serving?
- a picture file (pretty clear)
- a css or javascript that does not contain either a groovy or
velocity mark?
There are many examples of the second sort, e.g. all the gwt output
files, but I would like to be sure of them:
- is groovy-inside CSS or JavaScript ever done? (I've never seen it)
- what are "all the marks" of velocity? ( would \#[a-z]+ and \$[a-z]+
be regexps that would suffice?)
thanks in advance
paul
Hi,
Perhaps because I am too lazy to do the same job from version to version
(that is: to translate hard-coded english terms in german), I invested a bit
of time, looked through the templates in XWiki-enterprise-1.5-rc-1 and
replaced all hard-coded messages with msg.get().
ApplicationRecourses and ApplicationRecourses_de are respectively
customized.
Can I open only one Jira-issue for all changes and attach separate all
corrected .vm files (22 doc) + one document, describing all changes or
should I open 22 issues :confused: ?
If necessary, I can update the russian translation as well.
Best Regards,
Alla
--
View this message in context: http://n2.nabble.com/Replacing-hard-coded-messages-in-templates-tp534243p53…
Sent from the XWiki- Dev mailing list archive at Nabble.com.