Merge branch 'master' of ssh://git.ikiwiki.info

master
Joey Hess 2011-12-05 15:17:53 -04:00
commit 2c7a8bd684
5 changed files with 46 additions and 1 deletions

View File

@ -0,0 +1,20 @@
[[!comment format=mdwn
username="http://smcv.pseudorandom.co.uk/"
nickname="smcv"
subject="comment 2"
date="2011-12-04T13:37:27Z"
content="""
If just deleting the unwanted pages is insufficient (e.g. perhaps they
contain information that must not be made public), you can split a git
repository (including ikiwiki repositories) with `git filter-branch` (see
[this stackoverflow question](http://stackoverflow.com/questions/359424/detach-subdirectory-into-separate-git-repository),
for instance).
This preserves the history of each individual page, but rewrites the
entire history of the repository (it re-does every commit, pretending
that the addition of the omitted pages and every subsequent edit to
them had never happened); it's like `git rebase` but more so.
As a result, existing branches will no longer be able to push to the
rewritten repository.
"""]]

View File

@ -0,0 +1,8 @@
[[!comment format=mdwn
username="https://www.google.com/accounts/o8/id?id=AItOawk_MMtLPS7osC5MjX00q2ATjvvXPWqm0ik"
nickname="micheal"
subject="comment 3"
date="2011-12-04T14:03:55Z"
content="""
@smcv: Thanks, that looks promising. The example from stackoverflow is with subdirectories. What do I have to change to match a list of single files (pages) instead?
"""]]

View File

@ -0,0 +1,6 @@
I'm not sure where the bottleneck is for running ikiwiki over a site like my blog [Natalian](http://source.natalian-org.branchable.com/?p=source.git;), though I like to think the markdown processing could be speeded up by the support of the C implementation of Markdown called [Sundown](https://github.com/tanoku/sundown).
>> Sundown doesn't appear to have Perl bindings, so the cost of calling a separate process could wipe out some or all of the speed gain. It might be worth looking into Text::Upskirt instead, which uses the Upskirt library which Sundown appears to be derived from.
>> -- [[KathrynAndersen]]
[[wishlist]]

View File

@ -4,7 +4,12 @@ They don't want to back out of post to an index. They want an easy button to cli
<http://codex.wordpress.org/Next_and_Previous_Links>
Thank you
[Jekyll](http://jekyllrb.com/)'s implementation looks rather neat:
* <https://github.com/mojombo/jekyll/wiki/template-data>
* <https://github.com/mojombo/jekyll/blob/master/lib/jekyll/generators/pagination.rb>
> This is a perfect use for [[todo/wikitrails]], of which my
> [[plugins/contrib/trail]] plugin is an implementation. Code review on that
@ -53,3 +58,8 @@ Thank you
>>> Making [[plugins/contrib/album]] require `trail` v3, and trying it out
>>> on my blog, are next on the list.
>>> --[[smcv]]
>>>> Sorry thank link <http://demo.hosted.pseudorandom.co.uk/trail2/> doesn't work. I get a forbidden. --[[hendry]]
[[wishlist]]

View File

@ -0,0 +1 @@
+1, not sure where this feature is going. I'm keen to seen this!