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