Re: [xwiki-users] Show HTML/ASPX in panel

2013-10-07 Thread Guillaume Louis-Marie Delhumeau
Hi.

The width of the panels is setted in the CSS of the skin. For example, with
the default skin:

#rightPanels {
float: right;
margin: 0 0 0 -220px;
width: 220px;
}
#leftPanels {
float: left;
margin: 0 0 0 -100%;
width: 220px;
}

So you have to edit the skin or create a new one:
http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Skins

Regards,
Louis-Marie


2013/10/4 Hamster teun...@hotmail.com

 The minute I posted my question, the idea to use an iframe hit me :-)

 {{velocity}}
 #panelheader('My Header')
 {{html}}
 div
 iframe
 src=.../default.aspx
 height=800
 /iframe
 /div
 {{/html}}
 #panelfooter()
 {{/velocity}}

 Now I want to change the WIDTH of my panel(s). How/where can I change the
 width of a panel?



 --
 View this message in context:
 http://xwiki.475771.n2.nabble.com/Show-HTML-ASPX-in-panel-tp7587400p7587401.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

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


[xwiki-users] Downloand a generated PDF from an export action

2013-10-07 Thread Boudjelda Mohamed Said
  Hi Users and Devs

   I trust you that you can have a solution four my problem. In my velocity
page I have a link like this one :

  a href=$xwiki.getURL(MySpace.MyPAge, export, myaparmas)
target=_blank Download my PDF /a

This works pretty well and open the generated PDF in a new browser tab
, what I am looking for is is there a way to download directly the PDF as a
file when clicking on the link


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


[xwiki-users] XWiki document with textarea

2013-10-07 Thread Michael Born

Hi guys,
I need in my XWiki page a TextArea whose content I can edit and save.

Currently I have a normal Textarea in HTML macro and whenever I edit the 
content of this box inwysiwyg or inline mode it will not be saved.


Here is the document content:

{{velocity}}
$xwiki.jsfx.use(js/xwiki/wysiwyg/xwe/XWikiWysiwyg.js, 
{'forceSkinAction': true, 'lazy': true})


{{html}}br/
 div class='container'
  div class='delegation_container'
  a href='/xwiki/bin/view/MySpace/MyPage'MyPage/a
  /div
  div class='shadow_box'
  table class='activity_table'
   tr style='border: 0px;'
 td style='border: 0px;'
  div class='body_identifier'ID/div
 /td

 tdinput id='ID' type='text' 
class='task_page_text_content' value='84978164'//td

 /tr
   tr style='border: 0px;'
 td style='border: 0px;'
  div class='body_identifier'Name/div
 /td

 tdinput id='Name' type='text' 
class='task_page_text_content' value='Projektmanagment'//td

 /tr
   tr style='border: 0px;'
 td style='border: 0px;'
  div class='body_identifier'Arbeit/div
 /td

 tdinput id='Arbeit' type='text' 
class='task_page_text_content' value='10.0'//td

 /tr
   tr style='border: 0px;'
 td style='border: 0px;'
  div class='body_identifier'Startzeit/div
 /td

 tdinput id='Startzeit' type='text' 
class='task_page_text_content' value='02.10.2013'//td

 /tr
   tr style='border: 0px;'
 td style='border: 0px;'
  div class='body_identifier'Endzeit/div
 /td

 tdinput id='Endzeit' type='text' 
class='task_page_text_content' value='17.10.2013'//td

 /tr
   tr style='border: 0px;'
 td style='border: 0px;'
  div class='body_identifier'Einschrenkung/div
 /td

 tdinput id='Einschrenkung' type='text' 
class='task_page_text_content' value='none'//td

 /tr
   tr style='border: 0px;'
 td style='border: 0px;'
  div class='body_identifier'Art/div
 /td

 tdinput id='Art' type='text' 
class='task_page_text_content' value='work'//td

 /tr
   tr style='border: 0px;'
 td style='border: 0px;'
  div class='body_identifier'Kommentar/div
 /td

   td***textarea **id='84978164_ta' title='Comment' 
class='task_page_comment_container'/**textarea***/td

 /tr
   tr style='border: 0px;'
 td style='border: 0px;'
  div class='body_identifier'Vorgänger/div
 /td

   tdinput id='Vorgänger' type='text' 
class='task_page_text_content' value=''//td

 /tr
   tr style='border: 0px;'
 td style='border: 0px;'
  div class='body_identifier'Projekt/div
 /td

 tdinput id='Projekt' type='text' 
class='task_page_text_content' value='00122'//td

 /tr
  /table

 /div
 /div
br/

** This was just a attempt **

script type=text/javascript
Wysiwyg.onModuleLoad(function() {
 alert(HELLO WOLRD);
 new WysiwygEditor({hookId:'84978164_ta'});
});
/script

*
{{/html}}
{{/velocity}}


What should I do so that I can save the contents of the textarea?

About help I would be very grateful.

Yours sincerely,
Michael Born
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] XWiki document with textarea

2013-10-07 Thread Marius Dumitru Florea
Where do you want the content of the text area to be saved? Your text
area doesn't even have a name so it isn't submitted to the server when
you save the page. I suggest you read
http://platform.xwiki.org/xwiki/bin/view/DevGuide/FAQTutorialManual .

Hope this helps,
Marius

On Mon, Oct 7, 2013 at 4:43 PM, Michael Born b...@mpdigital.de wrote:
 Hi guys,
 I need in my XWiki page a TextArea whose content I can edit and save.

 Currently I have a normal Textarea in HTML macro and whenever I edit the
 content of this box inwysiwyg or inline mode it will not be saved.

 Here is the document content:

 {{velocity}}
 $xwiki.jsfx.use(js/xwiki/wysiwyg/xwe/XWikiWysiwyg.js, {'forceSkinAction':
 true, 'lazy': true})

 {{html}}br/
  div class='container'
   div class='delegation_container'
   a href='/xwiki/bin/view/MySpace/MyPage'MyPage/a
   /div
   div class='shadow_box'
   table class='activity_table'
tr style='border: 0px;'
  td style='border: 0px;'
   div class='body_identifier'ID/div
  /td

  tdinput id='ID' type='text'
 class='task_page_text_content' value='84978164'//td
  /tr
tr style='border: 0px;'
  td style='border: 0px;'
   div class='body_identifier'Name/div
  /td

  tdinput id='Name' type='text'
 class='task_page_text_content' value='Projektmanagment'//td
  /tr
tr style='border: 0px;'
  td style='border: 0px;'
   div class='body_identifier'Arbeit/div
  /td

  tdinput id='Arbeit' type='text'
 class='task_page_text_content' value='10.0'//td
  /tr
tr style='border: 0px;'
  td style='border: 0px;'
   div class='body_identifier'Startzeit/div
  /td

  tdinput id='Startzeit' type='text'
 class='task_page_text_content' value='02.10.2013'//td
  /tr
tr style='border: 0px;'
  td style='border: 0px;'
   div class='body_identifier'Endzeit/div
  /td

  tdinput id='Endzeit' type='text'
 class='task_page_text_content' value='17.10.2013'//td
  /tr
tr style='border: 0px;'
  td style='border: 0px;'
   div class='body_identifier'Einschrenkung/div
  /td

  tdinput id='Einschrenkung' type='text'
 class='task_page_text_content' value='none'//td
  /tr
tr style='border: 0px;'
  td style='border: 0px;'
   div class='body_identifier'Art/div
  /td

  tdinput id='Art' type='text'
 class='task_page_text_content' value='work'//td
  /tr
tr style='border: 0px;'
  td style='border: 0px;'
   div class='body_identifier'Kommentar/div
  /td

td***textarea **id='84978164_ta' title='Comment'
 class='task_page_comment_container'/**textarea***/td
  /tr
tr style='border: 0px;'
  td style='border: 0px;'
   div class='body_identifier'Vorgänger/div
  /td

tdinput id='Vorgänger' type='text'
 class='task_page_text_content' value=''//td
  /tr
tr style='border: 0px;'
  td style='border: 0px;'
   div class='body_identifier'Projekt/div
  /td

  tdinput id='Projekt' type='text'
 class='task_page_text_content' value='00122'//td
  /tr
   /table

  /div
  /div
 br/

 ** This was just a attempt **

 script type=text/javascript
 Wysiwyg.onModuleLoad(function() {
  alert(HELLO WOLRD);
  new WysiwygEditor({hookId:'84978164_ta'});
 });
 /script

 *
 {{/html}}
 {{/velocity}}


 What should I do so that I can save the contents of the textarea?

 About help I would be very grateful.

 Yours sincerely,
 Michael Born
 ___
 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


[xwiki-users] [ANN] XWiki 5.2 Released

2013-10-07 Thread Marius Dumitru Florea
The XWiki development team is proud to announce the availability of XWiki 5.2.
This release comes with multiwiki support enabled by default: users
are able to create new wikis without the need to install additional
extensions. This is possible because the Workspace Application has
been integrated in XWiki Enterprise. We stopped the support for XWiki
Enterprise Manager as a consequence. Apart from this, the new release
brings a Solr-based live search (to replace the one based on Lucene)
and the ability to track active XWiki installs. The Distribution
Wizard has a new step to upgrade all wikis. Developers will be
interested by the new Wiki Stream framework which can already be used
to export large wikis in XAR format. A lot of bug fixes (135) and many
improvements (50) complete this release and make it worth trying.

You can download it here: http://www.xwiki.org/xwiki/bin/view/Main/Download

Make sure to review the release notes:
http://www.xwiki.org/xwiki/bin/view/ReleaseNotes/ReleaseNotesXWiki52

Thanks
-The XWiki dev team
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users