Hi,
After creating a new user i want to send a mail to the particular user to
notify the registration.
Can anyone help me to do this. I think this one should be handled in server
side.
I am dump in server side.
--
Prathap
Hi fabio,
I have made the necessary modifications to the sample plugin and committed
to
the sandbox as org.xwiki.eclipse.editor.I have only refactor the code .
No additional functionality was added to the previous plugin I have send to
you by mail
I'll start looking at the vinsents parser as you requested.
Is there any news from Venkatesh also
cheers
-- Malaka Ekanayake
CSE UOM
The XWiki development team is pleased to announce the release of XWiki
Enterprise 1.5 Milestone 2.
Go grab it at http://www.xwiki.org/xwiki/bin/view/Main/Download
Last milestone of the XWiki Enterprise 1.5 version.
Main changes:
* [Experimental] New ability to set the wiki syntax used in a page
(Confluence,MediaWiki,TWiki,JSPWiki,Creole), thanks to the new
Rendering Engine
* Brand new Administration Application (see http://tinyurl.com/4qym7w)
* Universal Edit button support (see http://universaleditbutton.org/)
* Reduced execution time of Selenium tests (from 12-15 minutes to 7 minutes)
* An administrator can modify a user profile or password when
visiting a user profile page
* The copy page feature is now available from the top menu (Actions > Copy)
* XWiki properties names are now translatable
* new renamePage method in the XML-RPC API
* Slightly modified header
* New Croatian translation
For more information see the Release notes at:
http://www.xwiki.org/xwiki/bin/view/Main/ReleaseNotesXWikiEnterprise15M2
Note that the general goals of XE 1.5 are :
* More bug fixes
* Better performance
* More automated tests
* Overhaul of the Administration
Thanks,
The XWiki dev team
Ok fine thanks
--
Prathap
On Wed, Jun 25, 2008 at 4:57 PM, Evelina Slatineanu <
evelina.slatineanu(a)xwiki.com> wrote:
> Hi,
>
> Yes, this is a known issue that will be fixed as soon as possible.
>
> Thanks,
> Evelina
>
> -----Original Message-----
> From: devs-bounces(a)xwiki.org [mailto:devs-bounces@xwiki.org] On Behalf Of
> Prathap Pandian
> Sent: Wednesday, June 25, 2008 1:57 PM
> To: XWiki Developers
> Subject: [xwiki-devs] Registration Alert
>
> Hi,
>
> How to restrict already existing user while registering. Currently its not
> showing
> any alert(information) while adding the existing user from the
> administration page.
>
> --
> Prathap
> _______________________________________________
> devs mailing list
> devs(a)xwiki.org
> http://lists.xwiki.org/mailman/listinfo/devs
>
>
> __________ Information from ESET NOD32 Antivirus, version of virus
> signature
> database 3216 (20080625) __________
>
> The message was checked by ESET NOD32 Antivirus.
>
> http://www.eset.com
>
>
>
> __________ Information from ESET NOD32 Antivirus, version of virus
> signature
> database 3216 (20080625) __________
>
> The message was checked by ESET NOD32 Antivirus.
>
> http://www.eset.com
>
>
> _______________________________________________
> devs mailing list
> devs(a)xwiki.org
> http://lists.xwiki.org/mailman/listinfo/devs
>
Sergiu,
I think it would be beneficial to document below that the filters must
be run on this order and explain why. WDYT?
Thanks
-Vincent
On Jun 24, 2008, at 2:00 PM, sdumitriu (SVN) wrote:
> Author: sdumitriu
> Date: 2008-06-24 14:00:10 +0200 (Tue, 24 Jun 2008)
> New Revision: 10662
>
> Modified:
> xwiki-platform/web/trunk/standard/src/main/webapp/WEB-INF/web.xml
> Log:
> XWIKI-891 and XWIKI-1771: Fix regression caused by wrong filter
> order (non-ASCII chars in ISO-8859-1 are lost).
>
>
> Modified: xwiki-platform/web/trunk/standard/src/main/webapp/WEB-INF/
> web.xml
> ===================================================================
> --- xwiki-platform/web/trunk/standard/src/main/webapp/WEB-INF/
> web.xml 2008-06-24 10:52:43 UTC (rev 10661)
> +++ xwiki-platform/web/trunk/standard/src/main/webapp/WEB-INF/
> web.xml 2008-06-24 12:00:10 UTC (rev 10662)
> @@ -9,15 +9,6 @@
> <display-name>xwiki</display-name>
> <description>XWiki Application</description>
>
> - <!-- A filter that allows requests to be saved and reused later.
> For example when the current request contains an expired
> - authentication token, and the authorization module redirects
> to the login page, all the information sent by the
> - client would be lost; this filter allows to save all that
> information, and after a successful login, injects the
> - saved data in the new request. -->
> - <filter>
> - <filter-name>RequestRestorer</filter-name>
> - <filter-class>com.xpn.xwiki.web.SavedRequestRestorerFilter</
> filter-class>
> - </filter>
> -
> <!-- Filter that sets a custom encoding to all requests, since
> usually clients don't specificy
> the encoding used for submitting the request, so by default
> containers fall back to the
> encoding globally configured in their settings. This allows
> XWiki to use a custom encoding,
> @@ -41,12 +32,21 @@
> </init-param>
> </filter>
>
> + <!-- A filter that allows requests to be saved and reused later.
> For example when the current request contains an expired
> + authentication token, and the authorization module redirects
> to the login page, all the information sent by the
> + client would be lost; this filter allows to save all that
> information, and after a successful login, injects the
> + saved data in the new request. -->
> + <filter>
> + <filter-name>RequestRestorer</filter-name>
> + <filter-class>com.xpn.xwiki.web.SavedRequestRestorerFilter</
> filter-class>
> + </filter>
> +
> <filter-mapping>
> - <filter-name>RequestRestorer</filter-name>
> + <filter-name>Set Character Encoding</filter-name>
> <url-pattern>/*</url-pattern>
> </filter-mapping>
> <filter-mapping>
> - <filter-name>Set Character Encoding</filter-name>
> + <filter-name>RequestRestorer</filter-name>
> <url-pattern>/*</url-pattern>
> </filter-mapping>
hi Vincent/Fabio,
*According to my knowledge partitions should not be overlap.But the XDOM
model is nested.
I think this might be a problem. The sample plugin I have made is also
base on partitioning the entire document to non overlapping reagents so each
partition can be then subjected to syntax coloring.
*I tried to use the existing api(rule bale partitions) to nested syntax as
well .But it turned out difficile
*I need help on this.
*WDUT ?
Thanks
-Malaka
--Malaka Ekanayake
CSE UOM
I configured my Chinese Wiki, but in the wysiwyg editor I can only select
some English font-family. What can I do if I want to add some Chinese
font-families? Should I modify some .js files in tinymce.
Please anyone knows that give me some suggestion, thanks a lot.
--
View this message in context: http://www.nabble.com/How-to-add-new-font-family-to-XWiki-tinymce-tp1805443…
Sent from the XWiki- Dev mailing list archive at Nabble.com.