<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wikemacs.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=PuercoPop</id>
	<title>WikEmacs - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wikemacs.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=PuercoPop"/>
	<link rel="alternate" type="text/html" href="https://wikemacs.org/wiki/Special:Contributions/PuercoPop"/>
	<updated>2026-04-19T14:13:34Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.35.14</generator>
	<entry>
		<id>https://wikemacs.org/index.php?title=Eshell&amp;diff=3612</id>
		<title>Eshell</title>
		<link rel="alternate" type="text/html" href="https://wikemacs.org/index.php?title=Eshell&amp;diff=3612"/>
		<updated>2012-11-16T15:18:14Z</updated>

		<summary type="html">&lt;p&gt;PuercoPop: Add Page to category shell&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Eshell is an entire shell by [[John Wiegley]] written in [[Emacs Lisp]].&lt;br /&gt;
&lt;br /&gt;
[[Category:Shell]]&lt;/div&gt;</summary>
		<author><name>PuercoPop</name></author>
	</entry>
	<entry>
		<id>https://wikemacs.org/index.php?title=Rcirc&amp;diff=3431</id>
		<title>Rcirc</title>
		<link rel="alternate" type="text/html" href="https://wikemacs.org/index.php?title=Rcirc&amp;diff=3431"/>
		<updated>2012-10-16T21:52:09Z</updated>

		<summary type="html">&lt;p&gt;PuercoPop: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Package&lt;br /&gt;
|name=rcirc&lt;br /&gt;
|description=Simple IRC client.\&lt;br /&gt;
|author= Alexander L. Belikoff &amp;amp; Others&lt;br /&gt;
|maintainer=Michael Olson&lt;br /&gt;
|source=http://savannah.gnu.org/projects/erc/&lt;br /&gt;
|in_emacs=yes, since 22.0&lt;br /&gt;
|Development status=active&lt;br /&gt;
|website=http://www.gnu.org/software/erc &lt;br /&gt;
|manual=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
rcirc is an Emacs IRC client.&lt;br /&gt;
&lt;br /&gt;
== Basic Setup ==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;lisp&amp;quot;&amp;gt;&lt;br /&gt;
(require 'rcirc)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
(setq rcirc-default-nick &amp;quot;John Doe&amp;quot;)&lt;br /&gt;
(setq rcirc-default-full-name &amp;quot;John Doe&amp;quot;)&lt;br /&gt;
(setq rcirc-authinfo&lt;br /&gt;
      '((&amp;quot;freenode&amp;quot; nickserv freenode-nickserv-nick freenode-nickserv-password)&lt;br /&gt;
        (&amp;quot;freenode&amp;quot; chanserv &amp;quot;your nick&amp;quot; &amp;quot;#hiddenchan&amp;quot; &amp;quot;ninjaisthepassword&amp;quot;)))&lt;br /&gt;
&lt;br /&gt;
(setq rcirc-server-alist&lt;br /&gt;
      '((&amp;quot;irc.freenode.net&amp;quot;&lt;br /&gt;
         :port 7000&lt;br /&gt;
         :channels (&amp;quot;#emacs&amp;quot; &amp;quot;#lisp&amp;quot; &amp;quot;#clojure #emacs&amp;quot;))))&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Enable SSL ==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;lisp&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
(setq rcirc-server-alist&lt;br /&gt;
      '((&amp;quot;irc.freenode.net&amp;quot;&lt;br /&gt;
         :port 7000&lt;br /&gt;
         :connect-function open-tls-stream&lt;br /&gt;
         :channels (&amp;quot;#emacs&amp;quot; &amp;quot;#lisp&amp;quot; &amp;quot;#clojure #emacs&amp;quot;))))&lt;br /&gt;
;; Don't forget to add (require 'tls) first&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
[http://www.gnu.org/software/emacs/manual/rcirc.html rcirc Manual]&lt;br /&gt;
&lt;br /&gt;
[[Category:Chat]]&lt;/div&gt;</summary>
		<author><name>PuercoPop</name></author>
	</entry>
	<entry>
		<id>https://wikemacs.org/index.php?title=Rcirc&amp;diff=3430</id>
		<title>Rcirc</title>
		<link rel="alternate" type="text/html" href="https://wikemacs.org/index.php?title=Rcirc&amp;diff=3430"/>
		<updated>2012-10-16T21:51:35Z</updated>

		<summary type="html">&lt;p&gt;PuercoPop: Some initial contento on rcirc&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Package&lt;br /&gt;
|name=rcirc&lt;br /&gt;
|description=Simple IRC client.\&lt;br /&gt;
|author= Alexander L. Belikoff &amp;amp; Others&lt;br /&gt;
|maintainer=Michael Olson&lt;br /&gt;
|source=http://savannah.gnu.org/projects/erc/&lt;br /&gt;
|in_emacs=yes, since 22.0&lt;br /&gt;
|Development status=active&lt;br /&gt;
|website=http://www.gnu.org/software/erc &lt;br /&gt;
|manual=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
rcirc is an Emacs IRC client.&lt;br /&gt;
&lt;br /&gt;
== Basic Setup ==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;lisp&amp;quot;&amp;gt;&lt;br /&gt;
(require 'rcirc)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
(setq rcirc-default-nick &amp;quot;John Doe&amp;quot;)&lt;br /&gt;
(setq rcirc-default-full-name &amp;quot;John Doe&amp;quot;)&lt;br /&gt;
(setq rcirc-authinfo&lt;br /&gt;
      '((&amp;quot;freenode&amp;quot; nickserv freenode-nickserv-nick freenode-nickserv-password)&lt;br /&gt;
        (&amp;quot;freenode&amp;quot; chanserv &amp;quot;PuercoPop&amp;quot; &amp;quot;#hiddenchan&amp;quot; &amp;quot;ninjaisthepassword&amp;quot;)))&lt;br /&gt;
&lt;br /&gt;
(setq rcirc-server-alist&lt;br /&gt;
      '((&amp;quot;irc.freenode.net&amp;quot;&lt;br /&gt;
         :port 7000&lt;br /&gt;
         :channels (&amp;quot;#emacs&amp;quot; &amp;quot;#lisp&amp;quot; &amp;quot;#clojure #emacs&amp;quot;))))&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Enable SSL ==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;lisp&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
(setq rcirc-server-alist&lt;br /&gt;
      '((&amp;quot;irc.freenode.net&amp;quot;&lt;br /&gt;
         :port 7000&lt;br /&gt;
         :connect-function open-tls-stream&lt;br /&gt;
         :channels (&amp;quot;#emacs&amp;quot; &amp;quot;#lisp&amp;quot; &amp;quot;#clojure #emacs&amp;quot;))))&lt;br /&gt;
;; Don't forget to add (require 'tls) first&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
[http://www.gnu.org/software/emacs/manual/rcirc.html rcirc Manual]&lt;br /&gt;
&lt;br /&gt;
[[Category:Chat]]&lt;/div&gt;</summary>
		<author><name>PuercoPop</name></author>
	</entry>
	<entry>
		<id>https://wikemacs.org/index.php?title=MELPA&amp;diff=3361</id>
		<title>MELPA</title>
		<link rel="alternate" type="text/html" href="https://wikemacs.org/index.php?title=MELPA&amp;diff=3361"/>
		<updated>2012-08-27T05:13:11Z</updated>

		<summary type="html">&lt;p&gt;PuercoPop: Added a Troubleshooting section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''MELPA''' (or Milkypostman’s ELPA or Milkypostman’s Experimental Lisp Package Repository if you’re not into the whole brevity thing) is a [[package.el]] repository for development versions of Emacs packages (hot from the repo).&lt;br /&gt;
&lt;br /&gt;
== Basic setup ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;lisp&amp;quot;&amp;gt;&lt;br /&gt;
(add-to-list 'package-archives&lt;br /&gt;
             '(&amp;quot;melpa&amp;quot; . &amp;quot;http://melpa.milkbox.net/packages/&amp;quot;) t)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Helpful keybindings ==&lt;br /&gt;
&lt;br /&gt;
== Trouble Shooting ==&lt;br /&gt;
&lt;br /&gt;
Emacs Elpa and [[Wanderlust]] requirement, flim have a conflict. See more at http://gelvaos.blogspot.com/2010/11/emacs-elpa-and-wanderlust.html&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
&lt;br /&gt;
* [[Marmalade]]&lt;br /&gt;
* [[package.el]]&lt;br /&gt;
* [[el-get]]&lt;br /&gt;
&lt;br /&gt;
== Project Pages ==&lt;br /&gt;
&lt;br /&gt;
* [http://melpa.milkbox.net/ Project Page]&lt;br /&gt;
* [https://github.com/milkypostman/melpa GitHub Repo]&lt;br /&gt;
&lt;br /&gt;
== Tutorial Pages ==&lt;br /&gt;
&lt;br /&gt;
* [http://batsov.com/articles/2012/04/06/melpa-homebrew-emacs-edition/ MELPA - Homebrew (Emacs Edition)]&lt;br /&gt;
&lt;br /&gt;
[[Category:Project Management]][[Category:Convenience]]&lt;/div&gt;</summary>
		<author><name>PuercoPop</name></author>
	</entry>
	<entry>
		<id>https://wikemacs.org/index.php?title=Marmalade&amp;diff=3355</id>
		<title>Marmalade</title>
		<link rel="alternate" type="text/html" href="https://wikemacs.org/index.php?title=Marmalade&amp;diff=3355"/>
		<updated>2012-08-22T23:18:21Z</updated>

		<summary type="html">&lt;p&gt;PuercoPop: Undo revision 2896 by 188.143.232.12 (talk)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Marmalade''' is a [[package.el]] repository, supported by the Emacs community. It's best known feature is the ability to submit Emacs packages directly via Marmalade's web UI.&lt;br /&gt;
&lt;br /&gt;
== Basic setup ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;lisp&amp;quot;&amp;gt;&lt;br /&gt;
(require 'package)&lt;br /&gt;
(add-to-list 'package-archives&lt;br /&gt;
             '(&amp;quot;marmalade&amp;quot; . &amp;quot;http://marmalade-repo.org/packages/&amp;quot;))&lt;br /&gt;
(package-initialize)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
&lt;br /&gt;
* [[MELPA]]&lt;br /&gt;
* [[package.el]]&lt;br /&gt;
* [[el-get]]&lt;br /&gt;
&lt;br /&gt;
== Project Pages ==&lt;br /&gt;
&lt;br /&gt;
* [http://melpa.milkbox.net/ Project Page]&lt;br /&gt;
* [https://github.com/milkypostman/melpa GitHub Repo]&lt;br /&gt;
&lt;br /&gt;
== Tutorial Pages ==&lt;br /&gt;
&lt;br /&gt;
[[Category:Project Management]][[Category:Convenience]]&lt;/div&gt;</summary>
		<author><name>PuercoPop</name></author>
	</entry>
	<entry>
		<id>https://wikemacs.org/index.php?title=Marmalade&amp;diff=3354</id>
		<title>Marmalade</title>
		<link rel="alternate" type="text/html" href="https://wikemacs.org/index.php?title=Marmalade&amp;diff=3354"/>
		<updated>2012-08-22T23:18:09Z</updated>

		<summary type="html">&lt;p&gt;PuercoPop: Undo revision 2971 by 37.220.13.23 (talk)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Marmalade''' is a [[package.el]] repository, supported by the Emacs community. It's best known feature is the ability to submit Emacs packages directly via Marmalade's web UI.&lt;br /&gt;
&lt;br /&gt;
== Basic setup ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;lisp&amp;quot;&amp;gt;&lt;br /&gt;
(require 'package)&lt;br /&gt;
(add-to-list 'package-archives&lt;br /&gt;
             '(&amp;quot;marmalade&amp;quot; . &amp;quot;http://marmalade-repo.org/packages/&amp;quot;))&lt;br /&gt;
(package-initialize)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
&lt;br /&gt;
* [[MELPA]]&lt;br /&gt;
* [[package.el]]&lt;br /&gt;
* [[el-get]]&lt;br /&gt;
&lt;br /&gt;
What host are you using? With the admin still under active dpeelovment we haven't been testing far and wide yet (just MAMP, a basic Dreamhost account, and a blank-slate Linode instance) but we plan on adding more hosts to the list to get it working under as many out-of-the-box host installs as possible. As for the problem at hand, check out the RewriteBase command in the .htaccess. That's most likely where you're running into issues if it wasn't set correctly (or if it was set to a symlink directory without +FollowSymlinks working) then you'd run into the problems you're describing&lt;br /&gt;
&lt;br /&gt;
== Tutorial Pages ==&lt;br /&gt;
&lt;br /&gt;
[[Category:Project Management]][[Category:Convenience]]&lt;/div&gt;</summary>
		<author><name>PuercoPop</name></author>
	</entry>
	<entry>
		<id>https://wikemacs.org/index.php?title=O-blog&amp;diff=3078</id>
		<title>O-blog</title>
		<link rel="alternate" type="text/html" href="https://wikemacs.org/index.php?title=O-blog&amp;diff=3078"/>
		<updated>2012-07-10T17:19:52Z</updated>

		<summary type="html">&lt;p&gt;PuercoPop: /* Export to html */ Using proper template Command instead of Key&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Package&lt;br /&gt;
|name=o-blog&lt;br /&gt;
|description=A stand-alone blog and publication tool for org-mode.&lt;br /&gt;
|author=Sébastien Gross&lt;br /&gt;
|source=http://github.com/renard/o-blog&lt;br /&gt;
|in_emacs=no&lt;br /&gt;
|Development status=active&lt;br /&gt;
|website=http://renard.github.com/o-blog/&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Instalation ==&lt;br /&gt;
&lt;br /&gt;
==Writing a Post with o-blog==&lt;br /&gt;
&lt;br /&gt;
Starting with and org-mode TODO. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;lisp&amp;quot;&amp;gt;&lt;br /&gt;
** TODO&lt;br /&gt;
:PROPERTIES:&lt;br /&gt;
:tags:FirstPost, Emacs&lt;br /&gt;
:END:&lt;br /&gt;
&amp;lt;text comes here&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
When finished make the TODO as done with {{Keys|C-c C-t}}&lt;br /&gt;
&lt;br /&gt;
==Using the default template==&lt;br /&gt;
&lt;br /&gt;
If one is the to use the default template without modification one has to add the following posts: Copyright, About, Navigation, Navigation Footer&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;lisp&amp;quot;&amp;gt;&lt;br /&gt;
** About&lt;br /&gt;
:PROPERTIES:&lt;br /&gt;
:SNIPPET: t&lt;br /&gt;
:END:&lt;br /&gt;
&amp;lt;about text here&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Export to html==&lt;br /&gt;
&lt;br /&gt;
{{Command| export-to-blog}}&lt;br /&gt;
&lt;br /&gt;
== Other misc stuff ==&lt;br /&gt;
To use the disqus plataform with o-blog add the &lt;br /&gt;
&amp;lt;source lang=&amp;quot;lisp&amp;quot;&amp;gt;&lt;br /&gt;
#+DISQUS: &amp;lt;disqus handle&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can add links a-la-org-mode type {{Keys|C-c C-l}} Paste the url and then the description of the link&lt;br /&gt;
&lt;br /&gt;
[[Category:Blog]]&lt;/div&gt;</summary>
		<author><name>PuercoPop</name></author>
	</entry>
	<entry>
		<id>https://wikemacs.org/index.php?title=O-blog&amp;diff=3077</id>
		<title>O-blog</title>
		<link rel="alternate" type="text/html" href="https://wikemacs.org/index.php?title=O-blog&amp;diff=3077"/>
		<updated>2012-07-10T08:42:48Z</updated>

		<summary type="html">&lt;p&gt;PuercoPop: Added Category Blog in the footer&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Package&lt;br /&gt;
|name=o-blog&lt;br /&gt;
|description=A stand-alone blog and publication tool for org-mode.&lt;br /&gt;
|author=Sébastien Gross&lt;br /&gt;
|source=http://github.com/renard/o-blog&lt;br /&gt;
|in_emacs=no&lt;br /&gt;
|Development status=active&lt;br /&gt;
|website=http://renard.github.com/o-blog/&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Instalation ==&lt;br /&gt;
&lt;br /&gt;
==Writing a Post with o-blog==&lt;br /&gt;
&lt;br /&gt;
Starting with and org-mode TODO. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;lisp&amp;quot;&amp;gt;&lt;br /&gt;
** TODO&lt;br /&gt;
:PROPERTIES:&lt;br /&gt;
:tags:FirstPost, Emacs&lt;br /&gt;
:END:&lt;br /&gt;
&amp;lt;text comes here&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
When finished make the TODO as done with {{Keys|C-c C-t}}&lt;br /&gt;
&lt;br /&gt;
==Using the default template==&lt;br /&gt;
&lt;br /&gt;
If one is the to use the default template without modification one has to add the following posts: Copyright, About, Navigation, Navigation Footer&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;lisp&amp;quot;&amp;gt;&lt;br /&gt;
** About&lt;br /&gt;
:PROPERTIES:&lt;br /&gt;
:SNIPPET: t&lt;br /&gt;
:END:&lt;br /&gt;
&amp;lt;about text here&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Export to html==&lt;br /&gt;
&lt;br /&gt;
{{Keys| M-x export-to-blog}}&lt;br /&gt;
&lt;br /&gt;
== Other misc stuff ==&lt;br /&gt;
To use the disqus plataform with o-blog add the &lt;br /&gt;
&amp;lt;source lang=&amp;quot;lisp&amp;quot;&amp;gt;&lt;br /&gt;
#+DISQUS: &amp;lt;disqus handle&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can add links a-la-org-mode type {{Keys|C-c C-l}} Paste the url and then the description of the link&lt;br /&gt;
&lt;br /&gt;
[[Category:Blog]]&lt;/div&gt;</summary>
		<author><name>PuercoPop</name></author>
	</entry>
	<entry>
		<id>https://wikemacs.org/index.php?title=Blogging&amp;diff=3076</id>
		<title>Blogging</title>
		<link rel="alternate" type="text/html" href="https://wikemacs.org/index.php?title=Blogging&amp;diff=3076"/>
		<updated>2012-07-10T08:41:41Z</updated>

		<summary type="html">&lt;p&gt;PuercoPop: Undo revision 2978 by 178.23.56.185 (talk)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Modes ==&lt;br /&gt;
&lt;br /&gt;
Each of these modes is effectively an in-emacs application.&lt;br /&gt;
&lt;br /&gt;
* [[ oddmuse ]]&lt;br /&gt;
* [[ org-mode ]] can be used for blogging&lt;br /&gt;
&lt;br /&gt;
[[Category:Blog]]&lt;/div&gt;</summary>
		<author><name>PuercoPop</name></author>
	</entry>
	<entry>
		<id>https://wikemacs.org/index.php?title=O-blog&amp;diff=3075</id>
		<title>O-blog</title>
		<link rel="alternate" type="text/html" href="https://wikemacs.org/index.php?title=O-blog&amp;diff=3075"/>
		<updated>2012-07-10T06:59:08Z</updated>

		<summary type="html">&lt;p&gt;PuercoPop: Starting page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Package&lt;br /&gt;
|name=o-blog&lt;br /&gt;
|description=A stand-alone blog and publication tool for org-mode.&lt;br /&gt;
|author=Sébastien Gross&lt;br /&gt;
|source=http://github.com/renard/o-blog&lt;br /&gt;
|in_emacs=no&lt;br /&gt;
|Development status=active&lt;br /&gt;
|website=http://renard.github.com/o-blog/&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Instalation ==&lt;br /&gt;
&lt;br /&gt;
==Writing a Post with o-blog==&lt;br /&gt;
&lt;br /&gt;
Starting with and org-mode TODO. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;lisp&amp;quot;&amp;gt;&lt;br /&gt;
** TODO&lt;br /&gt;
:PROPERTIES:&lt;br /&gt;
:tags:FirstPost, Emacs&lt;br /&gt;
:END:&lt;br /&gt;
&amp;lt;text comes here&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
When finished make the TODO as done with {{Keys|C-c C-t}}&lt;br /&gt;
&lt;br /&gt;
==Using the default template==&lt;br /&gt;
&lt;br /&gt;
If one is the to use the default template without modification one has to add the following posts: Copyright, About, Navigation, Navigation Footer&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;lisp&amp;quot;&amp;gt;&lt;br /&gt;
** About&lt;br /&gt;
:PROPERTIES:&lt;br /&gt;
:SNIPPET: t&lt;br /&gt;
:END:&lt;br /&gt;
&amp;lt;about text here&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Export to html==&lt;br /&gt;
&lt;br /&gt;
{{Keys| M-x export-to-blog}}&lt;br /&gt;
&lt;br /&gt;
== Other misc stuff ==&lt;br /&gt;
To use the disqus plataform with o-blog add the &lt;br /&gt;
&amp;lt;source lang=&amp;quot;lisp&amp;quot;&amp;gt;&lt;br /&gt;
#+DISQUS: &amp;lt;disqus handle&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can add links a-la-org-mode type {{Keys|C-c C-l}} Paste the url and then the description of the link&lt;/div&gt;</summary>
		<author><name>PuercoPop</name></author>
	</entry>
	<entry>
		<id>https://wikemacs.org/index.php?title=User:PuercoPop&amp;diff=3074</id>
		<title>User:PuercoPop</title>
		<link rel="alternate" type="text/html" href="https://wikemacs.org/index.php?title=User:PuercoPop&amp;diff=3074"/>
		<updated>2012-07-10T06:54:21Z</updated>

		<summary type="html">&lt;p&gt;PuercoPop: /* Writing a Post with o-blog */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Widgets To Remember=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=o-Blog Draft=&lt;br /&gt;
{{Package&lt;br /&gt;
|name=o-blog&lt;br /&gt;
|description=A stand-alone blog and publication tool for org-mode.&lt;br /&gt;
|author=Sébastien Gross&lt;br /&gt;
|source=http://github.com/renard/o-blog&lt;br /&gt;
|in_emacs=no&lt;br /&gt;
|Development status=active&lt;br /&gt;
|website=http://renard.github.com/o-blog/&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Instalation ==&lt;br /&gt;
&lt;br /&gt;
==Writing a Post with o-blog==&lt;br /&gt;
&lt;br /&gt;
Starting with and org-mode TODO. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;lisp&amp;quot;&amp;gt;&lt;br /&gt;
** TODO&lt;br /&gt;
:PROPERTIES:&lt;br /&gt;
:tags:FirstPost, Emacs&lt;br /&gt;
:END:&lt;br /&gt;
&amp;lt;text comes here&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
When finished make the TODO as done with {{Keys|C-c C-t}}&lt;br /&gt;
&lt;br /&gt;
==Using the default template==&lt;br /&gt;
&lt;br /&gt;
If one is the to use the default template without modification one has to add the following posts: Copyright, About, Navigation, Navigation Footer&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;lisp&amp;quot;&amp;gt;&lt;br /&gt;
** About&lt;br /&gt;
:PROPERTIES:&lt;br /&gt;
:SNIPPET: t&lt;br /&gt;
:END:&lt;br /&gt;
&amp;lt;about text here&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Export to html==&lt;br /&gt;
&lt;br /&gt;
{{Keys| M-x export-to-blog}}&lt;br /&gt;
&lt;br /&gt;
== Other misc stuff ==&lt;br /&gt;
+disqus&lt;br /&gt;
links&lt;br /&gt;
required outlines&lt;br /&gt;
&lt;br /&gt;
Why are this required?&lt;br /&gt;
&lt;br /&gt;
generate the files&lt;/div&gt;</summary>
		<author><name>PuercoPop</name></author>
	</entry>
	<entry>
		<id>https://wikemacs.org/index.php?title=User:PuercoPop&amp;diff=3073</id>
		<title>User:PuercoPop</title>
		<link rel="alternate" type="text/html" href="https://wikemacs.org/index.php?title=User:PuercoPop&amp;diff=3073"/>
		<updated>2012-07-10T06:50:06Z</updated>

		<summary type="html">&lt;p&gt;PuercoPop: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Widgets To Remember=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=o-Blog Draft=&lt;br /&gt;
{{Package&lt;br /&gt;
|name=o-blog&lt;br /&gt;
|description=A stand-alone blog and publication tool for org-mode.&lt;br /&gt;
|author=Sébastien Gross&lt;br /&gt;
|source=http://github.com/renard/o-blog&lt;br /&gt;
|in_emacs=no&lt;br /&gt;
|Development status=active&lt;br /&gt;
|website=http://renard.github.com/o-blog/&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Instalation ==&lt;br /&gt;
&lt;br /&gt;
==Writing a Post with o-blog==&lt;br /&gt;
&lt;br /&gt;
Starting with and org-mode TODO. :PROPERTIES:&lt;br /&gt;
:tags:&lt;br /&gt;
:END:&lt;br /&gt;
&amp;lt;text comes here&amp;gt;&lt;br /&gt;
&lt;br /&gt;
When finished make the TODO as done with {{Keys|C-c C-t}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Using the default template==&lt;br /&gt;
&lt;br /&gt;
If one is the to use the default template without modification one has to add the following posts: Copyright, About, Navigation, Navigation Footer&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;lisp&amp;quot;&amp;gt;&lt;br /&gt;
** About&lt;br /&gt;
:PROPERTIES:&lt;br /&gt;
:SNIPPET: t&lt;br /&gt;
:END:&lt;br /&gt;
&amp;lt;about text here&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Export to html==&lt;br /&gt;
&lt;br /&gt;
{{Keys| M-x export-to-blog}}&lt;br /&gt;
&lt;br /&gt;
== Other misc stuff ==&lt;br /&gt;
+disqus&lt;br /&gt;
links&lt;br /&gt;
required outlines&lt;br /&gt;
&lt;br /&gt;
Why are this required?&lt;br /&gt;
&lt;br /&gt;
generate the files&lt;/div&gt;</summary>
		<author><name>PuercoPop</name></author>
	</entry>
	<entry>
		<id>https://wikemacs.org/index.php?title=User:PuercoPop&amp;diff=3072</id>
		<title>User:PuercoPop</title>
		<link rel="alternate" type="text/html" href="https://wikemacs.org/index.php?title=User:PuercoPop&amp;diff=3072"/>
		<updated>2012-07-10T06:39:10Z</updated>

		<summary type="html">&lt;p&gt;PuercoPop: /* o-Blog Draft */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Widgets To Remember=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=o-Blog Draft=&lt;br /&gt;
{{Package&lt;br /&gt;
|name=o-blog&lt;br /&gt;
|description=A stand-alone blog and publication tool for org-mode.&lt;br /&gt;
|author=Sébastien Gross&lt;br /&gt;
|source=http://github.com/renard/o-blog&lt;br /&gt;
|in_emacs=no&lt;br /&gt;
|Development status=active&lt;br /&gt;
|website=http://renard.github.com/o-blog/&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Writing a Post with o-blog==&lt;br /&gt;
&lt;br /&gt;
Starting with and org-mode TODO. :PROPERTIES:&lt;br /&gt;
:tags:&lt;br /&gt;
:END:&lt;br /&gt;
&amp;lt;text comes here&amp;gt;&lt;br /&gt;
&lt;br /&gt;
When finished make the TODO as done with C-c C-t&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Using the default template==&lt;br /&gt;
&lt;br /&gt;
If one is the to use the default template without modification one has to add the following POST with the Properties Snippets: Copyright, About, Navigation, Navigation Footer&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Closing remarks==&lt;br /&gt;
&lt;br /&gt;
M-x export-to-blog&lt;br /&gt;
&lt;br /&gt;
required outlines&lt;br /&gt;
&lt;br /&gt;
Why are this required?&lt;br /&gt;
&lt;br /&gt;
generate the files&lt;/div&gt;</summary>
		<author><name>PuercoPop</name></author>
	</entry>
	<entry>
		<id>https://wikemacs.org/index.php?title=User:PuercoPop&amp;diff=3071</id>
		<title>User:PuercoPop</title>
		<link rel="alternate" type="text/html" href="https://wikemacs.org/index.php?title=User:PuercoPop&amp;diff=3071"/>
		<updated>2012-07-10T06:30:09Z</updated>

		<summary type="html">&lt;p&gt;PuercoPop: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Widgets To Remember=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=o-Blog Draft=&lt;br /&gt;
{{Package&lt;br /&gt;
|name=o-blog&lt;br /&gt;
|description=A stand-alone blog and publication tool for org-mode.&lt;br /&gt;
|author=Sébastien Gross&lt;br /&gt;
|source=http://github.com/renard/o-blog&lt;br /&gt;
|in_emacs=no&lt;br /&gt;
|Development status=active&lt;br /&gt;
|website=http://renard.github.com/o-blog/&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To start your blog with the default template you need.&lt;br /&gt;
&lt;br /&gt;
required outlines&lt;br /&gt;
&lt;br /&gt;
Why are this required?&lt;br /&gt;
&lt;br /&gt;
generate the files&lt;/div&gt;</summary>
		<author><name>PuercoPop</name></author>
	</entry>
	<entry>
		<id>https://wikemacs.org/index.php?title=User:PuercoPop&amp;diff=3066</id>
		<title>User:PuercoPop</title>
		<link rel="alternate" type="text/html" href="https://wikemacs.org/index.php?title=User:PuercoPop&amp;diff=3066"/>
		<updated>2012-07-07T06:22:47Z</updated>

		<summary type="html">&lt;p&gt;PuercoPop: Created page with &amp;quot; Article in progress O-Blog Editing your blog with o-blog  Minimal .org to start a blog with the default template  required outlines  Why are this required?  generate the files&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
Article in progress O-Blog&lt;br /&gt;
Editing your blog with o-blog&lt;br /&gt;
&lt;br /&gt;
Minimal .org to start a blog with the default template&lt;br /&gt;
&lt;br /&gt;
required outlines&lt;br /&gt;
&lt;br /&gt;
Why are this required?&lt;br /&gt;
&lt;br /&gt;
generate the files&lt;/div&gt;</summary>
		<author><name>PuercoPop</name></author>
	</entry>
	<entry>
		<id>https://wikemacs.org/index.php?title=Solarized-theme&amp;diff=2855</id>
		<title>Solarized-theme</title>
		<link rel="alternate" type="text/html" href="https://wikemacs.org/index.php?title=Solarized-theme&amp;diff=2855"/>
		<updated>2012-06-04T20:30:07Z</updated>

		<summary type="html">&lt;p&gt;PuercoPop: /* Basic setup */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Package&lt;br /&gt;
|name=Solarized theme&lt;br /&gt;
|description=The Solarized theme, ported to Emacs&lt;br /&gt;
|author=Ethan Schoonover&lt;br /&gt;
|maintainer=[[User:Bozhidar|Bozhidar Batsov]]&lt;br /&gt;
|source=https://github.com/bbatsov/solarized-emacs&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
Solarized for Emacs is an Emacs port of the Solarized theme for vim, developed by Ethan Schoonover.&lt;br /&gt;
&lt;br /&gt;
Solarized for Emacs is tested only under Emacs 24, but should be working under Emacs 23 as well. The theme is implemented in terms of customizations and deftheme and does not require the color-theme-package.&lt;br /&gt;
&lt;br /&gt;
[[File:Solarized-dark-theme.png|800px|thumb|right|Solarized Dark]]&lt;br /&gt;
&lt;br /&gt;
= Basic setup =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;lisp&amp;quot;&amp;gt;&lt;br /&gt;
(add-to-list 'custom-theme-load-path &amp;quot;~/.emacs.d/themes/&amp;quot;)&lt;br /&gt;
(load-theme 'solarized-dark t)&lt;br /&gt;
;; Or alternate color palette&lt;br /&gt;
;; (load-theme 'solarized-light t)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= See Also =&lt;br /&gt;
&lt;br /&gt;
= Project Pages =&lt;br /&gt;
* [https://github.com/bbatsov/solarized-emacs GitHub Repo]&lt;br /&gt;
&lt;br /&gt;
[[Category:Theme]][[Category:Third Party Package]]&lt;/div&gt;</summary>
		<author><name>PuercoPop</name></author>
	</entry>
</feed>