##// END OF EJS Templates
Package hgk Tcl/Tk script in win32 installer...
Pascal Quantin -
r7663:b0a0eb28 default
parent child Browse files
Show More
@@ -1,49 +1,53 b''
1 1 ; System-wide Mercurial config file. To override these settings on a
2 2 ; per-user basis, please edit the following file instead, where
3 3 ; USERNAME is your Windows user name:
4 4 ; C:\Documents and Settings\USERNAME\Mercurial.ini
5 5
6 6 [ui]
7 7 editor = notepad
8 8 ; show changed files and be a bit more verbose if True
9 9 ; verbose = True
10 10
11 11 ; username data to appear in commits
12 12 ; it usually takes the form: Joe User <joe.user@host.com>
13 13 ; username = Joe User <j.user@example.com>
14 14
15 15
16 16 ; By default, we try to encode and decode all files that do not
17 17 ; contain ASCII NUL characters. What this means is that we try to set
18 18 ; line endings to Windows style on update, and to Unix style on
19 19 ; commit. This lets us cooperate with Linux and Unix users, so
20 20 ; everybody sees files with their native line endings.
21 21
22 22 [extensions]
23 23 ; The win32text extension is available and installed by default. It
24 24 ; provides built-in Python hooks to perform line ending conversions.
25 25 ; This is normally much faster than running an external program.
26 26 hgext.win32text =
27 27
28 28
29 29 [encode]
30 30 ; Encode files that don't contain NUL characters.
31 31
32 32 ; ** = cleverencode:
33 33
34 34 ; Alternatively, you can explicitly specify each file extension that
35 35 ; you want encoded (any you omit will be left untouched), like this:
36 36
37 37 ; *.txt = dumbencode:
38 38
39 39
40 40 [decode]
41 41 ; Decode files that don't contain NUL characters.
42 42
43 43 ; ** = cleverdecode:
44 44
45 45 ; Alternatively, you can explicitly specify each file extension that
46 46 ; you want decoded (any you omit will be left untouched), like this:
47 47 ; **.txt = dumbdecode:
48 [hgk]
49 ; Replace the following with your path to hgk, uncomment it and
50 ; install ActiveTcl (or another win32 port)
51 ; path="C:\Program Files\Mercurial\Contrib\hgk.tcl"
48 52
49 53
@@ -1,96 +1,97 b''
1 1 ; Script generated by the Inno Setup Script Wizard.
2 2 ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
3 3 [Setup]
4 4 AppCopyright=Copyright 2005-2009 Matt Mackall and others
5 5 AppName=Mercurial
6 6 AppVerName=Mercurial snapshot
7 7 InfoAfterFile=contrib/win32/postinstall.txt
8 8 LicenseFile=COPYING
9 9 ShowLanguageDialog=yes
10 10 AppPublisher=Matt Mackall and others
11 11 AppPublisherURL=http://www.selenic.com/mercurial
12 12 AppSupportURL=http://www.selenic.com/mercurial
13 13 AppUpdatesURL=http://www.selenic.com/mercurial
14 14 AppID={{4B95A5F1-EF59-4B08-BED8-C891C46121B3}
15 15 AppContact=mercurial@selenic.com
16 16 OutputBaseFilename=Mercurial-snapshot
17 17 DefaultDirName={pf}\Mercurial
18 18 SourceDir=..\..
19 19 VersionInfoDescription=Mercurial distributed SCM
20 20 VersionInfoCopyright=Copyright 2005-2009 Matt Mackall and others
21 21 VersionInfoCompany=Matt Mackall and others
22 22 InternalCompressLevel=max
23 23 SolidCompression=true
24 24 SetupIconFile=contrib\win32\mercurial.ico
25 25 AllowNoIcons=true
26 26 DefaultGroupName=Mercurial
27 27 PrivilegesRequired=none
28 28
29 29 [Files]
30 30 Source: contrib\mercurial.el; DestDir: {app}/Contrib
31 31 Source: contrib\vim\*.*; DestDir: {app}/Contrib/Vim
32 32 Source: contrib\zsh_completion; DestDir: {app}/Contrib
33 Source: contrib\hgk; DestDir: {app}/Contrib; DestName: hgk.tcl
33 34 Source: contrib\win32\ReadMe.html; DestDir: {app}; Flags: isreadme
34 35 Source: contrib\mergetools.hgrc; DestDir: {tmp};
35 36 Source: contrib\win32\mercurial.ini; DestDir: {app}; DestName: Mercurial.ini; Check: CheckFile; AfterInstall: ConcatenateFiles;
36 37 Source: contrib\win32\postinstall.txt; DestDir: {app}; DestName: ReleaseNotes.txt
37 38 Source: dist\hg.exe; DestDir: {app}; AfterInstall: Touch('{app}\hg.exe.local')
38 39 Source: dist\library.zip; DestDir: {app}
39 40 Source: dist\mfc71.dll; DestDir: {app}
40 41 Source: dist\msvcr71.dll; DestDir: {app}
41 42 Source: dist\w9xpopen.exe; DestDir: {app}
42 43 Source: dist\add_path.exe; DestDir: {app}
43 44 Source: doc\*.html; DestDir: {app}\Docs
44 45 Source: templates\*.*; DestDir: {app}\Templates; Flags: recursesubdirs createallsubdirs
45 46 Source: CONTRIBUTORS; DestDir: {app}; DestName: Contributors.txt
46 47 Source: COPYING; DestDir: {app}; DestName: Copying.txt
47 48
48 49 [INI]
49 50 Filename: {app}\Mercurial.url; Section: InternetShortcut; Key: URL; String: http://www.selenic.com/mercurial/
50 51
51 52 [UninstallDelete]
52 53 Type: files; Name: {app}\Mercurial.url
53 54
54 55 [Icons]
55 56 Name: {group}\Uninstall Mercurial; Filename: {uninstallexe}
56 57 Name: {group}\Mercurial Command Reference; Filename: {app}\Docs\hg.1.html
57 58 Name: {group}\Mercurial Web Site; Filename: {app}\Mercurial.url
58 59
59 60 [Run]
60 61 Filename: "{app}\add_path.exe"; Parameters: "{app}"; Flags: postinstall; Description: "Add the installation path to the search path"
61 62
62 63 [UninstallRun]
63 64 Filename: "{app}\add_path.exe"; Parameters: "/del {app}"
64 65
65 66 [UninstallDelete]
66 67 Type: files; Name: "{app}\hg.exe.local"
67 68 [Code]
68 69 var
69 70 WriteFile: Boolean;
70 71 CheckDone: Boolean;
71 72
72 73 function CheckFile(): Boolean;
73 74 begin
74 75 if not CheckDone then begin
75 76 WriteFile := True;
76 77 if FileExists(ExpandConstant(CurrentFileName)) then begin
77 78 WriteFile := MsgBox('' + ExpandConstant(CurrentFileName) + '' #13#13 'The file already exists.' #13#13 'Would you like Setup to overwrite it?', mbConfirmation, MB_YESNO) = idYes;
78 79 end;
79 80 CheckDone := True;
80 81 end;
81 82 Result := WriteFile;
82 83 end;
83 84
84 85 procedure ConcatenateFiles();
85 86 var
86 87 MergeConfigs: TArrayOfString;
87 88 begin
88 89 if LoadStringsFromFile(ExpandConstant('{tmp}\mergetools.hgrc'),MergeConfigs) then begin
89 90 SaveStringsToFile(ExpandConstant(CurrentFileName),MergeConfigs,True);
90 91 end;
91 92 end;
92 93
93 94 procedure Touch(fn: String);
94 95 begin
95 96 SaveStringToFile(ExpandConstant(fn), '', False);
96 97 end;
General Comments 0
You need to be logged in to leave comments. Login now