Difference between revisions of "Git"

From openZIM
Jump to navigation Jump to search
 
(26 intermediate revisions by 2 users not shown)
Line 1: Line 1:
== Subversion Access ==
We have an '''open developement process''', all our source code is public and available for download using [http://en.wikipedia.org/wiki/Git Git]. All our developments are managed and are available [https://github.com/openzim/ here].
=== Checking Out ===
Read-only access via WEBDAV is available to our repository at:
<pre>
http://svn.openzim.org/
</pre>
 
=== Commit Access ===
<pre>
svn co svn+ssh://USER@openzim.org/trunk
</pre>
* replace USER with you openZIM user account
* replace trunk with the branch you whish to check out
 
== Structure ==
The suggested subversion repository structure is:
* trunk
** zimlib
**: Contains the libzim, which allows programs to read zim-files. Here are also some command line tools to access zim-files.
** zimwriter
**: is a system, which creates zim files using zimlib.
** zimreader
**: a web server based on [http://www.tntnet.org Tntnet], which makes zim-files available via web.

Latest revision as of 10:36, 10 May 2017

We have an open developement process, all our source code is public and available for download using Git. All our developments are managed and are available here.