mirror of
https://github.com/xmonad/xmonad.git
synced 2025-05-19 00:20:22 -07:00
Update development references (darcs, code.google.com, etc.)
* All references to darcs have been updated to git * Most Google Code references have been changed to GitHub * References to specific issues at code.google.com have been left alone * Updated the GenerateManpage.hs to work with the latest version of pandoc
This commit is contained in:
parent
b68ebc797a
commit
30b4ff5e40
5
TODO
5
TODO
@ -1,8 +1,3 @@
|
|||||||
= General =
|
|
||||||
|
|
||||||
* In the README, should we remove references to snapshots on
|
|
||||||
code.haskell.org?
|
|
||||||
|
|
||||||
= Release management =
|
= Release management =
|
||||||
|
|
||||||
* generate, and push website haddocks with xmonad-web/gen-docs.sh
|
* generate, and push website haddocks with xmonad-web/gen-docs.sh
|
||||||
|
@ -58,9 +58,9 @@ Binary packages of XMonad and XMonadContrib are available for all major Linux di
|
|||||||
\item Homepage:
|
\item Homepage:
|
||||||
\url{http://xmonad.org/}
|
\url{http://xmonad.org/}
|
||||||
|
|
||||||
\item Darcs source:
|
\item Git source:
|
||||||
|
|
||||||
\texttt{darcs get} \url{http://code.haskell.org/xmonad}
|
\texttt{git clone} \url{https://github.com/xmonad/xmonad.git}
|
||||||
|
|
||||||
\item IRC channel:
|
\item IRC channel:
|
||||||
\verb+#xmonad @@ irc.freenode.org+
|
\verb+#xmonad @@ irc.freenode.org+
|
||||||
|
@ -1,4 +1,7 @@
|
|||||||
.TH xmonad 1 "31 December 2012" xmonad-0.12 "xmonad manual".TH "" "" "" "" ""
|
.TH xmonad 1 "31 December 2012" xmonad-0.12 "xmonad manual".\" Automatically generated by Pandoc 1.15.1
|
||||||
|
.\"
|
||||||
|
.hy
|
||||||
|
.TH "" "" "" "" ""
|
||||||
.SH Name
|
.SH Name
|
||||||
.PP
|
.PP
|
||||||
xmonad \- a tiling window manager
|
xmonad \- a tiling window manager
|
||||||
@ -276,4 +279,4 @@ module was contained within xmonad or xmonad\-contrib.
|
|||||||
.PP
|
.PP
|
||||||
Probably.
|
Probably.
|
||||||
If you find any, please report them to the
|
If you find any, please report them to the
|
||||||
bugtracker (http://code.google.com/p/xmonad/issues/list)
|
bugtracker (https://github.com/xmonad/xmonad/issues)
|
||||||
|
@ -160,6 +160,6 @@
|
|||||||
function1 = error "function1: Not implemented yet!"</code></pre>
|
function1 = error "function1: Not implemented yet!"</code></pre>
|
||||||
<p>Your xmonad.hs may then import XMonad.Stack.MyAdditions as if that module was contained within xmonad or xmonad-contrib.</p>
|
<p>Your xmonad.hs may then import XMonad.Stack.MyAdditions as if that module was contained within xmonad or xmonad-contrib.</p>
|
||||||
<h1 id="bugs">Bugs</h1>
|
<h1 id="bugs">Bugs</h1>
|
||||||
<p>Probably. If you find any, please report them to the <a href="http://code.google.com/p/xmonad/issues/list">bugtracker</a></p>
|
<p>Probably. If you find any, please report them to the <a href="https://github.com/xmonad/xmonad/issues">bugtracker</a></p>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
@ -101,4 +101,4 @@ module was contained within xmonad or xmonad-contrib.
|
|||||||
Probably. If you find any, please report them to the [bugtracker]
|
Probably. If you find any, please report them to the [bugtracker]
|
||||||
|
|
||||||
[xmonad.org]: http://xmonad.org
|
[xmonad.org]: http://xmonad.org
|
||||||
[bugtracker]: http://code.google.com/p/xmonad/issues/list
|
[bugtracker]: https://github.com/xmonad/xmonad/issues
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
{-# LANGUAGE FlexibleContexts #-}
|
||||||
-- Unlike the rest of xmonad, this file is copyright under the terms of the
|
-- Unlike the rest of xmonad, this file is copyright under the terms of the
|
||||||
-- GPL.
|
-- GPL.
|
||||||
|
|
||||||
@ -34,7 +35,7 @@ import Distribution.PackageDescription
|
|||||||
import Text.PrettyPrint.HughesPJ
|
import Text.PrettyPrint.HughesPJ
|
||||||
import Distribution.Text
|
import Distribution.Text
|
||||||
|
|
||||||
import Text.Pandoc -- works with 1.12.4
|
import Text.Pandoc -- works with 1.15.x
|
||||||
|
|
||||||
releaseDate = "31 December 2012"
|
releaseDate = "31 December 2012"
|
||||||
|
|
||||||
@ -69,7 +70,7 @@ main = do
|
|||||||
|
|
||||||
let manHeader = unwords [".TH xmonad 1","\""++releaseDate++"\"",releaseName,"\"xmonad manual\""]
|
let manHeader = unwords [".TH xmonad 1","\""++releaseDate++"\"",releaseName,"\"xmonad manual\""]
|
||||||
|
|
||||||
parsed <- readMarkdown def
|
Right parsed <- readMarkdown def
|
||||||
. unlines
|
. unlines
|
||||||
. replace "___KEYBINDINGS___" keybindings
|
. replace "___KEYBINDINGS___" keybindings
|
||||||
. lines
|
. lines
|
||||||
|
Loading…
x
Reference in New Issue
Block a user