blob: 7f7a6660dab1ac2b9ea4a64e87243d72e8c5085c [file] [log] [blame]
Christian Brabandt69c34932025-05-25 17:07:51 +02001*uganda.txt* For Vim version 9.1. Last change: 2025 May 25
Bram Moolenaar071d4272004-06-13 20:20:40 +00002
3
4 VIM REFERENCE MANUAL by Bram Moolenaar
5
6
7 *uganda* *Uganda* *copying* *copyright* *license*
8SUMMARY
9 *iccf* *ICCF*
10Vim is Charityware. You can use and copy it as much as you like, but you are
11encouraged to make a donation for needy children in Uganda. Please see |kcc|
12below or visit the ICCF web site, available at these URLs:
13
Bram Moolenaar3e79c972022-02-04 19:48:06 +000014 https://iccf-holland.org/
15 https://www.vim.org/iccf/
16 https://www.iccf.nl/
Bram Moolenaar071d4272004-06-13 20:20:40 +000017
RestorerZff168072024-08-14 14:38:46 +020018You can also sponsor the development of Vim, see |sponsor|. The money goes to
19Uganda anyway.
Bram Moolenaar071d4272004-06-13 20:20:40 +000020
21The Open Publication License applies to the Vim documentation, see
22|manual-copyright|.
23
24=== begin of license ===
25
26VIM LICENSE
27
28I) There are no restrictions on distributing unmodified copies of Vim except
29 that they must include this license text. You can also distribute
30 unmodified parts of Vim, likewise unrestricted except that they must
31 include this license text. You are also allowed to include executables
32 that you made from the unmodified Vim sources, plus your own usage
33 examples and Vim scripts.
34
35II) It is allowed to distribute a modified (or extended) version of Vim,
36 including executables and/or source code, when the following four
37 conditions are met:
38 1) This license text must be included unmodified.
39 2) The modified Vim must be distributed in one of the following five ways:
40 a) If you make changes to Vim yourself, you must clearly describe in
41 the distribution how to contact you. When the maintainer asks you
42 (in any way) for a copy of the modified Vim you distributed, you
43 must make your changes, including source code, available to the
44 maintainer without fee. The maintainer reserves the right to
45 include your changes in the official version of Vim. What the
46 maintainer will do with your changes and under what license they
47 will be distributed is negotiable. If there has been no negotiation
48 then this license, or a later version, also applies to your changes.
Christian Brabandte978b452023-08-13 10:33:05 +020049 The current maintainers are listed here: https://github.com/orgs/vim/people.
50 If this changes it will be announced in appropriate places (most likely
Bram Moolenaar071d4272004-06-13 20:20:40 +000051 vim.sf.net, www.vim.org and/or comp.editors). When it is completely
52 impossible to contact the maintainer, the obligation to send him
53 your changes ceases. Once the maintainer has confirmed that he has
54 received your changes they will not have to be sent again.
55 b) If you have received a modified Vim that was distributed as
56 mentioned under a) you are allowed to further distribute it
57 unmodified, as mentioned at I). If you make additional changes the
58 text under a) applies to those changes.
59 c) Provide all the changes, including source code, with every copy of
60 the modified Vim you distribute. This may be done in the form of a
61 context diff. You can choose what license to use for new code you
62 add. The changes and their license must not restrict others from
63 making their own changes to the official version of Vim.
64 d) When you have a modified Vim which includes changes as mentioned
65 under c), you can distribute it without the source code for the
66 changes if the following three conditions are met:
67 - The license that applies to the changes permits you to distribute
68 the changes to the Vim maintainer without fee or restriction, and
69 permits the Vim maintainer to include the changes in the official
70 version of Vim without fee or restriction.
71 - You keep the changes for at least three years after last
72 distributing the corresponding modified Vim. When the maintainer
73 or someone who you distributed the modified Vim to asks you (in
74 any way) for the changes within this period, you must make them
75 available to him.
76 - You clearly describe in the distribution how to contact you. This
77 contact information must remain valid for at least three years
78 after last distributing the corresponding modified Vim, or as long
79 as possible.
80 e) When the GNU General Public License (GPL) applies to the changes,
81 you can distribute the modified Vim under the GNU GPL version 2 or
82 any later version.
83 3) A message must be added, at least in the output of the ":version"
84 command and in the intro screen, such that the user of the modified Vim
85 is able to see that it was modified. When distributing as mentioned
86 under 2)e) adding the message is only required for as far as this does
87 not conflict with the license used for the changes.
88 4) The contact information as required under 2)a) and 2)d) must not be
89 removed or changed, except that the person himself can make
90 corrections.
91
92III) If you distribute a modified version of Vim, you are encouraged to use
93 the Vim license for your changes and make them available to the
94 maintainer, including the source code. The preferred way to do this is
95 by e-mail or by uploading the files to a server and e-mailing the URL.
96 If the number of changes is small (e.g., a modified Makefile) e-mailing a
97 context diff will do. The e-mail address to be used is
98 <maintainer@vim.org>
99
100IV) It is not allowed to remove this license from the distribution of the Vim
101 sources, parts of it or from a modified version. You may use this
102 license for previous Vim releases instead of the license that they came
103 with, at your option.
104
105=== end of license ===
106
107Note:
108
109- If you are happy with Vim, please express that by reading the rest of this
110 file and consider helping needy children in Uganda.
111
112- If you want to support further Vim development consider becoming a
Bram Moolenaarc01140a2006-03-24 22:21:52 +0000113 |sponsor|. The money goes to Uganda anyway.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000114
115- According to Richard Stallman the Vim license is GNU GPL compatible.
116 A few minor changes have been made since he checked it, but that should not
117 make a difference.
118
119- If you link Vim with a library that goes under the GNU GPL, this limits
120 further distribution to the GNU GPL. Also when you didn't actually change
121 anything in Vim.
122
123- Once a change is included that goes under the GNU GPL, this forces all
124 further changes to also be made under the GNU GPL or a compatible license.
125
126- If you distribute a modified version of Vim, you can include your name and
127 contact information with the "--with-modified-by" configure argument or the
128 MODIFIED_BY define.
129
Christian Brabandt69c34932025-05-25 17:07:51 +0200130- This license applies to the source code of Vim. However, different license
131 conditions may apply to some runtime files included with Vim; these will be
132 specified in the header of each respective file.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000133==============================================================================
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000134Kibaale Children's Centre *kcc* *Kibaale* *charity*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000135
136Kibaale Children's Centre (KCC) is located in Kibaale, a small town in the
137south of Uganda, near Tanzania, in East Africa. The area is known as Rakai
138District. The population is mostly farmers. Although people are poor, there
Bram Moolenaar1588bc82022-03-08 21:35:07 +0000139usually is enough food. But this district is suffering from AIDS more than
140any other part of the world. Some say that it started there. Estimations are
141that in the past 10 to 30% of the Ugandans are infected with HIV. Because
142parents die, there are many orphans. In this district about 60,000 children
143have lost one or both parents, out of a population of 350,000. Although AIDS
144is now mostly under control, the problems are still continuing.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000145
146The children need a lot of help. The KCC is working hard to provide the needy
147with food, medical care and education. Food and medical care to keep them
148healthy now, and education so that they can take care of themselves in the
149future. KCC works on a Christian base, but help is given to children of any
150religion.
151
152The key to solving the problems in this area is education. This has been
153neglected in the past years with president Idi Amin and the following civil
154wars. Now that the government is stable again, the children and parents have
155to learn how to take care of themselves and how to avoid infections. There is
156also help for people who are ill and hungry, but the primary goal is to
157prevent people from getting ill and to teach them how to grow healthy food.
158
159Most of the orphans are living in an extended family. An uncle or older
160sister is taking care of them. Because these families are big and the income
161(if any) is low, a child is lucky if it gets healthy food. Clothes, medical
162care and schooling is beyond its reach. To help these needy children, a
163sponsorship program was put into place. A child can be financially adopted.
164For a few dollars a month KCC sees to it that the child gets indispensable
165items, is healthy, goes to school and KCC takes care of anything else that
166needs to be done for the child and the family that supports it.
167
168Besides helping the child directly, the environment where the child grows up
169needs to be improved. KCC helps schools to improve their teaching methods.
170There is a demonstration school at the centre and teacher trainings are given.
171Health workers are being trained, hygiene education is carried out and
172households are stimulated to build a proper latrine. I helped setting up a
173production site for cement slabs. These are used to build a good latrine.
174They are sold below cost price.
175
Bram Moolenaar3e79c972022-02-04 19:48:06 +0000176There is a clinic at the project, which provides children and their family
177medical help. Since 2020 a maternity ward was added and 24/7 service is
178available. When needed, transport to a hospital is offered. Immunization
179programs are carried out and help is provided when an epidemic is breaking out
180(measles and cholera have been a problem).
Bram Moolenaar05159a02005-02-26 23:04:13 +0000181 *donate*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000182Summer 1994 to summer 1995 I spent a whole year at the centre, working as a
183volunteer. I have helped to expand the centre and worked in the area of water
184and sanitation. I learned that the help that the KCC provides really helps.
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000185When I came back to Holland, I wanted to continue supporting KCC. To do this
186I'm raising funds and organizing the sponsorship program. Please consider one
187of these possibilities:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000188
1891. Sponsor a child in primary school: 17 euro a month (or more).
1902. Sponsor a child in secondary school: 25 euro a month (or more).
1913. Sponsor the clinic: Any amount a month or quarter
1924. A one-time donation
193
194Compared with other organizations that do child sponsorship the amounts are
195very low. This is because the money goes directly to the centre. Less than
1965% is used for administration. This is possible because this is a small
197organization that works with volunteers. If you would like to sponsor a
198child, you should have the intention to do this for at least one year.
199
200How do you know that the money will be spent right? First of all you have my
201personal guarantee as the author of Vim. I trust the people that are working
Bram Moolenaar8a94d872015-01-25 13:02:57 +0100202at the centre, I know them personally. Furthermore, the centre has been
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100203co-sponsored and inspected by World Vision, Save the Children Fund and is now
204under the supervision of Pacific Academy Outreach Society. The centre is
205visited about once a year to check the progress (at our own cost). I have
206visited the centre myself many times, starting in 1993. The visit reports are
207on the ICCF web site.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000208
RestorerZf7a38652024-04-22 20:55:32 +0200209If you have any further questions, send e-mail: <Bram@vim.org>.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000210
211The address of the centre is:
212 Kibaale Children's Centre
213 p.o. box 1658
214 Masaka, Uganda, East Africa
215
Bram Moolenaarc01140a2006-03-24 22:21:52 +0000216Sending money: *iccf-donations*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000217
218Check the ICCF web site for the latest information! See |iccf| for the URL.
219
220
Bram Moolenaar9964e462007-05-05 17:54:07 +0000221USA: The methods mentioned below can be used.
Bram Moolenaar3e79c972022-02-04 19:48:06 +0000222 If you must send a check send it to our Canadian partner:
223 https://www.kuwasha.net/
Bram Moolenaara5792f52005-11-23 21:25:05 +0000224
Bram Moolenaar3e79c972022-02-04 19:48:06 +0000225Canada: Contact Kuwasha in Surrey, Canada. They take care of the
226 Canadian sponsors for the children in Kibaale. Kuwasha
227 forwards 100% of the money to the project in Uganda. You can
228 send them a one time donation directly.
RestorerZf7a38652024-04-22 20:55:32 +0200229 Look on their site for information about sponsorship:
230 https://www.kuwasha.net/
Bram Moolenaar3e79c972022-02-04 19:48:06 +0000231 If you make a donation to Kuwasha you will receive a tax
232 receipt which can be submitted with your tax return.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000233
Bram Moolenaar3e79c972022-02-04 19:48:06 +0000234Holland: Transfer to the account of "Stichting ICCF Holland" in
235 Amersfoort. This will allow for tax deduction if you live in
236 Holland. ING bank, IBAN: NL95 INGB 0004 5487 74
Bram Moolenaar071d4272004-06-13 20:20:40 +0000237
238Germany: It is possible to make donations that allow for a tax return.
239 Check the ICCF web site for the latest information:
Bram Moolenaar3e79c972022-02-04 19:48:06 +0000240 https://iccf-holland.org/germany.html
Bram Moolenaar071d4272004-06-13 20:20:40 +0000241
Bram Moolenaar3e79c972022-02-04 19:48:06 +0000242Europe: Use a bank transfer if possible. See "Others" below for the
243 swift code and IBAN number.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000244 Any other method should work. Ask for information about
245 sponsorship.
246
247Credit Card: You can use PayPal to send money with a Credit card. This is
248 the most widely used Internet based payment system. It's
249 really simple to use. Use this link to find more info:
Bram Moolenaar9964e462007-05-05 17:54:07 +0000250 https://www.paypal.com/en_US/mrb/pal=XAC62PML3GF8Q
Bram Moolenaar071d4272004-06-13 20:20:40 +0000251 The e-mail address for sending the money to is:
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +0000252 Bram@iccf-holland.org
Bram Moolenaar071d4272004-06-13 20:20:40 +0000253
Bram Moolenaar9da17d72022-02-09 21:50:44 +0000254Others: Transfer to this account if possible:
Bram Moolenaar938ae282023-02-20 20:44:55 +0000255 ING bank: IBAN: NL95 INGB 0004 5487 74
Bram Moolenaar3e79c972022-02-04 19:48:06 +0000256 Swift code: INGBNL2A
257 under the name "stichting ICCF Holland", Amersfoort
258 Checks are not accepted.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000259
Bram Moolenaarc01140a2006-03-24 22:21:52 +0000260
Bram Moolenaard473c8c2018-08-11 18:00:22 +0200261 vim:tw=78:ts=8:noet:ft=help:norl: