aboutsummaryrefslogtreecommitdiff
path: root/DEVELOPING
diff options
context:
space:
mode:
authorSteve Bennett <steveb@workware.net.au>2014-05-12 11:27:32 +1000
committerSteve Bennett <steveb@workware.net.au>2014-05-12 11:27:32 +1000
commit708ea1cb2a2a95d5559924b79adbb5f684352d27 (patch)
treed228709e1df03baf6fc70da6350af6d02fcbad1f /DEVELOPING
parent72bbd6c5a327bdc1d5ea8cb12502640860b1fc44 (diff)
downloadjimtcl-708ea1cb2a2a95d5559924b79adbb5f684352d27.zip
jimtcl-708ea1cb2a2a95d5559924b79adbb5f684352d27.tar.gz
jimtcl-708ea1cb2a2a95d5559924b79adbb5f684352d27.tar.bz2
Remove remaining references to berlios.de
Reported-by: Paul Fertser <fercerpav@gmail.com> Signed-off-by: Steve Bennett <steveb@workware.net.au>
Diffstat (limited to 'DEVELOPING')
-rw-r--r--DEVELOPING12
1 files changed, 6 insertions, 6 deletions
diff --git a/DEVELOPING b/DEVELOPING
index 42fb054..835cd0b 100644
--- a/DEVELOPING
+++ b/DEVELOPING
@@ -22,16 +22,16 @@ most recent copy of Jim Tcl. This can be done with following command:
After entering newly created directory you can easily correct/fix/modify
files. Once finished, patch can be easily generated:
- git diff > my_patch_fixing_x_y.patch
+ git diff > my_patch_fixing_x_y.patch
If working without Git system, you'll have to backup files first, modify
the original files and obtain a patch manually:
- cp jim.c jim.c.ORIGINAL
+ cp jim.c jim.c.ORIGINAL
- [...] <- modifications go here
+ [...] <- modifications go here
- diff -u jim.c.ORIGINAL jim.c > my_patch_fixing_z.patch
+ diff -u jim.c.ORIGINAL jim.c > my_patch_fixing_z.patch
Bigger changes
==============
@@ -81,13 +81,13 @@ Review, testing and publishing
Notification of work that can be considered finished is more than welcome on
Jim-devel mailing list:
- https://lists.berlios.de/mailman/listinfo/jim-devel
+ http://jim.tcl.tk:8080/cgi-bin/mailman/listinfo/jim-devel
Patches prepared with the procedures presented abore are welcome. Before
submitting patches, you can verify that your changes didn't bring any
regressions to the Jim. In order to do so, sample regression tests have
been implemented. You can execute them by typing:
- make test
+ make test
All tests should succeed.