Differences between revisions 3 and 4
Revision 3 as of 2013-09-02 16:59:53
Size: 513
Editor: AndresSFI
Comment:
Revision 4 as of 2013-09-03 03:40:14
Size: 1698
Editor: KevinBot
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
Hello. Allow me introduce the author. His name is Cletus Bivona though he won't seriously like remaining identified as like that. The position he's been occupying for a long time is a bookkeeper but he ideas on modifying it. Years ago he moved to Nevada and he has anything that he requires there. As a guy what he genuinely likes is to go to karaoke but he is battling to locate time for it. His wife and he preserve a web page. You may want to check it out: http://nalum.co.kr/?mid=freeboard&document_srl=9826 #pragma section-numbers 2
= Moinport Extension =

Fetch changes from MoinMoin Wiki.

<<TableOfContents>>

== Status ==

'''This extension is not distributed with Mercurial.'''

''Author: [[YuyaNishihara|Yuya Nishihara]]''

Repository: http://bitbucket.org/yuja/hgext-moinport/

== Overview ==

This extension gives you the ability to fetch changes from remote
MoinMoin Wiki.

== Configuration ==
Configure your .hgrc to enable the extension by adding following lines:

{{{
[extensions]
moinport = /path/to/hgext/moinport.py

[moinport]
baseurl = http://mercurial.selenic.com/wiki/
}}}

== Usage for Wiki translation ==

0. Configure Moinport extension:
{{{
$ cat .hg/hgrc
[moinport]
baseurl = http://mercurial.selenic.com/wiki/
pageprefix.ja = Japanese
}}}

1. Fetch English page:
{{{
$ hg mofetch MqExtension.txt
MqExtension@1: ...
...
$ hg moid *
MqExtension.txt: 41
}}}

2. Start translation branch
{{{
$ hg branch ja
}}}

3. Post translation to Wiki (by using web browser)

4. Fetch translated page
{{{
$ hg mofetch MqExtension.txt
JapaneseMqExtension@1: ...
$ hg moid *
MqExtension.txt: 1
}}}

5. A Few months have passed, fetch the latest English page
{{{
$ hg up default
$ hg mofetch MqExtension.txt
MqExtension@42: ...
...
$ hg moid *
MqExtension.txt: 48
}}}

6. Merge it to translation branch
{{{
$ hg up ja
$ hg merge default
...
$ hg ci -m 'merge with MqExtension@48'
}}}

7. Update translation and post it to Wiki (by using web browser)

8. Fetch translated page
{{{
$ hg mofetch MqExtension.txt
JapaneseMqExtension@2: ...
$ hg moid *
MqExtension.txt: 2
}}}

----
CategoryExtensionsByOthers

Moinport Extension

Fetch changes from MoinMoin Wiki.

1. Status

This extension is not distributed with Mercurial.

Author: Yuya Nishihara

Repository: http://bitbucket.org/yuja/hgext-moinport/

2. Overview

This extension gives you the ability to fetch changes from remote MoinMoin Wiki.

3. Configuration

Configure your .hgrc to enable the extension by adding following lines:

[extensions]
moinport = /path/to/hgext/moinport.py

[moinport]
baseurl = http://mercurial.selenic.com/wiki/

4. Usage for Wiki translation

0. Configure Moinport extension:

$ cat .hg/hgrc
[moinport]
baseurl = http://mercurial.selenic.com/wiki/
pageprefix.ja = Japanese

1. Fetch English page:

$ hg mofetch MqExtension.txt
MqExtension@1: ...
...
$ hg moid *
MqExtension.txt: 41

2. Start translation branch

$ hg branch ja

3. Post translation to Wiki (by using web browser)

4. Fetch translated page

$ hg mofetch MqExtension.txt
JapaneseMqExtension@1: ...
$ hg moid *
MqExtension.txt: 1

5. A Few months have passed, fetch the latest English page

$ hg up default
$ hg mofetch MqExtension.txt
MqExtension@42: ...
...
$ hg moid *
MqExtension.txt: 48

6. Merge it to translation branch

$ hg up ja
$ hg merge default
...
$ hg ci -m 'merge with MqExtension@48'

7. Update translation and post it to Wiki (by using web browser)

8. Fetch translated page

$ hg mofetch MqExtension.txt
JapaneseMqExtension@2: ...
$ hg moid *
MqExtension.txt: 2


CategoryExtensionsByOthers

MoinportExtension (last edited 2013-09-03 03:40:14 by KevinBot)