Hi,
I'm struggling with the way of setting values for properties using forms. I think I understand how to use displayEdit (some minor customization of calendar application is up and running here!) but I'm not able to set a value for another properties "programmatically". Something that simple as setting the value of one property with the current user.
Please, could you point me to some example?
Thanks for your help!
Ricardo
--
Ricardo Rodríguez
Research Management and Promotion Technician
Technical Secretariat
Health Research Institute of Santiago de Compostela (IDIS)
http://www.idisantiago.es
Nota: A información contida nesta mensaxe e os seus posibles documentos adxuntos é privada e confidencial e está dirixida únicamente ó seu destinatario/a. Se vostede non é o/a destinatario/a orixinal desta mensaxe, por favor elimínea. A distribución ou copia desta mensaxe non está autorizada.
Nota: La información contenida en este mensaje y sus posibles documentos adjuntos es privada y confidencial y está dirigida únicamente a su destinatario/a. Si usted no es el/la destinatario/a original de este mensaje, por favor elimínelo. La distribución o copia de este mensaje no está autorizada.
See more languages: http://www.sergas.es/aviso_confidencialidad.htm
Hi, Sergiu Dumitriu
I tried your way like this:
{{velocity output='false'}}
$response.setContentType('application/xml')
#set ($out = $response.getOutputStream())
#set ($s = "<?xml version='1.0' encoding='ISO-8859-1'?><test>test
done</test>")
$out.write($s.getBytes('ISO-8859-1'))
{{/velocity}}
But this still has the same parsing error:
XML Parsing Error: no element found
Location:
http://localhost:8080/xwikim/bin/get/Geo/hellotest?outputSyntax=plain
Line Number 1, Column 1:
^
I tried both from the ajax call and the link:
http://localhost:8080/xwikim/bin/get/Main/hellotest?outputSyntax=plain
and I got the same error.
Any more clue?
Thanks for your help.
Dave
On Sat, Mar 24, 2012 at 10:41 AM, Sergiu Dumitriu <sergiu(a)xwiki.com> wrote:
> On 03/24/2012 09:33 AM, du du wrote:
>
>> Hi, Thomas,
>>
>> Thanks for your response, I changed to this url:
>>
>> http://localhost:8080/xwikim/**bin/get/Main/hellotest?**
>> outputSyntax=plain<http://localhost:8080/xwikim/bin/get/Main/hellotest?outputSyntax=plain>
>>
>> But I got responseXML containing this error:
>>
>> XML Parsing Error: no element found Location:
>> http://localhost:8080/xwikim/**bin/get/Main/hellotest?**
>> outputSyntax=plain<http://localhost:8080/xwikim/bin/get/Main/hellotest?outputSyntax=plain>Line
>> Number 1, Column 1:
>>
>> then I changed to this velocity code:
>>
>> {{velocity output='false'}}
>> $response.setContentType('**application/xml')
>> #set ($out = $response.getOutputStream())
>>
>> $out.write("<?xml version='1.0' encoding='ISO-8859-1'?><test>**test
>> done</test>")
>>
>
> $out is an OutputStream, which doesn't have a write(String) method. You
> must give it a byte[] argument, so this works:
>
> #set ($s = "<?xml version='1.0' encoding='ISO-8859-1'?><test>**test
> done</test>")
> $out.write($s.getBytes('ISO-**8859-1'))
>
>
> $out.flush()
>> ##$out.close()
>> {{/velocity}}
>>
>> Still the same parsing error, any clue?
>>
>> Thanks
>>
>> Dave
>>
>>
>>
>> On Sat, Mar 24, 2012 at 4:38 AM, Thomas Mortagne
>> <thomas.mortagne(a)xwiki.com>**wrote:
>>
>> On Sat, Mar 24, 2012 at 3:23 AM, du du<dddu88(a)gmail.com> wrote:
>>>
>>>> Hi, all,
>>>>
>>>> I followed this link:
>>>> http://platform.xwiki.org/**xwiki/bin/DevGuide/**WritingComponents<http://platform.xwiki.org/xwiki/bin/DevGuide/WritingComponents>
>>>> created a component which return xml data.
>>>> Also I created a hellotest page inside the main space, and wrote the
>>>> following velocity code:
>>>>
>>>> {{velocity output='false'}}
>>>> $response.setContentType('**application/xml')
>>>>
>>>> #set ($xmldata= $services.hello.getHelloXML())
>>>> $xmldata
>>>>
>>>> ##$context.setFinished(true)
>>>> #set ($out = $response.getOutputStream())
>>>> $out.write($xmldata)
>>>> $out.flush()
>>>>
>>>> {{/velocity}}
>>>>
>>>> I tested this code, I can get the xml data, now I use this ajax code to
>>>> retrieve the xml data:
>>>>
>>>> var xmlhttp = GetXmlHttp();
>>>> if (xmlhttp) {
>>>> xmlhttp.open("GET", url, true);
>>>> xmlhttp.onreadystatechange = function () {
>>>> if (xmlhttp.readyState == 4) {
>>>> xmlResult = xmlhttp.responseText;
>>>> ......
>>>> xmlhttp.send(null);
>>>> }
>>>> The url I used is:
>>>> url = '
>>>> http://localhost:8080/xwikim/**bin/view/Main/hellotest?**
>>>> outputSyntax=plain<http://localhost:8080/xwikim/bin/view/Main/hellotest?outputSyntax=plain>
>>>> '
>>>>
>>>> when I debug with firefox to see the data inside xmlhttp either
>>>> responseText or response, they were all a html document for the
>>>> hellotest
>>>> with the tags like body, div, etc, it is basically helltest.html file if
>>>> you view the source code of this html page. I tried to change the output
>>>>
>>> to
>>>
>>>> true, the result is the same.
>>>>
>>>
>>> That's because with this URL you get UI around your content (whatever
>>> is the syntax of your content), for this kind of use case you should
>>> use /get/ action instead of /view/.
>>>
>>>
>>>> Question: how can I get the xml data? where am I wrong?
>>>>
>>>> Thanks very much in advance.
>>>>
>>>>
>
> --
> Sergiu Dumitriu
> http://purl.org/net/sergiu/
> ______________________________**_________________
> devs mailing list
> devs(a)xwiki.org
> http://lists.xwiki.org/**mailman/listinfo/devs<http://lists.xwiki.org/mailman/listinfo/devs>
>
Hi, all,
I followed this link:
http://platform.xwiki.org/xwiki/bin/DevGuide/WritingComponents
created a component which return xml data.
Also I created a hellotest page inside the main space, and wrote the
following velocity code:
{{velocity output='false'}}
$response.setContentType('application/xml')
#set ($xmldata= $services.hello.getHelloXML())
$xmldata
##$context.setFinished(true)
#set ($out = $response.getOutputStream())
$out.write($xmldata)
$out.flush()
{{/velocity}}
I tested this code, I can get the xml data, now I use this ajax code to
retrieve the xml data:
var xmlhttp = GetXmlHttp();
if (xmlhttp) {
xmlhttp.open("GET", url, true);
xmlhttp.onreadystatechange = function () {
if (xmlhttp.readyState == 4) {
xmlResult = xmlhttp.responseText;
......
xmlhttp.send(null);
}
The url I used is:
url = '
http://localhost:8080/xwikim/bin/view/Main/hellotest?outputSyntax=plain'
when I debug with firefox to see the data inside xmlhttp either
responseText or response, they were all a html document for the hellotest
with the tags like body, div, etc, it is basically helltest.html file if
you view the source code of this html page. I tried to change the output to
true, the result is the same.
Question: how can I get the xml data? where am I wrong?
Thanks very much in advance.
Dave
Hello XWiki experts,
how do you debug:
org.xwiki.component.manager.ComponentLookupException: Can't find descriptor for the component [role = [org.xwiki.logging.LoggerManager] hint = [default]]
It seems to prevent startup of my XWiki.
thanks in advance
Paul
Yeah, that 'view' and 'allow' thing was an optionen before... But this doesn't fixes the issue...
Example: Person a is a registered writer... he should write some pages and might edit them later... but noone else should be able to edit or see that page until its released by a moderator for the public viewers and other registered members...
I think this will be a case for a own extension if xwiki fills our other needs ... but thx anyway :)
--
Kevin Böhme <k.boehme(a)gci.de>
Handelsregister Dortmund HRB 7037
Geschäftsführer: Holger Kluth
> -----Ursprüngliche Nachricht-----
> Von: Edo Beutler mailto:ebeutler@synventis.com
> Gesendet: 23.03.2012 16:28:49
> An: XWiki Users mailto:users@xwiki.org
> Betreff: Re: [xwiki-users] Moderation / Comments & Pages
>
> Hi Kevin
>
> For pages you just have to set the rights accordingly: 'allow' 'view'
> and 'edit' for moderator and author. This implies every one else can't
> view the page.
> I think for comments it might be a bit trickier since they are saved
> in an object on the commented page. If nobody knows about an extention
> for that you might have to write one ;-)
>
> Hope this helps
> Edo
>
> On Fri, Mar 23, 2012 at 9:17 AM, Kevin Böhme <k.boehme(a)gci.de> wrote:
> > Hi list,
> >
> > we're taking a look at xwiki right now and aren't able to find a way to moderate comments and new pages... Is there any module that makes this possible?
> >
> > The goal: Let users create comments and pages and just show them if the page is confirmed... BUT the author should be able to see this page and make more edits while the page isn't free to view by third party...
> >
> > Any ideas?
> >
> > --
> > Kevin Böhme <k.boehme(a)gci.de>
> > _______________________________________________
> > users mailing list
> > users(a)xwiki.org
> > http://lists.xwiki.org/mailman/listinfo/users
> _______________________________________________
> users mailing list
> users(a)xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users
>
Hi list,
we're taking a look at xwiki right now and aren't able to find a way to moderate comments and new pages... Is there any module that makes this possible?
The goal: Let users create comments and pages and just show them if the page is confirmed... BUT the author should be able to see this page and make more edits while the page isn't free to view by third party...
Any ideas?
--
Kevin Böhme <k.boehme(a)gci.de>
A message from Amsterdam, the Netherlands :)
JAMSTERDAM is a irregular invite-only jamming session held in Amsterdam,
the Netherlands. The group's origin lies with CouchSurfing and now it's
growing organically based on member introductions.
Now that we've completed our first 10 jam sessions successfully we are
looking for a proper wiki to collaborate on as a group and store bits of
knowledge about jamming along the way.
myxwiki username: andrew AT jamsterdam DT org
desired name: jamsterdam.myxwiki.org
It would really help us if we could install a plugin such as
http://extensions.xwiki.org/xwiki/bin/view/Extension/Social+Login but I'll
figure that out if possible at a later date :)
Thank you very much for your services, we hope you will accept us!!
Hi,
I'd like to have a wiki instance created for personal education, product
evaluation and demonstration purposes...
I registered with the username 'alcibiade' and would like the wiki instance
registered with domain name 'alcibiade'
Best regards,
--
Yannick Kirschhoffer
Software Architect
e-Mail: alcibiade(a)alcibiade.org
Twitter: @Kirschhoffer
Blog: http://www.alcibiade.org/
Google Talk: yannick.kirschhoffer(a)gmail.com
SourceForge: https://sourceforge.net/users/alcibiadefr
Buy my posters online at http://www.zazzle.fr/alcibiade
---------- Message transféré ----------
De : Yannick Kirschhoffer <alcibiade(a)alcibiade.org>
Date : 21 mars 2012 10:15
Objet : [myxwiki] new wiki request
À : users(a)xwiki.org
Bonjour,
J'aimerais une instance de wiki pour me permettre de me former sur le
fonctionnement de XWiki après la présentation d'hier soir...
Merci !
--
Yannick Kirschhoffer
Software Architect
e-Mail: alcibiade(a)alcibiade.org
Twitter: @Kirschhoffer
Blog: http://www.alcibiade.org/
Google Talk: yannick.kirschhoffer(a)gmail.com
SourceForge: https://sourceforge.net/users/alcibiadefr
Buy my posters online at http://www.zazzle.fr/alcibiade
Hello,
I'm trying to use the lightbox.js to provide a nice UI for creating new
custom pages/objects.
Note : it's not the Lightbox application or macro, but the javascript from
lightbox.js ...
Idea is to provide a page with following use-case :
- user clicks on "create" button
- a pop-up (new Lightbox(a,b,c)) is opened
- content of this Lightbox is a new page in inline edit mode, on newly
created object fields
- user should be able to save or cancel (something like user registration)
What I don't know is what to provide to Lightbox parameters in order to
achieve that.
For the first url, I've given something like
'/xwiki/bin/edit/Space/MyNewPage?editor=inline&template=MyTemplate&sheet=MySheet&xpage=plain'.
But in this case, the modal pop-up contains the fields in inline mode, but
without the buttons to save/cancel/preview/...
Another question is what to provide as saveurl and redirecturl (2 last
parameters of Lightbox) ?
Thanks for help,
Jeremie
--
View this message in context: http://xwiki.475771.n2.nabble.com/Using-Lightbox-to-create-new-page-objet-t…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi XWiki users,
The XWiki projects needs your help. We'd like to improve the documentation on xwiki.org but we need your help to tell us what should be improved in your opinion.
To do so we've created a JIRA project for listing stuff to do:
http://jira.xwiki.org/browse/XWIKIORG
It would be a great help if you could register there and create JIRA issues for anything you think should be improved on xwiki.org.
Please try to create very specific and focused issues so that they are actionable easily (for example an issue saying "Improve xwiki.org documentation" would not help much ;) but one that would say for example: "Provide documentation on how to use the DBListClass" is useful).
Thanks a lot for your help!
-Vincent on behalf of the XWiki Dev Team
I went thru XWiki Classes, Objects, and Properties topic given at
http://platform.xwiki.org/xwiki/bin/view/DevGuide/DataModel. I understand
the concept
of Classes, Objects, and Properties as i am familiar with java. Here is the
statement given at the same link
*This area explains XWiki's data model of Classes, Properties, and Objects
for those users who want to build applications primarily at the
presentation level.
(which makes it second generation wiki). It will help you understand how
you can achieve significant features by programming at this level alone.*
Basically i want to understand how i can capitalize the concept of Classes,
Properties, and Object at presentation level. To understand this throrouly
i created
two scenarios:-
First i created the space MySpace and created two pages i.e page1 under
this space. here are th scenarios
scenario1:- i edit the class MySpace.page1 and added a property password
ang gave some values for field Name, Pretty Name,Custom Display etc and
saved it.
*But i did not see any change at presentation level of MySpace.page1.*
scenario1:- Similarily i edit the objects for MySpace.page1 and added a
class mail ang gave some values for field Subject,Language, Text,HTML
etc and saved it.
*But again i did not see any change at presentation level of MySpace.page1.*
*It would be great if somebody can explain with small example what i can
achieve with edit the class and editing the object.* *For Example :-Like
what i can expect after edition in my scenarios.*
*I think its a vey useful feature but somehow it is not documented in
detail at that link or may be i am not able to understand. Looking for your
expert somments.*
**
**
Thanks
Hi
What is the best practice to extend AppWithinMInutes created sheets to manage the following controls;
- UI Control for URL's, i've defined it as a short text field, And I would like to make it easy for the user to enter a valid url or link to XWiki page
- UI Control for Email addresses (same as above)
Currently the appWithinMinutes generates:
; <label for="CdLSAssociations.CdLSAssociationsClass_0_website">$doc.displayPrettyName('website', false, false)</label>##
(% class="xHint" %)$msg.get('')
: $doc.display('website')
Gerritjan
Hi!
I've found this looking for the current state of the calendar application...
http://incubator.myxwiki.org/xwiki/bin/view/Drafts/CalendarApplication
As far as I see, the features desscribed there are far ahead from the current Calendar Application available here...
http://extensions.xwiki.org/xwiki/bin/view/Extension/Calendar+Application
Please, is there any new draft/beto release of the new application described in the Incubator site? Has it been already developed? Is it just an idea?
Several of the features described there will extremelly welcome by our research team!
Any new will be welcome! Thanks!
Ricardo
--
Ricardo Rodríguez
Research Management and Promotion Technician
Technical Secretariat
Health Research Institute of Santiago de Compostela (IDIS)
http://www.idisantiago.es
Nota: A información contida nesta mensaxe e os seus posibles documentos adxuntos é privada e confidencial e está dirixida únicamente ó seu destinatario/a. Se vostede non é o/a destinatario/a orixinal desta mensaxe, por favor elimínea. A distribución ou copia desta mensaxe non está autorizada.
Nota: La información contenida en este mensaje y sus posibles documentos adjuntos es privada y confidencial y está dirigida únicamente a su destinatario/a. Si usted no es el/la destinatario/a original de este mensaje, por favor elimínelo. La distribución o copia de este mensaje no está autorizada.
See more languages: http://www.sergas.es/aviso_confidencialidad.htm
I have XAR file of 72MB . When i Import it thru XWI UI i get java heap out
of memory error. I have mentioened the value of JAVA_OPTS
as -Xms1024m -Xmx1024m. My hardware specification is 32 bit windows
operating system and 4 GB RAM. and using the tomcat as webserver.
If i increase the value of JAVA_OPTS to -Xms1536m -Xmx1536m, tomcat does
not even start(Probably reason is 32 bit operating system and
4 GB RAM). I can not increase change the server configuration
somehow.How should i go about resolving this issue?
The only thing i can take help for now is do all the set up stuff on 8GB
machine and do restore of database on 4GB machine.
But again i am worried with some repurcussion of this approach i.e if
there is a deltion/rename of some column etc ,
on new xwiki version an. then it will be hard time for me to restore the
databse.
Looking for quick response. i am sure you guys also must had faced this
issue in past. Kindly share your experiences
For your information same xar file gets imported on 64 bit operating
system and 8GB RAM but how should i successfully resolve
import of 72MB XAR file on 32 bit OS and 4 GB RAM? i can not upgrade this
client machine due to some restrictions.
I had the same problem and managed to make it work ...
But in my case I think it was the plugin badly declared (I had forgotten the
'\'), seems not to be the case for you. Maybe you could try to reinstall the
ratings application extension from the extension manager now that the plugin
is installed.
--
View this message in context: http://xwiki.475771.n2.nabble.com/Ratings-Application-not-working-tp7379389…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Which version of struts XWiki enerprise web war 3.5 supports?
I see this:
xwiki-enterprise-web-3.5-3.5.war/WEB-INF/lib/struts-1.2.9.jar
and also this in the strusts.tld
<!DOCTYPE taglib
PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.1//EN"
"http://java.sun.com/j2ee/dtds/web-jsptaglibrary_1_1.dtd">
<taglib>
<!-- ============== Tag Library Description Elements ============= -->
<tlibversion>1.0</tlibversion>
<jspversion>1.1</jspversion>
<shortname>STRUTSFrameworkTagLibrary</shortname>
<uri>http://jakarta.apache.org/taglibs/struts-1.0</uri>
Is this OK?
BTW I have not been able to deply on
Geronimo
Version 2.2.1
Build 2010.12.03-17:56:38.228+0800
Thank you.
Mau
Hi All,
i for got my 11 digit admin password. Kindly let me know how can i recover
it ? Also want to know is there a way i can direct get from database in
decrypted form.
Thanks.
I am out of the office until 03/21/2012.
I will not have access to email, but will get back to you when I return.
Note: This is an automated response to your message "users Digest, Vol 56,
Issue 42" sent on 03/20/2012 0:37:53.
This is the only notification you will receive while this person is away.
Hello xwiki experts,
in my GoogleCheckout plugin, I am receiving the service notifications fine.
However sometimes saving the objects that indicate the order statements time out because saving the document takes a bit too long.
I could launch a background thread to save it but isn't my xwiki-context somewhat going to evaporate once the request is closed?
thanks in advance
Paul
Hi.
I have a problem with hibernate versioning of non-ascii characters. I'm
following all recommendations from
http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Encoding (database
Postgresql, DB's locale pl_PL.UTF-8), but it does not work - there is
always a problem with viewing old versions (see
http://jira.xwiki.org/browse/XWIKI-7539).
I'm wondering, if it is possible, that nobody else has that problem.
I've tried with xwiki 3.4, xwiki 3.5, even with xwiki 3.3 launched with
empty postgresql database versioning does not work correct.
The only properly working installation is my old, many times upgraded
xwiki database, where in xwr_patch column of xwikircs table are stored
patches for previous doc versions. All installations where xwr_patch
contains number of large object have problems with versioning.
Any help will be appreciated.
R.
Please, Ralf, have you installed Firebug? It is a great and indispensable piece of software while working, among other things, with layouts!!!!
What is the element you are trying to customize?
Cheers!
--
Ricardo Rodríguez
Research Management and Promotion Technician
Technical Secretariat
Health Research Institute of Santiago de Compostela (IDIS)
http://www.idisantiago.es
________________________________________
From: users-bounces(a)xwiki.org [users-bounces(a)xwiki.org] On Behalf Of Ralf Quebbemann [ralfq(a)gmx.de]
Sent: 17 March 2012 11:26
To: XWiki Users; users(a)xwiki.org
Subject: Re: [xwiki-users] How to change the default font size of the colibri skin
Hi Ricardo,
thanks for your answer. I already checked The admin skin guide but the extension is new to me. I will give it a try.
Also i already tried changes to the css but i cant seem to find The correct Element so far.
Bye
ralf
--
Diese Nachricht wurde von meinem Android-Mobiltelefon mit K-9 Mail gesendet.
Ricardo.Julio.Rodriguez.Fernandez(a)sergas.es schrieb:
Hi Ralf, please, see below,
_____________________________________________
From: users-bounces(a)xwiki.org [users-bounces(a)xwiki.org] On Behalf Of qupera [ralfq(a)gmx.de]
Sent: 17 March 2012 10:42
To: users(a)xwiki.org
Subject: Re: [xwiki-users] How to change the default font size of the colibri skin
> Hi there,
>
> hm, no answer yet. Is it that difficult? Or is the question somewhat
> unclear? Did nobody ever change the font or the font size of a skin?
>
> Or is it so easy and I am too dumb to see it?
>
> Do I have to provide more informations?
>
> Please let me know and thanks in advance
>
> Ralf
To the best of my knowledge there is not a concept like "default font or font size of a skin". XWiki relays on a reach CSS based system to customized any aspect of the layout. Unfortunately I've been far from XWiki development for a while and can't give you a clear insight about this issue, but I think I can provide some hints. Please, check this out...
1. Use this link as a reference for any question posted here: http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Skins
2. Install and extensively use some tool like Firebug for Firefox. It easily allow you test the effect of CSS changes and track it to the required files in XWiki skins files.
3. Check and understand this interesting feature http://extensions.xwiki.org/xwiki/bin/view/Extension/Skin+Extension+Plugin
Thus, the change of the font or font size depends somehow on what component we are speaking about. Others will correct me if there is something like a "roor level" to define font styles within XWiki!
I'm sure list users will do their best/our best to answer any more precise question
HTH!!!
Ricardo
--
View this message in context: http://xwiki.475771.n2.nabble.com/How-to-change-the-default-font-size-of-th…
Sent from the XWiki- Users mailing list archive at Nabble.com.
_____________________________________________
users mailing list
users(a)xwiki.org
http://lists.xwiki.org/mailman/listinfo/users
Nota: A informaci?n contida nesta mensaxe e os seus posibles documentos adxuntos ? privada e confidencial e est? dirixida ?nicamente ? seu destinatario/a. Se vostede non ? o/a destinatario/a orixinal desta mensaxe, por favor elim?nea. A distribuci?n ou copia desta mensaxe non est? autorizada.
Nota: La informaci?n contenida en este mensaje y sus posibles documentos adjuntos es privada y confidencial y est? dirigida ?nicamente a su destinatario/a. Si usted no es el/la destinatario/a original de este mensaje, por favor elim?nelo. La distribuci?n o copia de este mensaje no est? autorizada.
See more languages: http://www.sergas.es/aviso_confidencialidad.htm
_____________________________________________
users mailing list
users(a)xwiki.org
http://lists.xwiki.org/mailman/listinfo/users
_______________________________________________
users mailing list
users(a)xwiki.org
http://lists.xwiki.org/mailman/listinfo/users
Nota: A información contida nesta mensaxe e os seus posibles documentos adxuntos é privada e confidencial e está dirixida únicamente ó seu destinatario/a. Se vostede non é o/a destinatario/a orixinal desta mensaxe, por favor elimínea. A distribución ou copia desta mensaxe non está autorizada.
Nota: La información contenida en este mensaje y sus posibles documentos adjuntos es privada y confidencial y está dirigida únicamente a su destinatario/a. Si usted no es el/la destinatario/a original de este mensaje, por favor elimínelo. La distribución o copia de este mensaje no está autorizada.
See more languages: http://www.sergas.es/aviso_confidencialidad.htm
Hi, Andrey, Thanks for your response, so just think it as taking an image
url from another site or a database table and you need to insert the image
into the inline form of the blog post inline editor programmatically when
the inline form shows up, how would you do that? I checked the
XWikiwysiwyg.js file, it will be called before the inline form editor shows
up, so this could be a good place to add code, if you have any idea, please
let me know.
Thanks again
David
On Sat, Mar 17, 2012 at 6:15 PM, Andrey Mavrin <andrey.mavrin13(a)gmail.com>wrote:
> 2012/3/17 du du <dddu88(a)gmail.com>
>
> > Hi, all,
> > I am playing around with the blog post application, when users click the
> > create post button, it brings up the inline form for users to put text
> in,
> > I have another requirement, we need to write some velocity code somewhere
> > to retrieve an image url from a database, so when the inline form shows
> up
> > after users click create post button, the image automatically shows up in
> > the inline form, users then type in more text, my question is where
> should
> > I put the code in? also the BlogPostClass and BlogPostTemplate have
> > TextArea objects, which create GWT inline form, this is where I need to
> put
> > image in programmatically, so I am thinking about accessing the GWT code
> to
> > insert image, could anybody point me to the right direction about how to
> > approach this to put image into the inline form programmatically?
> > Thanks
> > David
> > _______________________________________________
> > devs mailing list
> > devs(a)xwiki.org
> > http://lists.xwiki.org/mailman/listinfo/devs
> >
>
> I really like the idea, and I would like to undertake it, as I think about
> what the user chose the location for pictures and text
>
> well I'm wondering whether your application to take the results from
> another site? For example, if two sites have the same polls, if they can
> share information?
> _______________________________________________
> devs mailing list
> devs(a)xwiki.org
> http://lists.xwiki.org/mailman/listinfo/devs
>
Hi Andrey,
I appreciate your enthusiasm :)
As you can see from the program's timeline [1], until the 25th of March
(including) we can discuss the available project proposals [2] or analyse
new ones. Student application period starts on the 26th of March.
Please feel free to ask any questions regarding the current proposals that
you are interested in or even to propose a new project yourself.
Thanks,
Eduard
----------
[1] http://www.google-melange.com/gsoc/events/google/gsoc2012
[2]
http://dev.xwiki.org/xwiki/bin/view/GoogleSummerOfCode/WebHome#HProposedPro…
On Sat, Mar 17, 2012 at 11:59 PM, Andrey Mavrin
<andrey.mavrin13(a)gmail.com>wrote:
> I am ready to accept this project, just give me a chance and I'll prove
> that
> I can
>
> 2012/3/17 Paul Libbrecht <paul(a)hoplahup.net>
>
> > Sorry Eduard,
> >
> > I now understand there's no connection between the mentor request and the
> > questions on the page before.
> >
> > paul
> >
> >
> > Le 17 mars 2012 à 19:03, Paul Libbrecht a écrit :
> >
> > > Eduard,
> > >
> > > the mentor questionnaire sounds to be veeeeery much student like.
> > > Can it be it's the wrong one?
> > > Any reason I am asked the school I am enrolled in?
> > > I am actually, but... I want to be a mentor here!
> > >
> > > paul
> > >
> > >
> > > Le 17 mars 2012 à 15:33, Eduard Moraru a écrit :
> > >
> > >> If you plan to be a mentor this summer, don`t forget to *register* as
> > such
> > >> on XWiki's melange page
> > >> http://www.google-melange.com/gsoc/org/google/gsoc2012/xwiki.
> > >
> >
> > _______________________________________________
> > devs mailing list
> > devs(a)xwiki.org
> > http://lists.xwiki.org/mailman/listinfo/devs
> >
> _______________________________________________
> devs mailing list
> devs(a)xwiki.org
> http://lists.xwiki.org/mailman/listinfo/devs
>