Hi there,
Sometime we forget to add a jira issue # to an issue or we make a
mistake. Here's below a solution for editing an already committed
message.
Thanks
-Vincent
Begin forwarded message:
> From: Brett Porter <brett(a)apache.org>
> Date: February 20, 2007 12:19:20 PM CEST
> To: continuum-dev(a)maven.apache.org
> Subject: Re: svn commit: r509415 [1/3] - in /maven/continuum/
> trunk: continuum-security/src/main/java/org/apache/maven/continuum/
> security/p rofile/ continuum-webapp/src/main/java/org/apache/maven/
> continuum/web/action/ continuum-webapp/src/main/java/org/apache/m
> Reply-To: continuum-dev(a)maven.apache.org
>
> Can you do....
>
> svn propedit svn:log -r509415 --revprop
>
> And add that to the front?
>
> - Brett
>
> On 20/02/2007, at 8:38 PM, oching(a)exodus.exist.com wrote:
>
>> Hi Wendy,
>>
>> This is for CONTINUUM-1147
>>
>> Thanks,
>> Deng
>>
>>> On 2/19/07, oching(a)apache.org <oching(a)apache.org> wrote:
>>>> Author: oching
>>>> Date: Mon Feb 19 18:41:37 2007
>>>> New Revision: 509415
>>>>
>>>> URL: http://svn.apache.org/viewvc?view=rev&rev=509415
>>>> Log:
>>>> Added isAuthorized* methods in ContinuumActionSupport for checking
>>>> authorization in action classes with different permissions.
>>>> Implemented
>>>> SecureAction in some of the action classes that has a specific
>>>> permission. Also added 'modify-project-notifier' operation in
>>>> ProjectDeveloperDynamicRoleProfile.
>>>
>>> Is there a JIRA issue for this?
>>>
>>> --
>>> Wendy
>>>
___________________________________________________________________________
Yahoo! Mail r�invente le mail ! D�couvrez le nouveau Yahoo! Mail et son interface r�volutionnaire.
http://fr.mail.yahoo.com
Is there somebody who can help me with adding a button to start the
charting wizard in the WYSIWYG editor. I've never used TinyMCE before
so I don't even know where to start. Do I need to create a plugin just
to add a button ?
http://jira.xwiki.org/jira/browse/XWIKI-872
Regards,
Catalin
---------- Forwarded message ----------
From: Catalin Hritcu <catalin.hritcu(a)gmail.com>
Date: Feb 16, 2007 8:28 PM
Subject: XWIKI-872: Adding a button to start the charting wizard in
the WYSIWYG editor
To: Phung Nam <phunghainam(a)xwiki.com>
Hi Nam,
Could you help me with this task:
http://jira.xwiki.org/jira/browse/XWIKI-872
I've never mangled with TinyMCE before so I don't even know where to start.
Thanks,
Catalin
Hi,
I'd like to propose to vote Catalin as a new XWiki committer. Catalin
has been participating for a long time now (helped on the P2P wiki,
on the charting plugin, etc). He's interested in helping us more
(even though he says he doesn't have lots of time which we all
understand. Nevertheless he really believes in XWiki and wants to
participate on the long run).
Let him apply his own patches!
Here's my +1
Thanks
-Vincent
Hi,
I'd like to clean a bit the XWikiHibernateVersioningStore class but
I'd like to confirm my changes as I don't want to break anything.
There are several methods like this one:
public void updateXWikiDocArchive(XWikiDocument doc, String
text, boolean bTransaction, XWikiContext context) throws
XWikiException {
try {
if (bTransaction) {
checkHibernate(context);
bTransaction = beginTransaction(false, context);
}
Session session = getSession(context);
XWikiDocumentArchive archivedoc = getXWikiDocumentArchive
(doc, context);
archivedoc.updateArchive(doc.getFullName(), text);
saveXWikiDocArchive(archivedoc, bTransaction, context);
if (bTransaction) {
endTransaction(context, true, false);
}
} catch (Exception e) {
Object[] args = { doc.getFullName() };
throw new XWikiException
( XWikiException.MODULE_XWIKI_STORE,
XWikiException.ERROR_XWIKI_STORE_HIBERNATE_SAVING_OBJECT,
"Exception while updating archive {0}", e, args);
} finally {
try {
if (bTransaction)
endTransaction(context, false, false);
} catch (Exception e) {}
}
}
1) Why is checkHibernate done only when the operation is done in a
transaction?
2) Why is getSession called as the session object is not used?
3) I think the endTransaction is called twice...
4) Shouldn't we log something if the endTransaction fails?
Thus I'd like to:
a) move the checkHibernate outside of the if(bTransaction)
b) remove getSession call
c) remove the first endTransaction and leave the one in the finally
clause
d) add a warn log if the end transaction fail
ok with everyone?
Thanks
-Vincent
___________________________________________________________________________
Yahoo! Mail r�invente le mail ! D�couvrez le nouveau Yahoo! Mail et son interface r�volutionnaire.
http://fr.mail.yahoo.com
Hi,
Right now our policy is to set the "fix for" field for all issues.
I'd like to propose to exclude issues that are not resolved (ie
"won't fix", etc) so that they don't appear in the JIRA release
notes. JIRA is missing the ability to exclude them from the release
notes so this would be a good way of doing that.
Thanks
-Vincent
___________________________________________________________________________
Yahoo! Mail r�invente le mail ! D�couvrez le nouveau Yahoo! Mail et son interface r�volutionnaire.
http://fr.mail.yahoo.com
Hi,
Just a heads up to let you know that I have committed a Logging
Aspect in our source tree (in core/src/aspect). For more information
see http://jira.xwiki.org/jira/browse/XWIKI-897 and http://
www.xwiki.org/xwiki/bin/view/Community/
Debugging#HGeneratingadebugversionofXWiki
This LogAspect automatically intercepts all method calls and logs
them with their parameters.
For related information on this see http://blogs.codehaus.org/people/
vmassol/archives/000877_logifier.html
I personally find this very cool. I hope you do too ;-)
Thanks
-Vincent
___________________________________________________________________________
Yahoo! Mail r�invente le mail ! D�couvrez le nouveau Yahoo! Mail et son interface r�volutionnaire.
http://fr.mail.yahoo.com
Hi Sergiu,
I think we need:
1) to decide if we want this in the public API (personally I'm not
sure and I'm actually more against it right now, reason being that
Util doesn't have a strong API).
2) we definitely need a JIRA issue for this (it's not referenced
below so I guess there's no JIRA issue for it).
Thanks
-Vincent
On Feb 19, 2007, at 2:52 PM, Sergiu Dumitriu wrote:
> Author: sdumitriu
> Date: 2007-02-19 14:52:55 +0100 (Mon, 19 Feb 2007)
> New Revision: 2197
>
> Modified:
> xwiki/trunk/core/src/main/java/com/xpn/xwiki/api/Context.java
> Log:
> Add getUtil to the Context API
> (is there a reason why this wasn't in there?)
>
>
> Modified: xwiki/trunk/core/src/main/java/com/xpn/xwiki/api/
> Context.java
> ===================================================================
> --- xwiki/trunk/core/src/main/java/com/xpn/xwiki/api/Context.java
> 2007-02-19 13:47:19 UTC (rev 2196)
> +++ xwiki/trunk/core/src/main/java/com/xpn/xwiki/api/Context.java
> 2007-02-19 13:52:55 UTC (rev 2197)
> @@ -23,6 +23,7 @@
>
> import com.xpn.xwiki.XWikiContext;
> import com.xpn.xwiki.doc.XWikiDocument;
> +import com.xpn.xwiki.util.Util;
> import com.xpn.xwiki.validation.XWikiValidationStatus;
> import com.xpn.xwiki.web.XWikiRequest;
> import com.xpn.xwiki.web.XWikiResponse;
> @@ -274,4 +275,8 @@
> {
> return getXWikiContext().getDisplayedFields();
> }
> + public Util getUtil()
> + {
> + return context.getUtil();
> + }
> }
>
>
>
> --
> You receive this message as a subscriber of the xwiki-
> commits(a)objectweb.org mailing list.
> To unsubscribe: mailto:xwiki-commits-unsubscribe@objectweb.org
> For general help: mailto:sympa@objectweb.org?subject=help
> ObjectWeb mailing lists service home page: http://www.objectweb.org/
> wws
___________________________________________________________________________
Yahoo! Mail r�invente le mail ! D�couvrez le nouveau Yahoo! Mail et son interface r�volutionnaire.
http://fr.mail.yahoo.com
Hi,
is the Xwki already available as JSR-168 portlet?
Best regards
Haymo Meran
--
__________________________________________________________________
Haymo Meran email. h.meran(a)gentics.com
Chief Applications Engineer mobile. +43 699 126 775 13
Gentics Software GmbH tel. +43 1 710 99 04 0
Barmherzigengasse 17/5/2 fax. +43 1 710 99 04 4
1030 Vienna, Austria web. http://www.gentics.com
Der Inhalt dieser E-Mail ist eine persönliche und vertrauliche
Information und nur für den Gebrauch des oben angeführten Adressaten
bestimmt. Sollten Sie nicht der vorgesehene Empfänger sein, ersuchen
wir Sie höflich, sich sofort mit uns ins Einvernehmen zu setzen
und die E-Mail zu vernichten.
Für elektronisch übermittelte Auskünfte und Ratschläge, die nicht
durch nachfolgende schriftliche Ausfertigung, welche von einem
zeichnungsberechtigten Vertreter unserer Gesellschaft autorisiert
wurde, bestätigt werden, wird grundsätzlich keine Haftung übernommen.
Gänzliche Virenfreiheit kann niemals garantiert werden und eine Haftung
findet hiefür gleichfalls nicht statt. Es gilt österreichisches Recht
unter Ausschluss allfälliger Kollisions- oder Verweisungsnormen.
Gerichtsstand ist Wien-Innere Stadt.