/usr/share/gap/lib/userpref.g is in gap-libs 4r6p5-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 | #############################################################################
##
#W userpref.g GAP library Thomas Breuer
#W Frank Lübeck
##
#Y Copyright (C) 2012 The GAP Group
##
## This file contains the functions dealing with the administration of
## user preferences (declaring, setting, accessing).
## The individual declarations happen somewhere else in GAP library files
## or in package files.
##
#############################################################################
##
#F DeclareUserPreference( <record> )
#F SetUserPreference( [<package>, ]<name>, <value> )
#F UserPreference( [<package>, ]<name> )
#F ShowUserPreferences( package1, package2, ... )
#F WriteGapIniFile( [<dir>][, ][true] )
##
## <#GAPDoc Label="UserPreferences">
## <ManSection>
## <Heading>Configuring User preferences</Heading>
## <Func Name="SetUserPreference" Arg="[package, ]name, value"/>
## <Func Name="UserPreference" Arg="[package, ]name"/>
## <Func Name="ShowUserPreferences" Arg="package1, package2, ..."/>
## <Func Name="WriteGapIniFile" Arg="[dir][,][ignorecurrent]"/>
##
## <Description>
##
## Some aspects of the behaviour of &GAP; can be customized by the user via
## <Emph>user preferences</Emph>. Examples include the way help sections
## are displayed or the use of colors in the terminal. <P/>
##
## User preferences are specified via a pair of strings, the first is the
## (case insensitive) name of a package (or <C>"GAP"</C> for the core &GAP;
## library) and the second is some arbitrary case sensitive string. <P/>
##
## User preferences can be set to some <A>value</A> with <Ref
## Func="SetUserPreference"/>. The current value of a user preference can
## be found with <Ref Func="UserPreference"/>. In both cases, if no package
## name is given the default <C>"GAP"</C> is used. If a user preference
## is not known or not set then <Ref Func="UserPreference"/> returns
## <K>fail</K>. <P/>
##
## The function <Ref Func="ShowUserPreferences"/> with no argument shows in
## a pager an overview of all known user preferences together with
## some explanation and the current value. If one or more strings
## <A>package1</A>, ... are given then only the user preferences for these
## packages are shown. <P/>
##
## The easiest way to make use of user preferences is probably to use the
## function <Ref Func="WriteGapIniFile"/>, usually without argument. This
## function creates a file <F>gap.ini</F> in your user specific &GAP; root
## directory (<C>GAPInfo.UserGapRoot</C>). If such a file already exists
## the function will make a backup of it first. This newly created file
## contains descriptions of all known user preferences and also calls
## of <Ref Func="SetUserPreference"/> for those user preferences which
## currently do not have their default value. You can then edit that file
## to customize (further) the user preferences for future &GAP; sessions.
## <P/>
##
## Should a later version of &GAP; or some packages introduce new user
## preferences then you can call <Ref Func="WriteGapIniFile"/> again since
## it will set the previously known user preferences to their current
## values. <P/>
##
## Optionally, a different directory for the resulting <F>gap.ini</F>
## file can be specified as argument <A>dir</A> to <Ref
## Func="WriteGapIniFile"/>. Another optional argument is the boolean value
## <K>true</K>, if this is given, the settings of all user preferences in
## the current session are ignored. <P/>
##
## Note that your <F>gap.ini</F> file is read by &GAP; very early during
## its startup process. A consequence is that the <A>value</A> argument in
## a call of <Ref Func="SetUserPreference"/> must be some very basic &GAP;
## object, usually a boolean, a number, a string or a list of those. A few
## user preferences support more complicated settings. For example, the
## user preference <C>"UseColorPrompt"</C> admits a record as its value
## whose components are available only after the <Package>GAPDoc</Package>
## package has been loaded, see <Ref Func="ColorPrompt"/>. If you want
## to specify such a complicated value, then move the corresponding call of
## <Ref Func="SetUserPreference"/> from your <F>gap.ini</F> file into your
## <F>gaprc</F> file (also in the directory <C>GAPInfo.UserGapRoot</C>).
## This file is read much later. <P/>
##
## <Example>
## gap> SetUserPreference( "Pager", "less" );
## gap> SetUserPreference("PagerOptions",
## > [ "-f", "-r", "-a", "-i", "-M", "-j2" ] );
## gap> UserPreference("Pager");
## "less"
## </Example>
##
## The first two lines of this example will cause &GAP; to use the programm
## <C>less</C> as a pager. This is highly recommended if <C>less</C> is
## available on your system. The last line displays the current setting.
## <P/>
##
## </Description>
## </ManSection>
##
## <ManSection>
## <Func Name="DeclareUserPreference" Arg="record"/>
##
## <Description>
##
## This function can be used (also in packages) to introduce new user
## preferences. It declares a user preference, determines a default value
## and contains documentation of the user preference. After declaration a
## user preference will be shown with <Ref Func="ShowUserPreferences"/> and
## <Ref Func="WriteGapIniFile"/>. <P/>
##
## When this declaration is evaluated it is checked, if this user
## preference is already set in the current session. If not the value of
## the user preference is set to its default. (Do not use <K>fail</K> as
## default value since this indicated that a user preference is not
## set.)<P/>
##
## The argument <A>record</A> of <Ref Func="DeclareUserPreference"/> must be
## a record with the following components.
## <P/>
## <List>
## <Mark><C>name</C></Mark>
## <Item>
## a string or a list of strings, the latter meaning several preferences
## which belong together,
## </Item>
## <Mark><C>description</C></Mark>
## <Item>
## a list of strings describing the preference(s), one string for each
## paragraph;
## if several preferences are declared together then the description
## refers to all of them,
## </Item>
## <Mark><C>default</C></Mark>
## <Item>
## the default value that is used,
## or a function without arguments that computes this default value;
## if several preferences are declared together then the value of this
## component must be the list of default values for the individual
## preferences.
## </Item>
## </List>
## <P/>
## The following components of <A>record</A> are optional.
## <P/>
## <List>
## <Mark><C>check</C></Mark>
## <Item>
## a function that takes a value as its argument and returns either
## <K>true</K> or <K>false</K>, depending on whether the given value
## is admissible for this preference;
## if several preferences are declared together then the number of
## arguments of the function must equal the length of the <C>name</C>
## list,
## </Item>
## <Mark><C>values</C></Mark>
## <Item>
## the list of admissible values, or a function without arguments
## that returns this list,
## </Item>
## <Mark><C>multi</C></Mark>
## <Item>
## <K>true</K> or <K>false</K>, depending on whether one may choose
## several values from the given list or just one;
## needed (and useful only) if the <C>values</C> component is present,
## </Item>
## <Mark><C>package</C></Mark>
## <Item>
## the name of the &GAP; package to which the preference is assigned;
## if the declaration happens inside a file that belongs to this package
## then the value of this component is computed,
## using <C>GAPInfo.PackageCurrent</C>;
## otherwise, the default value for <C>package</C> is <C>"GAP"</C>,
## </Item>
## <Mark><C>omitFromGapIniFile</C></Mark>
## <Item>
## if the value is <K>true</K> then this user preference is ignored by
## <Ref Func="WriteGapIniFile"/>.
## </Item>
## </List>
## <P/>
## <Example><![CDATA[
## gap> UserPreference( "MyFavouritePrime" );
## fail
## gap> DeclareUserPreference( rec(
## > name:= "MyFavouritePrime",
## > description:= [ "is not used, serves as an example" ],
## > default:= 2,
## > omitFromGapIniFile:= true ) );
## gap> UserPreference( "MyFavouritePrime" );
## 2
## gap> SetUserPreference( "MyFavouritePrime", 17 );
## gap> UserPreference( "MyFavouritePrime" );
## 17
## ]]></Example>
## </Description>
## </ManSection>
## <#/GAPDoc>
##
#T Concerning the `values' lists in the declaration:
#T - What shall happen if several preferences are declared together?
#T It may be that the admissible choices for the second preference depend
#T on the choice(s) for the first one.
#T - Support also an ``extendible menu'', i. e. a list of choices plus the
#T possibility to enter a value not in the list.
##
GAPInfo.DeclarationsOfUserPreferences:= [];
GAPInfo.UserPreferences:= rec();
DeclareUserPreference:= function( record )
local name, package, default, i, up;
if not IsRecord( record ) then
Error( "<record> must be a record" );
fi;
# Check the mandatory components.
for name in [ "name", "description", "default" ] do
if not IsBound( record.( name ) ) then
Error( "<record>.", name, " must be be bound" );
fi;
od;
if not ( IsString( record.name ) or
( IsList( record.name ) and ForAll( record.name, IsString ) ) ) then
Error( "<record>.name must be a string or a list of strings" );
elif not ( IsList( record.description ) and
ForAll( record.description, IsString ) ) then
Error( "<record>.description must be a list of strings" );
elif ForAll( record.name, IsString ) and
not IsFunction( record.default ) and
not ( IsList( record.default ) and
Length( record.default ) = Length( record.name ) ) then
Error( "<record>.default must correspond to record.name" );
fi;
# Check the optional components.
if IsBound( record.check ) and not IsFunction( record.check ) then
Error( "<record>.check, if bound, must be a function" );
fi;
if IsBound( record.values ) then
if not ( IsList( record.values ) or IsFunction( record.values ) ) then
Error( "<record>.values, if bound, must be a list or a function" );
fi;
if not ( IsBound( record.multi ) and
record.multi in [ true, false ] ) then
Error( "<record>.multi must be `true' or `false' ",
"if record.values is bound" );
fi;
fi;
if IsBound( record.package ) then
if not IsString( record.package ) then
Error( "<record>.package, if bound, must be a string" );
fi;
package:= LowercaseString( record.package );
elif IsBound( GAPInfo.PackageCurrent ) then
package:= LowercaseString( GAPInfo.PackageCurrent.PackageName );
else
package:= "gap";
fi;
# Accept the new preference declaration.
record:= ShallowCopy( record );
record.package:= package;
record.omitFromGapIniFile:= IsBound( record.omitFromGapIniFile )
and record.omitFromGapIniFile = true;
Add( GAPInfo.DeclarationsOfUserPreferences, record );
# Set the default value, if not yet set.
if IsFunction( record.default ) then
default:= record.default();
if not IsString( record.name ) and
( not IsList( default ) or
Length( default ) <> Length( record.name ) ) then
Error( "incompatible default values for preferences ",
String( record.name ) );
fi;
else
default:= StructuralCopy( record.default );
fi;
up := GAPInfo.UserPreferences;
if not IsBound( up.( package ) ) then
up.( package ):= rec();
fi;
if IsString( record.name ) then
if not IsBound(up.( package ).( record.name )) then
up.( package ).( record.name ):= default;
fi;
else
for i in [ 1 .. Length( record.name ) ] do
if not IsBound(up.( package ).( record.name[i] )) then
up.( package ).( record.name[i] ):= default[i];
fi;
od;
fi;
end;
#############################################################################
##
#F SetUserPreference( [<package>, ]<name>, <value> )
##
BindGlobal( "SetUserPreference", function( arg )
local name, package, value, pref;
if Length( arg ) = 2 then
name:= arg[1];
package:= "gap";
value:= arg[2];
elif Length( arg ) = 3 then
package:= LowercaseString( arg[1] );
name:= arg[2];
value:= arg[3];
else
Error( "usage: SetUserPreference( [<package>, ]<name>, <value> )" );
fi;
pref:= GAPInfo.UserPreferences;
if not IsBound( pref.( package ) ) then
# We may set a preference now that will become declared later.
pref.( package ):= rec();;
fi;
pref:= pref.( package );
#T First check whether the desired value is admissible?
pref.( name ):= value;
end );
#############################################################################
##
#F UserPreference( [<package>, ]<name> )
##
BindGlobal( "UserPreference", function( arg )
local name, package, pref;
if Length( arg ) = 1 then
name:= arg[1];
package:= "gap";
elif Length( arg ) = 2 then
package:= LowercaseString( arg[1] );
name:= arg[2];
else
Error( "usage: UserPreference( [<package>, ]<name> )" );
fi;
pref:= GAPInfo.UserPreferences;
if not IsBound( pref.( package ) ) then
# Here we assume that `fail' cannot be the value of a user preference.
return fail;
fi;
pref:= pref.( package );
if not IsBound( pref.( name ) ) then
# Here we assume that `fail' cannot be the value of a user preference.
return fail;
fi;
return pref.( name );
end );
#############################################################################
##
#F DataOfUserPreference( <pkgname>, <name> )
##
## returns a record with the components
## `description'
## `values'
## list of the form `[ <pkgname>, <name>, <value>, <default>, <fun> ]'
##
DataOfUserPreference:= function( pkgname, name )
local pref, decl, result, default, fun, i, nami;
pref:= GAPInfo.UserPreferences;
if not IsBound( pref.( pkgname ) ) then
return fail;
fi;
pref:= pref.( pkgname );
if not IsBound( pref.( name ) ) then
return fail;
fi;
# Check whether this preference has been declared.
decl:= First( GAPInfo.DeclarationsOfUserPreferences,
r -> r.package = pkgname and
( name = r.name or name in r.name ) );
if decl = fail then
# undeclared preference (just one)
result:= rec(
undeclared := true,
description:= [ Concatenation( "undeclared user preference '",
name, "'" ) ],
names:= [ name ],
values:= [ [ pkgname, name, pref.( name ), fail, false ] ] );
if pkgname <> "gap" then
Append( result.description[1],
Concatenation( " for package '", pkgname, "'" ) );
fi;
else
# declared preference (perhaps several together)
result:= rec( description:= decl.description,
omitFromGapIniFile:= decl.omitFromGapIniFile );
default:= decl.default;
fun:= false;
if IsFunction( default ) then
fun:= true;
default:= default();
fi;
if decl.name = name then
# just one value
result.values:= [ [ pkgname, name, pref.( name ), default, fun ] ];
result.names:= [ name ];
else
# several values together
result.values:= [];
result.names:= decl.name;
for i in [ 1 .. Length( decl.name ) ] do
nami:= decl.name[i];
result.values[i]:= [ pkgname, nami, pref.( nami ), default[i], fun ];
od;
fi;
fi;
return result;
end;
#############################################################################
##
#F StringUserPreference( <data>, <ignorecurrent> )
##
StringUserPreference:= function( data, ignorecurrent )
local string, width, format, paragraph, line;
if data = fail then
return "";
fi;
string:= [];
width:= SizeScreen()[1] - 6;
format:= ValueGlobal( "FormatParagraph" );
for paragraph in data.description do
Append( string, format( paragraph, width, "left", [ "## ", "" ] ) );
# Append( string, "## " );
# Append( string, line );
# Append( string, "\n" );
od;
for line in data.values do
if ignorecurrent then
# set current value (line[3]) to default value (line[4])
line := ShallowCopy(line);
line[3] := line[4];
fi;
if line[3] = line[4] then
Append( string, "# " );
fi;
Append( string, "SetUserPreference( \"" );
if line[1] <> "gap" then
Append( string, line[1] );
Append( string, "\", \"" );
fi;
Append( string, line[2] );
Append( string, "\", " );
if IsStringRep( line[3] ) then
Append( string, "\"" );
Append( string, line[3] );
Append( string, "\"" );
else
Append( string, String( line[3] ) );
fi;
Append( string, " );\n" );
od;
return string;
end;
#############################################################################
##
#F ShowStringUserPreference( <data> )
##
ShowStringUserPreference:= function( data )
local string, width, format, line, paragraph, suff;
if data = fail then
return "";
fi;
# Show the name(s), with indent 2.
string:= [];
width:= SizeScreen()[1] - 6;
Append( string, " " );
for line in data.values do
Append( string, line[2] );
Append( string, ", " );
od;
string[ Length( string ) - 1 ]:= ':';
string[ Length( string ) ]:= '\n';
# Show the formatted description, with indent 4.
format:= ValueGlobal( "FormatParagraph" );
for paragraph in data.description do
Append( string, format( paragraph, width, "left", [ " ", "" ] ) );
od;
# Show the default value(s), with indent 6.
if Length( data.values ) = 1 then
suff:= "";
else
suff:= "s";
fi;
Append( string, "\n default" );
Append( string, suff );
if data.values[1][5] then
Append( string, " (computed at runtime)" );
fi;
Append( string, ":\n" );
for line in data.values do
Append( string, " " );
if IsStringRep( line[4] ) then
Append( string, "\"" );
Append( string, line[4] );
Append( string, "\"" );
else
Append( string, String( line[4] ) );
fi;
Append( string, "\n" );
od;
# Show the current value(s), with indent 6.
Append( string, "\n current value" );
Append( string, suff );
Append( string, ":\n" );
if ForAll( data.values, line -> line[3] = line[4] ) then
Append( string, " equal to the default" );
Append( string, suff );
Append( string, "\n" );
else
for line in data.values do
Append( string, " " );
if IsStringRep( line[3] ) then
Append( string, "\"" );
Append( string, line[3] );
Append( string, "\"" );
else
Append( string, String( line[3] ) );
fi;
Append( string, "\n" );
od;
fi;
return string;
end;
#############################################################################
##
#F StringUserPreferences( arg )
##
StringUserPreferences:= function( arg )
local ignorecurrent, pref, str, pkglist, pkgname, done, name, data;
if Length(arg) > 0 and arg[1] = true then
ignorecurrent := true;
else
ignorecurrent := false;
fi;
pref:= GAPInfo.UserPreferences;
str:= "";
# Run over the preferences, first the ones that belong to GAP,
# then the ones that belong to packages
pkglist := Concatenation(["gap"], Difference(RecNames( pref ), ["gap"] ));
## HACKUSERPREF temporary until all packages are adjusted
pkglist := Filtered(pkglist, a-> not a in ["Pager","ReadObsolete"]);
for pkgname in pkglist do
Append( str, ListWithIdenticalEntries( 77, '#' ) );
Append( str, "\n\n" );
done:= [];
if IsRecord( pref.( pkgname ) ) then
for name in Set( RecNames( pref.( pkgname ) ) ) do
if not name in done then
data:= DataOfUserPreference( pkgname, name );
if not IsBound( data.undeclared ) and
not data.omitFromGapIniFile then
Append( str, StringUserPreference( data, ignorecurrent ) );
Append( str, "\n" );
fi;
UniteSet( done, data.names );
fi;
od;
fi;
od;
return str;
end;
#############################################################################
##
#F ShowUserPreferences( arg )
##
## show the list of all declared user preferences
##
ShowUserPreferences:= function(arg)
local pkglist, pref, str, pkgname, nam, done, undec, name, data, i, pfun;
pref:= GAPInfo.UserPreferences;
if Length(arg) > 0 then
pkglist := List(arg, LowercaseString);
else
# if no list given use all packages with preferences, "gap" first
pkglist := Concatenation( [ "gap" ],
Difference( RecNames( pref ), [ "gap" ] ) );
fi;
## HACKUSERPREF temporary until all packages are adjusted
pkglist := Filtered(pkglist, a-> not a in ["Pager","ReadObsolete"]);
str:= "";
for pkgname in pkglist do
Append( str, "\n" );
Append( str, "User preferences defined by " );
if IsBound(GAPInfo.PackagesInfo.(pkgname)) then
nam := GAPInfo.PackagesInfo.(pkgname)[1].PackageName;
elif pkgname = "gap" then
nam := "GAP";
else
nam := pkgname;
fi;
Append( str, nam );
Append( str, ":\n\n" );
done:= [];
undec := [];
if IsRecord( pref.( pkgname ) ) then
for name in Set( RecNames( pref.( pkgname ) ) ) do
if not name in done then
data:= DataOfUserPreference( pkgname, name );
if not IsBound(data.undeclared) then
Append( str, ShowStringUserPreference( data ) );
Append( str, "\n" );
UniteSet( done, data.names );
else
Add(undec, name);
fi;
fi;
od;
fi;
if Length(undec) > 0 then
Append(str, "Undeclared preferences: ");
Append(str, undec[1]);
for i in [2..Length(undec)] do
Append(str, ", ");
Append(str, undec[i]);
od;
fi;
Append( str, "\n" );
od;
pfun := ValueGlobal("Pager");
pfun(rec( lines := str, formatted := true));
end;
#############################################################################
##
#F WriteGapIniFile( [<dir>, ][true] )
##
WriteGapIniFile:= function( arg )
local ignorecurrent, f, df, ret, target, str, res;
# check if current settings should be used
if true in arg then
ignorecurrent := true;
else
ignorecurrent := false;
fi;
# check if target directory is given as string or directory object
f := First(arg, IsString);
if f <> fail then
df := Directory(f);
else
df := First(arg, IsDirectory);
if df <> fail then
f := df![1];
fi;
fi;
# otherwise use users GAPInfo.UserGapRoot
if f = fail then
if GAPInfo.UserGapRoot = fail then
Error("Your system does not support a user specific default root path.\n\
Please specify directory to write gap.ini file.");
return fail;
else
f := GAPInfo.UserGapRoot;
df := Directory(f);
fi;
fi;
# maybe create GAPInfo.UserGapRoot
if not IsDirectoryPath(f) then
ret := CreateDir(f);
if ret = fail then
Error("Cannot create directory ",f,"\nError message: ",
LastSystemError().message,"\n");
return fail;
fi;
fi;
# name of target file
target := Filename(df, "gap.ini");
# if target exists copy it to <target>.bak
if IsExistingFile(target) then
str := StringFile(target);
if str = fail then
Error("Cannot read existing file ",target,".\n");
return fail;
fi;
ret := FileString(Concatenation(target, ".bak"), str);
if ret = fail then
Error("Cannot write backup file ",target,".bak.\nError message: ",
LastSystemError().message,".\n");
return fail;
else
Info(InfoWarning, 1, "Copied existing gap.ini to ", target, ".bak");
fi;
fi;
# content of resulting file as string
res := StringUserPreferences(ignorecurrent);
if ARCH_IS_WINDOWS() then
# use DOS/Windows style line breaks
res := ReplacedString(res, "\n", "\r\n");
fi;
# finally write the gap.ini file
ret := FileString(target, res);
if ret = fail then
Error("Cannot write target file ",target,".\nError message: ",
LastSystemError().message,".\n");
return fail;
fi;
Info(InfoWarning, 1, "File ", target, " successfully written.");
return true;
end;
#############################################################################
##
#E
|