Peng Liu | 5 Oct 2012 10:52
Picon
Favicon

(no subject)


. http://chineserestaurants.com.my/moneyatyourpc.php?qjID=y6w3

Peng Liu | 7 Sep 2012 14:09
Peng Liu | 2 Sep 2012 13:01
Picon
Favicon

(no subject)

<div><div><div><a href="http://berlitzuniontokyo.org/ibbsgls.php?yklt=yklt"> http://berlitzuniontokyo.org/ibbsgls.php?yklt=yklt</a></div></div></div>
Peng Liu | 1 Sep 2012 20:25
Picon
Favicon

FW:hi, see it!


Hi friend! http://www.brianchon.jazztel.es/pharmedicinehat-now.html?yFriendID=x9oh6

Peng Liu | 31 Aug 2012 20:46
Peng Liu | 31 Aug 2012 14:30
Picon
Favicon

(no subject)

<div><div><div><a href="http://siamroad.net/wp-admin/jhikdba.php?jkib=jkib"> http://siamroad.net/wp-admin/jhikdba.php?jkib=jkib</a></div></div></div>
Hans Ekbrand | 19 Jul 2012 00:33

<src lang="noweb"> not fully supported

First, thank you Michael Olsson and other muse-developers - I really
like muse and I am impressed by its capabilities.

Amongst other things, I blog with muse, and often I include source
code in my blog-posts.

It is indeed nice to have the <src> tag which automatically colors
those snippets when publishing to HTML.

I read http://mwolson.org/projects/MuseQuickStart.html#sec19 - which I
exemplified it in this blog-post
http://code.cjb.net/colorize-bash-scripts-in-html.html

Sometimes I blog about noweb, and in particular Latex, Sweave and R.
While there is a noweb-mode, colorizing of src marked noweb does not
really work.

Here is an example:

<src lang="noweb">
\documentclass{beamer}

% LaTeX settings
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[swedish]{babel}
\usepackage{array}
\usepackage{booktabs}
\usepackage{colortbl}
\usepackage{multirow}

% Sweave settings
\usepackage{tikz}
\usepackage[nogin]{Sweave}
\SweaveOpts{keep.source=TRUE,cache=F,prefix.string=sweave-cache/figs/fig}

\title{Here comes the title}
\author{Your Name}
\begin{document}
% Beamer settings
\definecolor{darkred}{rgb}{0.545,0,0}
\definecolor{midnightblue}{rgb}{0.098,0.098,0.439}
\DefineVerbatimEnvironment{Sinput}{Verbatim}{fontshape=sl,formatcom=\color{midnightblue}}
\DefineVerbatimEnvironment{Soutput}{Verbatim}{formatcom=\color{darkred}}
\DefineVerbatimEnvironment{Scode}{Verbatim}{fontshape=sl,formatcom=\color{blue}}

\maketitle

<<setup,echo=F,print=F,cache=F>>=
setCacheDir("sweave-cache/values")
options(width=60)
 <at> 

\section{Some header}
\subsection{Some problem 1}

\begin{frame}[fragile] \frametitle{3.1.a}
Calculate the probability for a standard normally distributed variable to be larger than 3.
\begin{small}
<<ISwR-3-1-0,fig=F,eval=F>>=
curve(dnorm, from = -4, to = 4)
abline(v=3)
abline(h=0)
 <at> 
</src>

What I would exepect is out like in http://code.cjb.net/TeachingR.html
but only the latex parts are colored. If I define the snippet as "R"
or "ess", only the R chunks are colored.

When I open a noweb-file (with the .Rnw file extension), only the latex parts are colored at the beginning -
the R chunks get their color only when the insertion-mark has passed through them (as when you set the
insertion-mark at the top of the document and then keep Ctrl-n down to move it downwards through the chunks).

If muse could do this, execute next-line through the buffer, I think
the colorizing would be just fine. On the other hand, I understand
that you might not want to implement such a hack. 

Even if noweb in itself is a very nice idea, it does complicate
matters when code from different languages are mixed.

Or, perhaps there is a hook somewhere in noweb-mode that could be used
that someone on the list knows about?

Currently, I work around it by creating lots of <src> parts, some with
<src lang="latex"> and others with <src lang="R"> and I edit the HTML
manually afterwards, joining them together.

--

-- 
Hans Ekbrand

Peng Liu | 20 Jun 2012 06:20
Emit Sorrels | 21 Mar 2012 21:16
Picon

How do I link between multiple projects

I have the following set up in .emacs

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

(require 'muse-mode)
(require 'muse-html)
(require 'muse-project)
(require 'muse-publish)

(setq muse-project-alist
           '(("Foo"
              ("~/Foo" :default "index")
              (:base "html" :path "/var/www/Foo"))

             ("Bar"
              ("~/Bar")
              (:base "html" :path "/var/www/Bar"))))

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;


I can work on Foo and Bar separately and muse mode works very well.
Now I want to have some links between the two projects... I'm not sure but it looks like I want something like the Bar#EntryName form of a interproject link in the emacs wiki mode.

The following works:
In project Foo I have
[[../Bar/EntryName.html][EntryName]]
However I don't like it hard linking to an html file. Plus, I can't press enter on the link in emacs to go straight to the .muse file.

The following does not work:
[[../Bar/EntryName][EntryName]]
I can follow the link in emacs to edit the .muse file, but the generated html file in project Foo has a link to ../Bar/EntryName without the .html suffix.

What is the correct way to handle this?
<div>
<div>I have the following set up in .emacs</div>
<div>
<br class="Apple-interchange-newline">;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;</div>
<div><br></div>
<div>(require 'muse-mode)</div>
<div>(require 'muse-html)</div>
<div>(require 'muse-project)</div>
<div>(require 'muse-publish)</div>
<div><br></div>
<div>
<div>(setq muse-project-alist</div>
<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;'(("Foo"</div>
<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ("~/Foo" :default "index")</div>
<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; (:base "html" :path "/var/www/Foo"))</div>
<div><br></div>
<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;("Bar"</div>
<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ("~/Bar")</div>
<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; (:base "html" :path "/var/www/Bar"))))</div>
<div><br></div>
</div>
<div>;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;</div>
<div><br></div>
<div><br></div>
<div>I can work on Foo and Bar separately and muse mode works very well.</div>
<div>Now I want to have some links between the two projects... I'm not sure but it looks like I want something like the Bar#EntryName form of a interproject link in the emacs wiki mode.</div>
<div><br></div>
<div>The following works:</div>
<div>In project Foo I have</div>
<div>[[../Bar/EntryName.html][EntryName]]</div>
<div>However I don't like it hard linking to an html file. Plus, I can't press enter on the link in emacs to go straight to the .muse file.</div>
<div><br></div>
<div>The following does not work:</div>
<div><div>[[../Bar/EntryName][EntryName]]</div></div>
<div>I can follow the link in emacs to edit the .muse file, but the generated html file in project Foo has a link to ../Bar/EntryName without the .html suffix.</div>
<div><br></div>
<div>What is the correct way to handle this?</div>
</div>
Seb | 6 Mar 2012 17:38
Picon
Gravatar

today.html

Hi,

Following an upgrade about a couple of months ago, I see that a
today.html symlink pointing to the published page is produced.  What is
the purpose of this symlink and is there some variable to suppress its
generation?

Thanks,

--

-- 
Seb

Peter Davis | 15 Nov 2011 23:41

Working on Windows and Mac

I'm trying to set up Muse so I can work on either a Windows 7 machine or a Mac.  One problem I've run into is that on the Mac, when Muse creates a new file (from my clicking on a new link), the file does not have a .muse extension, so C-c C-p doesn't work, etc.


Anyone know a workaround for this?

Thanks!

-pd


--
----
The Tech Curmudgeon


<div>
<p>I'm trying to set up Muse so I can work on either a Windows 7 machine or a Mac. &nbsp;One problem I've run into is that on the Mac, when Muse creates a new file (from my clicking on a new link), the file does not have a .muse extension, so C-c C-p doesn't work, etc.</p>
<div>
<br>
</div>
<div>Anyone know a workaround for this?</div>
<div><br></div>
<div>Thanks!</div>
<div><br></div>
<div>-pd<br><div>
<br clear="all"><div><br></div>-- <br><span>----<div>
The Tech Curmudgeon</div>
<div><a href="http://www.techcurmudgeon.com/" target="_blank">http://www.techcurmudgeon.com</a></div>
<div><br></div></span><br>
</div>
</div>
</div>

Gmane