From mboxrd@z Thu Jan 1 00:00:00 1970 From: Dov Grobgeld Subject: s5 presentation Date: Wed, 10 Nov 2010 22:53:06 +0200 Message-ID: Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0333587421==" Return-path: Received: from [140.186.70.92] (port=36910 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PGHfO-0003mG-33 for emacs-orgmode@gnu.org; Wed, 10 Nov 2010 15:53:17 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PGHfH-0005fF-Lv for emacs-orgmode@gnu.org; Wed, 10 Nov 2010 15:53:13 -0500 Received: from mail-qw0-f41.google.com ([209.85.216.41]:42679) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PGHfH-0005f3-FL for emacs-orgmode@gnu.org; Wed, 10 Nov 2010 15:53:07 -0500 Received: by qwi2 with SMTP id 2so1129717qwi.0 for ; Wed, 10 Nov 2010 12:53:07 -0800 (PST) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org --===============0333587421== Content-Type: multipart/alternative; boundary=0015175cb60a55de830494b90b24 --0015175cb60a55de830494b90b24 Content-Type: text/plain; charset=ISO-8859-1 I tried to get the s5 presentation mode from https://github.com/sigma/org-s5running, but I'm missing something. I followed all the steps in the README, but how do you generate the S5:ified html? I tried simply doing [C-c C-e b] but it did not open up in s5 mode. What am I missing? Should the generated html contain the contents of preamble in org-s5.el? It does not. Thanks! Dov --0015175cb60a55de830494b90b24 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable
I tried to get the s5 presentation mode from https://github.com/sigma/org-s5 running,= but I'm missing something. I followed all the steps in the README, but= how do you generate the S5:ified html? I tried simply doing [C-c C-e b] bu= t it did not open up in s5 mode. What am I missing? Should the generated ht= ml contain the contents of preamble in org-s5.el? It does not.

Thanks!
Dov

--0015175cb60a55de830494b90b24-- --===============0333587421== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode --===============0333587421==-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: John Hendy Subject: Re: s5 presentation Date: Wed, 10 Nov 2010 16:47:34 -0600 Message-ID: References: Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1378861852==" Return-path: Received: from [140.186.70.92] (port=34080 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PGJb7-0001xw-SF for emacs-orgmode@gnu.org; Wed, 10 Nov 2010 17:57:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PGJS5-0002ra-CV for emacs-orgmode@gnu.org; Wed, 10 Nov 2010 17:47:38 -0500 Received: from mail-fx0-f41.google.com ([209.85.161.41]:40371) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PGJS5-0002rG-0y for emacs-orgmode@gnu.org; Wed, 10 Nov 2010 17:47:37 -0500 Received: by fxm20 with SMTP id 20so888404fxm.0 for ; Wed, 10 Nov 2010 14:47:35 -0800 (PST) In-Reply-To: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Dov Grobgeld Cc: emacs-orgmode@gnu.org --===============1378861852== Content-Type: multipart/alternative; boundary=001636c5995ab491710494baa4bf --001636c5995ab491710494baa4bf Content-Type: text/plain; charset=ISO-8859-1 I was interested in this but hadn't tried it. After seeing your message I decided to give it a whirl. The only thing the README may leave slightly to the imagination is that one needs to setup org-publish in addition to the rest of the steps. I had never done this before so I followed Worg's instructions and was able to generate the s5 presentations provided with the git repo (blank and demo). Were I to expand the README, it would read like this: -------------------- - git clone https://github.com/sigma/org-s5.git - download jquery here: http://docs.jquery.com/Downloading_jQuery (I used 1.4.3 and renamed it jquery.js - download the s5 zip file here: http://meyerweb.com/eric/tools/s5/ - unzip s5 --- mkdir s5 --- cd s5 --- unzip path/to/s5.zip --- note presence of folder called ui - get org publishing setup [1] --- mkdir s5-publish --- mkdir s5-publish/source --- mkdir s5-publish/exported --- edit .emacs and add this: ,----- | (setq org-publish-project-alist | '(("org-s5" | :base-directory "~/path/to/s5-publish/source" | :base-extension "org" | :publishing-directory "~/path/to/s5-publish/exported" | :recursive t | :publishing-function org-publish-org-to-html | :headline-levels 4 | :auto-preamble t | ))) `----- - get the s5 stuff where it needs to be --- cp path/to/s5/ui s5-publish/exported/ --- cp jquery.js s5-publish/exported/ui/ --- cp path/to/s5-org.git/org-slides.js s5/publish/exported/ui/ --- cp path/to/s5-org.git/s5-demo.org s5/publish/source/ Restart emacs and try M-x org-publish-project and hit return twice. It should export path/to/s5-publish/source/s5-demo.org into the export directory we created; look for path/to/s5-publish/exported/s5-demo.html and open it up. ---------------------- [1] I got the .emacs code from Worg here: http://orgmode.org/worg/org-tutorials/org-publish-html-tutorial.php [2] [2] Worg lists the base and publish directories with trailing slashes. I was not able to publish successfully until I googled around and found a mailing list post (http://patchwork.newartisans.com/patch/233/) where the poster did not have trailing slashes. In trying that, it worked. Hope that helps, John On Wed, Nov 10, 2010 at 2:53 PM, Dov Grobgeld wrote: > I tried to get the s5 presentation mode from > https://github.com/sigma/org-s5 running, but I'm missing something. I > followed all the steps in the README, but how do you generate the S5:ified > html? I tried simply doing [C-c C-e b] but it did not open up in s5 mode. > What am I missing? Should the generated html contain the contents of > preamble in org-s5.el? It does not. > > Thanks! > Dov > > > _______________________________________________ > Emacs-orgmode mailing list > Please use `Reply All' to send replies to the list. > Emacs-orgmode@gnu.org > http://lists.gnu.org/mailman/listinfo/emacs-orgmode > > --001636c5995ab491710494baa4bf Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable I was interested in this but hadn't tried it. After seeing your message= I decided to give it a whirl. The only thing the README may leave slightly= to the imagination is that one needs to setup org-publish in addition to t= he rest of the steps. I had never done this before so I followed Worg's= instructions and was able to generate the s5 presentations provided with t= he git repo (blank and demo). Were I to expand the README, it would read li= ke this:

--------------------
- git clone=A0https://github.com/sigma/org-s5.git
- download jquery here:=A0http://docs.jquery.com/Downloading_jQuery=A0(I used 1.4.3=A0= and renamed it jquery.js
- download the= s5 zip file here:=A0http://me= yerweb.com/eric/tools/s5/

- un= zip s5
--- mkdir s5
--- cd s5
--- unzip path/= to/s5.zip
--- note presence of folder called ui

- get org publishing setup [1]
--- mkdir s5-publish
--- mkdir s5-publish/source
--- mkdir s5-publish/exported
=
--- edit .emacs and add this:

,-----
|=A0(setq org-publish-project-alist
| =A0 '(("org-s= 5"
| =A0 =A0 =A0:base-directory "~/path/to/s5-publish/s= ource"
| =A0 =A0 =A0:base-extension "org"
| =A0 =A0 =A0:publishing-directory "~/path/to/s5-publish/exported&qu= ot;
| =A0 =A0 =A0:recursive t
| =A0 =A0 =A0:publishing-function = org-publish-org-to-html
| =A0 =A0 =A0:headline-levels 4
| =A0 =A0 =A0:auto-preamble t
| =A0 =A0 =A0)))
`-----<= /div>

- get the s5 stuff where it needs to be
--- cp path/to/s5/ui s5-publish/exported/
--- cp jquery.js s= 5-publish/exported/ui/
--- cp path/to/s5-org.git/org-slides.js s5= /publish/exported/ui/
--- cp path/to/s5-org.git/s5-demo.org s5/publish/source/

Restart emacs and try M-x org-publish-project and hit r= eturn twice. It should export path/to/s5-publish/source/s5-demo.org into the export directory we created; look for = path/to/s5-publish/exported/s5-demo.html and open it up.
----------------------

[1] I got the .emacs c= ode from Worg here:=A0http://orgmode.org/worg/org-tutorials/org-publis= h-html-tutorial.php=A0[2]

[2] Worg lists the base and publish directories with tr= ailing slashes. I was not able to publish successfully until I googled arou= nd and found a mailing list post (http://patchwork.newartisans.com/patch/233/)=A0where the= poster did not have trailing slashes. In trying that, it worked.


Hope that helps,
John


On Wed, Nov 1= 0, 2010 at 2:53 PM, Dov Grobgeld <dov.grobgeld@gmail.com> wrote:
I tried to get the s5 presentation mode from https://github.com/sigma/o= rg-s5 running, but I'm missing something. I followed all the steps = in the README, but how do you generate the S5:ified html? I tried simply do= ing [C-c C-e b] but it did not open up in s5 mode. What am I missing? Shoul= d the generated html contain the contents of preamble in org-s5.el? It does= not.

Thanks!
Dov


_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


--001636c5995ab491710494baa4bf-- --===============1378861852== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode --===============1378861852==-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rick Moynihan Subject: Re: s5 presentation Date: Wed, 10 Nov 2010 23:46:09 +0000 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Return-path: Received: from [140.186.70.92] (port=53394 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PGKN6-0001kD-LE for emacs-orgmode@gnu.org; Wed, 10 Nov 2010 18:46:33 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PGKN5-0004wh-5p for emacs-orgmode@gnu.org; Wed, 10 Nov 2010 18:46:32 -0500 Received: from mail-qw0-f41.google.com ([209.85.216.41]:56103) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PGKN5-0004wX-3U for emacs-orgmode@gnu.org; Wed, 10 Nov 2010 18:46:31 -0500 Received: by qwi2 with SMTP id 2so1290277qwi.0 for ; Wed, 10 Nov 2010 15:46:30 -0800 (PST) In-Reply-To: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Dov Grobgeld Cc: emacs-orgmode@gnu.org I used this recently, and all I did was use M-x org-export-as-html. On 10 November 2010 20:53, Dov Grobgeld wrote: > I tried to get the s5 presentation mode from https://github.com/sigma/org-s5 > running, but I'm missing something. I followed all the steps in the README, > but how do you generate the S5:ified html? I tried simply doing [C-c C-e b] > but it did not open up in s5 mode. What am I missing? Should the generated > html contain the contents of preamble in org-s5.el? It does not. > > Thanks! > Dov > > > _______________________________________________ > Emacs-orgmode mailing list > Please use `Reply All' to send replies to the list. > Emacs-orgmode@gnu.org > http://lists.gnu.org/mailman/listinfo/emacs-orgmode > > -- Rick Moynihan http://twitter.com/RickMoynihan http://delicious.com/InkyHarmonics http://sourcesmouth.co.uk/ From mboxrd@z Thu Jan 1 00:00:00 1970 From: Yann Hodique Subject: Re: s5 presentation Date: Thu, 11 Nov 2010 01:53:40 +0100 Message-ID: <87zktg1y0b.fsf@siav.hodique.info> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from [140.186.70.92] (port=38195 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PGLku-00065n-0R for emacs-orgmode@gnu.org; Wed, 10 Nov 2010 20:15:13 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PGLks-0004Xb-NS for emacs-orgmode@gnu.org; Wed, 10 Nov 2010 20:15:11 -0500 Received: from lo.gmane.org ([80.91.229.12]:46062) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PGLks-0004XX-Ba for emacs-orgmode@gnu.org; Wed, 10 Nov 2010 20:15:10 -0500 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1PGLkl-00011t-Lw for emacs-orgmode@gnu.org; Thu, 11 Nov 2010 02:15:03 +0100 Received: from aannecy-552-1-161-215.w83-201.abo.wanadoo.fr ([83.201.57.215]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 11 Nov 2010 02:15:03 +0100 Received: from yann.hodique by aannecy-552-1-161-215.w83-201.abo.wanadoo.fr with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 11 Nov 2010 02:15:03 +0100 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org >>>>> "Dov" == Dov Grobgeld writes: > I tried to get the s5 presentation mode from > https://github.com/sigma/org-s5running, but I'm missing something. I > followed all the steps in the README, > but how do you generate the S5:ified html? I tried simply doing [C-c C-e b] > but it did not open up in s5 mode. What am I missing? Should the generated > html contain the contents of preamble in org-s5.el? It does not. Hi, I'm the author of this little hack, so first thanks for your interest :) You're right, the goal is to have it work by just exporting to html, so C-c C-e b should just work. I suspect that you might have not inserted the magic line ,---- | #+SETUPFILE: s5.org `---- at the beginning of the file you're trying to export as s5. Re-reading the README, I must admit it's far from being clear that the magic comes from there... (will fix that immediately) Does that help ? Yann. -- "There is no escape--we pay for the violence of our ancestors. " -- from "The Collected Sayings of Muad'Dib" by the Princess Irulan From mboxrd@z Thu Jan 1 00:00:00 1970 From: Dov Grobgeld Subject: Re: Re: s5 presentation Date: Thu, 11 Nov 2010 09:12:21 +0200 Message-ID: References: <87zktg1y0b.fsf@siav.hodique.info> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0905435751==" Return-path: Received: from [140.186.70.92] (port=53823 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PGRKa-0005ol-8h for emacs-orgmode@gnu.org; Thu, 11 Nov 2010 02:12:25 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PGRKY-0006EQ-Qe for emacs-orgmode@gnu.org; Thu, 11 Nov 2010 02:12:24 -0500 Received: from mail-qw0-f41.google.com ([209.85.216.41]:46916) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PGRKY-0006EM-Na for emacs-orgmode@gnu.org; Thu, 11 Nov 2010 02:12:22 -0500 Received: by qwi2 with SMTP id 2so1633855qwi.0 for ; Wed, 10 Nov 2010 23:12:22 -0800 (PST) In-Reply-To: <87zktg1y0b.fsf@siav.hodique.info> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Yann Hodique Cc: emacs-orgmode@gnu.org --===============0905435751== Content-Type: multipart/alternative; boundary=0016364ef322f086790494c1b1ad --0016364ef322f086790494c1b1ad Content-Type: text/plain; charset=ISO-8859-1 Thanks for your code, and for your help. I don't know what I did yesterday, but today, I got queried whether to allow BIND values in the buffer, and I then managed to see s5-demo.org in S5 mode in my browser, but something is messed up in the display. I see the first slide, but "in a layer below it", the html text appears, and thus I have two layers of text which, one which scrolls (below) and one static (on top). I checked it with two firefox versions and two S5 versions but the problem remains. I put the resulting html file at: http://imagic.weizmann.ac.il/~dov/s5test/s5-demo.html Do you have any idea of what wrong? Thanks! Dov On Thu, Nov 11, 2010 at 02:53, Yann Hodique wrote: > >>>>> "Dov" == Dov Grobgeld writes: > > > I tried to get the s5 presentation mode from > > https://github.com/sigma/org-s5running, but I'm missing something. I > > followed all the steps in the README, > > but how do you generate the S5:ified html? I tried simply doing [C-c C-e > b] > > but it did not open up in s5 mode. What am I missing? Should the > generated > > html contain the contents of preamble in org-s5.el? It does not. > > Hi, > > I'm the author of this little hack, so first thanks for your interest :) > You're right, the goal is to have it work by just exporting to html, so > C-c C-e b should just work. > > I suspect that you might have not inserted the magic line > ,---- > | #+SETUPFILE: s5.org > `---- > at the beginning of the file you're trying to export as s5. > > Re-reading the README, I must admit it's far from being clear that the > magic comes from there... (will fix that immediately) > > Does that help ? > > Yann. > > -- > "There is no escape--we pay for the violence of our ancestors. " > > -- from "The Collected Sayings of Muad'Dib" by the Princess Irulan > > > _______________________________________________ > Emacs-orgmode mailing list > Please use `Reply All' to send replies to the list. > Emacs-orgmode@gnu.org > http://lists.gnu.org/mailman/listinfo/emacs-orgmode > --0016364ef322f086790494c1b1ad Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable
Thanks for your code, and for your help.

I don'= ;t know what I did yesterday, but today, I got queried whether to allow BIN= D values in the buffer, and I then=A0 managed to see s5-demo.org in S5 mode in my browser, but something is messed = up in the display. I see the first slide, but "in a layer below it&quo= t;, the html text appears, and thus I have two layers of text which, one wh= ich scrolls (below) and one static (on top). I checked it with two firefox = versions and two S5 versions but the problem remains. I put the resulting h= tml file at:

http:= //imagic.weizmann.ac.il/~dov/s5test/s5-demo.html

Do you have any= idea of what wrong?

Thanks!
Dov

On Thu, Nov 11, 2010 at 02:53, Yann Hodique <yann.hodique@gmail.com> wr= ote:
>>>>> "Dov" =3D=3D Dov Grobgeld = <dov.grobgeld@gmail.com>= ; writes:

> I tried to get the s5 presentation mode from
> https://github.com/sigma/org-s5running, but I'm missing someth= ing. I
> followed all the steps in the README,
> but how do you generate the S5:ified html? I tried simply doing [C-c C= -e b]
> but it did not open up in s5 mode. What am I missing? Should the gener= ated
> html contain the contents of preamble in org-s5.el? It does not.

Hi,

I'm the author of this little hack, so first thanks for your interest := )
You're right, the goal is to have it work by just exporting to html, so=
C-c C-e b should just work.

I suspect that you might have not inserted the magic line
,----
| #+SETUPFILE: s5.org
`----
at the beginning of the file you're trying to export as s5.

Re-reading the README, I must admit it's far from being clear that the<= br> magic comes from there... (will fix that immediately)

Does that help ?

Yann.

--
"There is no escape--we pay for the violence of our ancestors. "<= br>
=A0-- from "The Collected Sayings of Muad'Dib" by the Prince= ss Irulan


_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

--0016364ef322f086790494c1b1ad-- --===============0905435751== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode --===============0905435751==-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: Yann Hodique Subject: Re: s5 presentation Date: Thu, 11 Nov 2010 11:31:14 +0100 Message-ID: <87hbfotaml.fsf@qls-qa-yho-desk.eng.vmware.com> References: <87zktg1y0b.fsf@siav.hodique.info> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from [140.186.70.92] (port=40211 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PGUZc-0007Bj-O3 for emacs-orgmode@gnu.org; Thu, 11 Nov 2010 05:40:09 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PGUZb-00084f-97 for emacs-orgmode@gnu.org; Thu, 11 Nov 2010 05:40:08 -0500 Received: from lo.gmane.org ([80.91.229.12]:38366) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PGUZa-00084Y-Vn for emacs-orgmode@gnu.org; Thu, 11 Nov 2010 05:40:07 -0500 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1PGUZZ-0001Lk-8G for emacs-orgmode@gnu.org; Thu, 11 Nov 2010 11:40:05 +0100 Received: from rain.gmane.org ([80.91.229.7]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 11 Nov 2010 11:40:05 +0100 Received: from yhodique by rain.gmane.org with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 11 Nov 2010 11:40:05 +0100 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org >>>>> "Dov" == Dov Grobgeld writes: > Thanks for your code, and for your help. > I don't know what I did yesterday, but today, I got queried whether to allow > BIND values in the buffer, and I then managed to see s5-demo.org in S5 mode > in my browser, but something is messed up in the display. I see the first > slide, but "in a layer below it", the html text appears, and thus I have two > layers of text which, one which scrolls (below) and one static (on top). I > checked it with two firefox versions and two S5 versions but the problem > remains. I put the resulting html file at: > http://imagic.weizmann.ac.il/~dov/s5test/s5-demo.html > Do you have any idea of what wrong? After a quick look, it would seem that you're missing jquery.js and org-slides.js in your /~dov/s5test/ui directory Or maybe they're here, and there is a permission problem with those files ? In any case http://imagic.weizmann.ac.il/~dov/s5test/ui/jquery.js gives a 404 error. Same for org-slides.js The consequence is that S5 is activated, but the document is not transformed correctly to fit into the expected model (hence the garbage display) Hope this helps, Yann. -- How simple things were when our Messiah was only a dream. -- STILGAR, Naib of Sietch Tabr From mboxrd@z Thu Jan 1 00:00:00 1970 From: Dov Grobgeld Subject: Re: Re: s5 presentation Date: Thu, 11 Nov 2010 13:13:21 +0200 Message-ID: References: <87zktg1y0b.fsf@siav.hodique.info> <87hbfotaml.fsf@qls-qa-yho-desk.eng.vmware.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0000853791==" Return-path: Received: from [140.186.70.92] (port=52261 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PGV5o-0005qj-0M for emacs-orgmode@gnu.org; Thu, 11 Nov 2010 06:13:25 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PGV5m-0007bJ-HX for emacs-orgmode@gnu.org; Thu, 11 Nov 2010 06:13:23 -0500 Received: from mail-qy0-f176.google.com ([209.85.216.176]:59199) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PGV5m-0007bD-Eb for emacs-orgmode@gnu.org; Thu, 11 Nov 2010 06:13:22 -0500 Received: by qyk32 with SMTP id 32so1221474qyk.0 for ; Thu, 11 Nov 2010 03:13:21 -0800 (PST) In-Reply-To: <87hbfotaml.fsf@qls-qa-yho-desk.eng.vmware.com> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Yann Hodique Cc: emacs-orgmode@gnu.org --===============0000853791== Content-Type: multipart/alternative; boundary=0016364274b4ce7cbd0494c50f7b --0016364274b4ce7cbd0494c50f7b Content-Type: text/plain; charset=ISO-8859-1 Great! Thanks! Finally got it working. Next question. Is it possible to get syntax highlighting in s5/org? This might be more related to s5 than to s5-org though. #+SETUPFILE: s5.org #+TITLE: Perl #+AUTHOR: Dov Grobgeld #+BIND: org-s5-html-preamble-footer "

A perl test

" * Perl - A simple perl program #+begin_src perl #!/usr/bin/perl while(<>) { print "$.: $_"; } #+end_src * Thanks Bye bye! Thanks, Dov On Thu, Nov 11, 2010 at 12:31, Yann Hodique wrote: > >>>>> "Dov" == Dov Grobgeld writes: > > > Thanks for your code, and for your help. > > I don't know what I did yesterday, but today, I got queried whether to > allow > > BIND values in the buffer, and I then managed to see s5-demo.org in S5 > mode > > in my browser, but something is messed up in the display. I see the first > > slide, but "in a layer below it", the html text appears, and thus I have > two > > layers of text which, one which scrolls (below) and one static (on top). > I > > checked it with two firefox versions and two S5 versions but the problem > > remains. I put the resulting html file at: > > > http://imagic.weizmann.ac.il/~dov/s5test/s5-demo.html > > > Do you have any idea of what wrong? > > After a quick look, it would seem that you're missing jquery.js and > org-slides.js in your /~dov/s5test/ui directory > > Or maybe they're here, and there is a permission problem with those > files ? > > In any case http://imagic.weizmann.ac.il/~dov/s5test/ui/jquery.jsgives > a 404 error. Same for org-slides.js > > The consequence is that S5 is activated, but the document is not > transformed correctly to fit into the expected model (hence the garbage > display) > > Hope this helps, > > Yann. > > -- > How simple things were when our Messiah was only a dream. > > -- STILGAR, Naib of Sietch Tabr > > > _______________________________________________ > Emacs-orgmode mailing list > Please use `Reply All' to send replies to the list. > Emacs-orgmode@gnu.org > http://lists.gnu.org/mailman/listinfo/emacs-orgmode > --0016364274b4ce7cbd0494c50f7b Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable
Great! Thanks! Finally got it working.

Next questio= n. Is it possible to get syntax highlighting in s5/org? This might be more = related to s5 than to s5-org though.

#+SETUPFILE: s5.org
#+TITLE: Perl <= /span>
#+AUTHOR: Dov Grobgeld<= /span>
#+BIND: org-s5-html-preamble-footer "= <h1>A perl test</h1>"

* Perl
- A sim= ple perl program

#+begin_src perl

=A0 while(<>) {
=A0=A0=A0=A0=A0 print "$.: $_";
=A0 }
#+end_src

* Thanks
Bye by= e!

Thanks,
Dov
<= br>
On Thu, Nov 11, 2010 at 12:31, Yann Hodique <= span dir=3D"ltr"><yhodique@vmware= .com> wrote:
>>>>> "Dov" =3D=3D Dov Grobgeld <dov.grobgeld@gmail.com> writes:

> Thanks for your code, and for your help.
> I don't know what I did yesterday, but today, I got queried whethe= r to allow
> BIND values in the buffer, and I then =A0managed to see s5-demo.org in S5 mode
> in my browser, but something is messed up in the display. I see the fi= rst
> slide, but "in a layer below it", the html text appears, and= thus I have two
> layers of text which, one which scrolls (below) and one static (on top= ). I
> checked it with two firefox versions and two S5 versions but the probl= em
> remains. I put the resulting html file at:

> http://imagic.weizmann.ac.il/~dov/s5test/s5-demo.html
> Do you have any idea of what wrong?

After a quick look, it would seem that you're missing jquery.js a= nd
org-slides.js in your /~dov/s5test/ui directory

Or maybe they're here, and there is a permission problem with those
files ?

In any case http://imagic.weizmann.ac.il/~dov/s5test/ui/jquery.j= s gives
a 404 error. Same for org-slides.js

The consequence is that S5 is activated, but the document is not
transformed correctly to fit into the expected model (hence the garbage
display)

Hope this helps,

Yann.

--
How simple things were when our Messiah was only a dream.

=A0-- STILGAR, Naib of Sietch Tabr


_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

--0016364274b4ce7cbd0494c50f7b-- --===============0000853791== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode --===============0000853791==-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: Yann Hodique Subject: Re: s5 presentation Date: Thu, 11 Nov 2010 12:34:16 +0100 Message-ID: <877hgkt7pj.fsf@qls-qa-yho-desk.eng.vmware.com> References: <87zktg1y0b.fsf@siav.hodique.info> <87hbfotaml.fsf@qls-qa-yho-desk.eng.vmware.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from [140.186.70.92] (port=57172 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PGVQK-0006gX-Dx for emacs-orgmode@gnu.org; Thu, 11 Nov 2010 06:34:37 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PGVQI-0003VG-NA for emacs-orgmode@gnu.org; Thu, 11 Nov 2010 06:34:36 -0500 Received: from lo.gmane.org ([80.91.229.12]:37098) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PGVQI-0003Ul-Do for emacs-orgmode@gnu.org; Thu, 11 Nov 2010 06:34:34 -0500 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1PGVQG-00019A-R5 for emacs-orgmode@gnu.org; Thu, 11 Nov 2010 12:34:32 +0100 Received: from rain.gmane.org ([80.91.229.7]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 11 Nov 2010 12:34:32 +0100 Received: from yhodique by rain.gmane.org with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 11 Nov 2010 12:34:32 +0100 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org >>>>> "Dov" == Dov Grobgeld writes: > Great! Thanks! Finally got it working. > Next question. Is it possible to get syntax highlighting in s5/org? This > might be more related to s5 than to s5-org though. Sure, but it's actually an org-mode question :) > #+SETUPFILE: s5.org > #+TITLE: Perl > #+AUTHOR: Dov Grobgeld > #+BIND: org-s5-html-preamble-footer "

A perl test

" > * Perl > - A simple perl program > #+begin_src perl > #!/usr/bin/perl > while(<>) { > print "$.: $_"; > } > #+end_src Well, it just works for me. The HTML export takes care of highlighting code blocks (probably using htmlize or something similar). Then org-s5 doesn't transform at all those parts of the document. In your case I'd say that probably the source code exporter might fail for whatever reason. Is it doing the right thing for "regular" HTML export ? Alternately, I might have configured something somewhere to have code highlighting enabled, but I can't remember :) (and definitely not anything specific to org-s5). Anyway I suspect the problem is more on the org-mode side this time, whatever it is. Yann. -- One uses power by grasping it lightly. To grasp with too much force is to be taken over by power, thus becoming its victim. -- Bene Gesserit Axiom From mboxrd@z Thu Jan 1 00:00:00 1970 From: Dov Grobgeld Subject: Re: Re: s5 presentation Date: Thu, 11 Nov 2010 14:21:59 +0200 Message-ID: References: <87zktg1y0b.fsf@siav.hodique.info> <87hbfotaml.fsf@qls-qa-yho-desk.eng.vmware.com> <877hgkt7pj.fsf@qls-qa-yho-desk.eng.vmware.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1431839627==" Return-path: Received: from [140.186.70.92] (port=45510 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PGWAF-0003uN-0W for emacs-orgmode@gnu.org; Thu, 11 Nov 2010 07:22:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PGWAD-0005a7-BS for emacs-orgmode@gnu.org; Thu, 11 Nov 2010 07:22:02 -0500 Received: from mail-qw0-f41.google.com ([209.85.216.41]:55124) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PGWAD-0005Zq-7V for emacs-orgmode@gnu.org; Thu, 11 Nov 2010 07:22:01 -0500 Received: by qwi2 with SMTP id 2so1915719qwi.0 for ; Thu, 11 Nov 2010 04:22:00 -0800 (PST) In-Reply-To: <877hgkt7pj.fsf@qls-qa-yho-desk.eng.vmware.com> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Yann Hodique Cc: emacs-orgmode@gnu.org --===============1431839627== Content-Type: multipart/alternative; boundary=001636426ceb3f55870494c60577 --001636426ceb3f55870494c60577 Content-Type: text/plain; charset=ISO-8859-1 Thanks. Indeed after installing htmlize did the html export contain the proper css formatting for keyword highlighting. But the generated html (neither in s5 org mode nor in normal html mode) does not contain the corresponding css for the syntax highllighted attributes (e.g. .org-string , .org-keyword, etc). But this is already outside the scope of s5-org and I'll ask this in a separate question. Regards, Dov On Thu, Nov 11, 2010 at 13:34, Yann Hodique wrote: > >>>>> "Dov" == Dov Grobgeld writes: > > > Great! Thanks! Finally got it working. > > Next question. Is it possible to get syntax highlighting in s5/org? This > > might be more related to s5 than to s5-org though. > > Sure, but it's actually an org-mode question :) > > > #+SETUPFILE: s5.org > > #+TITLE: Perl > > #+AUTHOR: Dov Grobgeld > > #+BIND: org-s5-html-preamble-footer "

A perl test

" > > > * Perl > > - A simple perl program > > > #+begin_src perl > > #!/usr/bin/perl > > while(<>) { > > print "$.: $_"; > > } > > #+end_src > > Well, it just works for me. The HTML export takes care of highlighting > code blocks (probably using htmlize or something similar). Then org-s5 > doesn't transform at all those parts of the document. > > In your case I'd say that probably the source code exporter might fail > for whatever reason. Is it doing the right thing for "regular" HTML > export ? > > Alternately, I might have configured something somewhere to have code > highlighting enabled, but I can't remember :) (and definitely not > anything specific to org-s5). Anyway I suspect the problem is more on > the org-mode side this time, whatever it is. > > Yann. > > -- > One uses power by grasping it lightly. To grasp with too much force is to > be > taken over by power, thus becoming its victim. > > -- Bene Gesserit Axiom > > > _______________________________________________ > Emacs-orgmode mailing list > Please use `Reply All' to send replies to the list. > Emacs-orgmode@gnu.org > http://lists.gnu.org/mailman/listinfo/emacs-orgmode > --001636426ceb3f55870494c60577 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable
Thanks. Indeed after installing htmlize did the html expor= t contain the proper css formatting for keyword highlighting. But the gener= ated html (neither in s5 org mode nor in normal html mode) does not contain= the corresponding css for the syntax highllighted attributes (e.g. .org-st= ring , .org-keyword, etc). But this is already outside the scope of s5-org = and I'll ask this in a separate question.

Regards,
Dov

On Thu, Nov 11, 2010 = at 13:34, Yann Hodique <yhodique@vmware.com> wrote:
>>>>> "Dov" =3D=3D Dov Grobgeld = <dov.grobgeld@gmail.com>= ; writes:

> Great! Thanks! Finally got it working.
> Next question. Is it possible to get syntax highlighting in s5/org? Th= is
> might be more related to s5 than to s5-org though.

Sure, but it's actually an org-mode question :)

> #+SETUPFILE: s5.org > #+TITLE: Perl
> #+AUTHOR: Dov Grobgeld
> #+BIND: org-s5-html-preamble-footer "<h1>A perl test</h1= >"

> * Perl
> - A simple perl program

> #+begin_src perl
> =A0 #!/usr/bin/perl
> =A0 while(<>) {
> =A0 =A0 =A0 print "$.: $_";
> =A0 }
> #+end_src

Well, it just works for me. The HTML export takes care of highlightin= g
code blocks (probably using htmlize or something similar). Then org-s5
doesn't transform at all those parts of the document.

In your case I'd say that probably the source code exporter might fail<= br> for whatever reason. Is it doing the right thing for "regular" HT= ML
export ?

Alternately, I might have configured something somewhere to have code
highlighting enabled, but I can't remember :) (and definitely not
anything specific to org-s5). Anyway I suspect the problem is more on
the org-mode side this time, whatever it is.

Yann.

--
One uses power by grasping it lightly. =A0To grasp with too much force is t= o be
taken over by power, thus becoming its victim.

=A0-- Bene Gesserit Axiom


_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

--001636426ceb3f55870494c60577-- --===============1431839627== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode --===============1431839627==--