5 Oct 2012 10:52
(no subject)
Peng Liu <lphpc <at> yahoo.com>
2012-10-05 08:52:14 GMT
2012-10-05 08:52:14 GMT
. http://chineserestaurants.com.my/moneyatyourpc.php?qjID=y6w3
. http://chineserestaurants.com.my/moneyatyourpc.php?qjID=y6w3
<div><div><div><a href="http://www.howdiysolarpanels.com/wp-content/plugins/all-in-one-seo-pack/nwmslck.php?ecgb=ecgb"> http://www.howdiysolarpanels.com/wp-content/plugins/all-in-one-seo-pack/nwmslck.php?ecgb=ecgb</a></div></div></div>
<div><div><div><a href="http://berlitzuniontokyo.org/ibbsgls.php?yklt=yklt"> http://berlitzuniontokyo.org/ibbsgls.php?yklt=yklt</a></div></div></div>
Hi friend! http://www.brianchon.jazztel.es/pharmedicinehat-now.html?yFriendID=x9oh6
<div><div><div><a href="http://unlimitedflooringsheffield.co.uk/pmngbl.php?clwz=clwz"> http://unlimitedflooringsheffield.co.uk/pmngbl.php?clwz=clwz</a></div></div></div>
<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>
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
<div><div><div><a href="http://www.adamduncan.com/activeNarrative/wp-content/themes/suffusion/rowkla.html?vb=edeh.dhega&uedha=yp.dhm&zdmz=vxvo"> http://www.adamduncan.com/activeNarrative/wp-content/themes/suffusion/rowkla.html?vb=edeh.dhega&uedha=yp.dhm&zdmz=vxvo</a></div></div></div>
<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> '(("Foo"</div>
<div> ("~/Foo" :default "index")</div>
<div> (:base "html" :path "/var/www/Foo"))</div>
<div><br></div>
<div> ("Bar"</div>
<div> ("~/Bar")</div>
<div> (: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>
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
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.
<div> <p>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.</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>
| Mon | Tue | Wed | Thu | Fri | Sat | Sun |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | 5 | ||
| 6 | 7 | 8 | 9 | 10 | 11 | 12 |
| 13 | 14 | 15 | 16 | 17 | 18 | 19 |
| 20 | 21 | 22 | 23 | 24 | 25 | 26 |
| 27 | 28 | 29 | 30 | 31 |
RSS Feed1 | |
|---|---|
3 | |
2 | |
1 | |
1 | |
12 | |
1 | |
16 | |
3 | |
2 | |
1 | |
6 | |
7 | |
10 | |
2 | |
4 | |
2 | |
11 | |
16 | |
33 | |
10 | |
17 | |
3 | |
8 | |
6 | |
5 | |
8 | |
3 | |
15 | |
4 | |
3 | |
26 | |
14 | |
27 | |
9 | |
37 | |
21 | |
20 | |
15 | |
12 | |
16 | |
69 | |
25 | |
63 | |
73 | |
18 | |
41 | |
49 | |
57 | |
70 | |
89 | |
88 | |
37 | |
99 | |
12 | |
27 | |
40 | |
18 | |
45 | |
62 | |
101 | |
88 | |
58 | |
8 |