[xwiki-users] Include website as xwiki page
Hello, is there a possibility to include a website directly as a wiki page, so that clicking on a link, that redirects you to an external (www) page, loads the website directly as a "frame" in my xwiki instance. At the moment I am only able to create links that load the external site in a new tab or page. Best regards Vince Mit freundlichen Grüßen Vincenzo Brancato -Systems Integration- PROCITEC GmbH Rastatter Strasse 41 D-75179 Pforzheim Fon: +49 (0) 7231 15561-0 Fax: +49 (0) 7231 15561-11 Mailto: [email protected] Mannheim HRB 504702 Geschäftsführer: Dipl.-Ing. (FH) Michael Brenk This e-mail may contain confidential and/or legally protected information. If you are not the intended recipient (or have received this e-mail in error) please notify the sender immediately and delete this e-mail. Any unauthorized copying, disclosure or distribution of the material in this e-mail is strictly forbidden. Thank you!
Hi Vince, have you tried an iframe embedded in the html macro ? {{html}} <iframe src="my site" /> {{/html}} I think that would fit your needs. Guillaume On Thu, Jul 21, 2011 at 11:42, Vincenzo Brancato <[email protected]>wrote:
Hello,
is there a possibility to include a website directly as a wiki page, so that clicking on a link, that redirects you to an external (www) page, loads the website directly as a "frame" in my xwiki instance. At the moment I am only able to create links that load the external site in a new tab or page.
Best regards
Vince
Mit freundlichen Grüßen
Vincenzo Brancato -Systems Integration-
PROCITEC GmbH Rastatter Strasse 41 D-75179 Pforzheim Fon: +49 (0) 7231 15561-0 Fax: +49 (0) 7231 15561-11 Mailto: [email protected]
Mannheim HRB 504702 Geschäftsführer: Dipl.-Ing. (FH) Michael Brenk
This e-mail may contain confidential and/or legally protected information. If you are not the intended recipient (or have received this e-mail in error) please notify the sender immediately and delete this e-mail. Any unauthorized copying, disclosure or distribution of the material in this e-mail is strictly forbidden. Thank you!
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
Hi, On Jul 21, 2011, at 11:42 AM, Vincenzo Brancato wrote:
Hello,
is there a possibility to include a website directly as a wiki page, so that clicking on a link, that redirects you to an external (www) page, loads the website directly as a "frame" in my xwiki instance. At the moment I am only able to create links that load the external site in a new tab or page.
Sure that's easy to do using $xwiki.getURLContent wrapped in a {{html}} macro. See for ex: http://extensions.xwiki.org/xwiki/bin/view/Extension/External+Pretty+Code Hope it helps, -Vincent
Best regards
Vince
Mit freundlichen Grüßen
Vincenzo Brancato
Von: [email protected] [mailto:[email protected]] Im Auftrag von Vincent Massol Gesendet: Donnerstag, 21. Juli 2011 11:56 An: XWiki Users Betreff: Re: [xwiki-users] Include website as xwiki page Hi, On Jul 21, 2011, at 11:42 AM, Vincenzo Brancato wrote:
Hello,
is there a possibility to include a website directly as a wiki page, so that clicking on a link, that redirects you to >an external (www) page, loads the website directly as a "frame" in my xwiki instance. At the moment I am only able to >>create links that load the external site in a new tab or page.
Sure that's easy to do using $xwiki.getURLContent wrapped in a {{html}} macro. See for ex: http://extensions.xwiki.org/xwiki/bin/view/Extension/External+Pretty+Code
Didn't work for me, because it copies the code of the link. And the macro has a very terrible speed. Also these Macros do not work: http://extensions.xwiki.org/xwiki/bin/view/Extension/Iframe+Navigation+Macro http://extensions.xwiki.org/xwiki/bin/view/Extension/Iframe+Macro I don't know if it's my fault that the macros do not work, but this worked for me: {{html}} <iframe src="http://www.google.com" width="100%" height="100%"></iframe> {{/html}} Best regards Vince
Hope it helps, -Vincent
Best regards
Vince _______________________________________________
users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
-----Ursprüngliche Nachricht----- Von: [email protected] [mailto:[email protected]] Im Auftrag von Guillaume Lerouge Gesendet: Donnerstag, 21. Juli 2011 11:55 An: XWiki Users Betreff: Re: [xwiki-users] Include website as xwiki page
Hi Vince,
have you tried an iframe embedded in the html macro ?
{{html}} <iframe src="my site" /> {{/html}}
This worked fine for me. Thx very much!!!!! Here my code: {{html}} <iframe src="http://www.google.com" width="100%" height="100%"></iframe> {{/html}} Best regards Vince
I think that would fit your needs.
Guillaume
On Thu, Jul 21, 2011 at 11:42, Vincenzo Brancato <[email protected]>wrote:
Hello,
is there a possibility to include a website directly as a wiki page, so that clicking on a link, that redirects you to an external (www) page, loads the website directly as a "frame" in my xwiki instance. At the moment I am only able to create links that load the external site in a new tab or page.
Best regards
Vince
Mit freundlichen Grüßen
Vincenzo Brancato -Systems Integration-
PROCITEC GmbH Rastatter Strasse 41 D-75179 Pforzheim Fon: +49 (0) 7231 15561-0 Fax: +49 (0) 7231 15561-11 Mailto: [email protected]
Mannheim HRB 504702 Geschäftsführer: Dipl.-Ing. (FH) Michael Brenk
This e-mail may contain confidential and/or legally protected information. If you are not the intended recipient (or have received this e-mail in error) please notify the sender immediately and delete this e-mail. Any unauthorized copying, disclosure or distribution of the material in this e-mail is strictly forbidden. Thank you!
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
A question to this; maybe a bit to HTML /CSS and not really something for XWiki? If you include pages with <iframe> can you override CSS settings from within XWiki? We have a website included and would like to avoid double LOGO's (one on XWiki and one on the included site) So if I could add a CSS setting to my XWiki page that would actually override stuff within the iframe container that would be great Gerritjan Op 21 jul. 2011, om 13:25 heeft Vincenzo Brancato het volgende geschreven:
-----Ursprüngliche Nachricht----- Von: [email protected] [mailto:[email protected]] Im Auftrag von Guillaume Lerouge Gesendet: Donnerstag, 21. Juli 2011 11:55 An: XWiki Users Betreff: Re: [xwiki-users] Include website as xwiki page
Hi Vince,
have you tried an iframe embedded in the html macro ?
{{html}} <iframe src="my site" /> {{/html}}
This worked fine for me. Thx very much!!!!! Here my code: {{html}} <iframe src="http://www.google.com" width="100%" height="100%"></iframe> {{/html}}
Best regards Vince
I think that would fit your needs.
Guillaume
On Thu, Jul 21, 2011 at 11:42, Vincenzo Brancato <[email protected]>wrote:
Hello,
is there a possibility to include a website directly as a wiki page, so that clicking on a link, that redirects you to an external (www) page, loads the website directly as a "frame" in my xwiki instance. At the moment I am only able to create links that load the external site in a new tab or page.
Best regards
Vince
Mit freundlichen Grüßen
Vincenzo Brancato -Systems Integration-
PROCITEC GmbH Rastatter Strasse 41 D-75179 Pforzheim Fon: +49 (0) 7231 15561-0 Fax: +49 (0) 7231 15561-11 Mailto: [email protected]
Mannheim HRB 504702 Geschäftsführer: Dipl.-Ing. (FH) Michael Brenk
This e-mail may contain confidential and/or legally protected information. If you are not the intended recipient (or have received this e-mail in error) please notify the sender immediately and delete this e-mail. Any unauthorized copying, disclosure or distribution of the material in this e-mail is strictly forbidden. Thank you!
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
participants (4)
-
Gerritjan Koekkoek -
Guillaume Lerouge -
Vincent Massol -
Vincenzo Brancato