Reacted on some of the complaints of codespell

This commit is contained in:
Thomas Schmitt 2016-07-20 08:37:42 +00:00
parent a25066ebb2
commit 9d99127fa9
17 changed files with 98 additions and 99 deletions

View File

@ -132,7 +132,7 @@ then
do do
echo "$i" >&2 echo "$i" >&2
done done
echo "##### End of recived arguments" >&2 echo "##### End of received arguments" >&2
echo >&2 echo >&2
fi fi

View File

@ -47,7 +47,7 @@ export normal_end=0
# This piece of code parses input strings into words by letting xorriso # This piece of code parses input strings into words by letting xorriso
# command -msg_op "parse_silently" do the hard work. # command -msg_op "parse_silently" do the hard work.
# The input strings should be composed by concatenating input lines with # The input strings should be composed by concatenating input lines with
# newline characters inbetween. Begin by submitting a single line (without # newline characters between them. Begin by submitting a single line (without
# newline at its end) and retry with an appended further line, if # newline at its end) and retry with an appended further line, if
# xorriso_parse # xorriso_parse
# returns 1. See below xorriso_cmd_and_handle_result() for an example. # returns 1. See below xorriso_cmd_and_handle_result() for an example.
@ -269,7 +269,7 @@ mknod "$result_pipe" p
xorriso_pid=$! xorriso_pid=$!
xorriso_is_running=1 xorriso_is_running=1
# Get a sign of life from xorriso before issueing the loop prompt # Get a sign of life from xorriso before issuing the loop prompt
xorriso_cmd_and_handle_result xorriso_reply_to_stdout \ xorriso_cmd_and_handle_result xorriso_reply_to_stdout \
"print_info 'xorriso process ${xorriso_pid} started by $0'" "print_info 'xorriso process ${xorriso_pid} started by $0'"
echo >&2 echo >&2

View File

@ -1371,7 +1371,7 @@ proc scan_for_drives {} {
if {[assert_no_changes] == 0} {return ""} if {[assert_no_changes] == 0} {return ""}
if {$indev_adr != "" || $outdev_adr != ""} { if {$indev_adr != "" || $outdev_adr != ""} {
if {[window_yesno \ if {[window_yesno \
"Really give up aquired drives for scanning a new drive list ?"] \ "Really give up acquired drives for scanning a new drive list ?"] \
!= 1} { return "" } != 1} { return "" }
} }
@ -1404,7 +1404,7 @@ proc scan_for_drives {} {
set devices_scanned 1 set devices_scanned 1
reset_to_normal_background .drive_scan reset_to_normal_background .drive_scan
# Command -devices drops all aquired drives # Command -devices drops all acquired drives
refresh_outdev refresh_outdev
refresh_indev refresh_indev
} }
@ -1946,7 +1946,7 @@ proc isomanip_verify {} {
} }
# Slow down the spinning of the aquired optical drives. # Slow down the spinning of the acquired optical drives.
# Called when button "Calm drives" is hit. # Called when button "Calm drives" is hit.
# #
proc calm_drives {} { proc calm_drives {} {
@ -2343,7 +2343,7 @@ proc end_xorriso {} {
} }
# Check whether an output drive is aquired. Propose refusal if not. # Check whether an output drive is acquired. Propose refusal if not.
# Called by procedures which are about to use the output drive. # Called by procedures which are about to use the output drive.
# #
proc assert_outdev {purpose} { proc assert_outdev {purpose} {
@ -3010,7 +3010,7 @@ proc display_msg {msg} {
# Set whether messages submitted to proc display_message shall really show up # Set whether messages submitted to proc display_message shall really show up
# This is used by callback procedures to hide auxilliary commands and lengthy # This is used by callback procedures to hide auxiliary commands and lengthy
# reply messages from the user display. # reply messages from the user display.
# #
proc set_display_msg {mode} { proc set_display_msg {mode} {
@ -4389,8 +4389,8 @@ The GUI window is separated into three main areas:
- The area for management of drives and ISO image data files - The area for management of drives and ISO image data files
- allows to scan for optical drives, - allows to scan for optical drives,
- to aquire them and load their ISO directory tree, - to acquire them and load their ISO directory tree,
- to aquire ISO image files from hard disk as pseudo drives like DVD+RW, - to acquire ISO image files from hard disk as pseudo drives like DVD+RW,
- to blank CD-RW, DVD-RW DVD+RW, BD-RE and format DVD-RW, BD-R, - to blank CD-RW, DVD-RW DVD+RW, BD-RE and format DVD-RW, BD-R,
- to trigger writing of ISO sessions (which get defined in the third area), - to trigger writing of ISO sessions (which get defined in the third area),
- and to burn image data files from hard disk to optical media. - and to burn image data files from hard disk to optical media.
@ -4527,7 +4527,7 @@ filesystems on optical media (CD, DVD, BD) or in disk files.
Dependencies: Dependencies:
xorriso, Tcl language, Tk GUI toolkit, optionally Tcl/Tk package BWidget xorriso, Tcl language, Tk GUI toolkit, optionally Tcl/Tk package BWidget
Copyright (C) 2012 - 2013 Copyright (C) 2012 - 2016
Thomas Schmitt <scdbackup@gmx.net>, libburnia-project.org Thomas Schmitt <scdbackup@gmx.net>, libburnia-project.org
Provided under BSD license: Use, modify, and distribute as you like." Provided under BSD license: Use, modify, and distribute as you like."
} }
@ -4661,7 +4661,7 @@ since last time the \"Clear\" button was hit. It will not clear automatically."
of found optical drives into the box beside the button. of found optical drives into the box beside the button.
Scanning should be done before any ISO image manipulations because xorriso Scanning should be done before any ISO image manipulations because xorriso
has to give up its aquired drives in order to perform the scan run. has to give up its acquired drives in order to perform the scan run.
To become visible and to be usable, the drives have to offer rw-permission To become visible and to be usable, the drives have to offer rw-permission
to the user of this program. If drives do not show up, then consider to to the user of this program. If drives do not show up, then consider to
@ -4714,7 +4714,7 @@ information about the medium status. This info is displayed in the
Further it causes the display of the ISO image model to be updated. Further it causes the display of the ISO image model to be updated.
The medium in the drive must be blank or contain a valid ISO 9660 filesystem. The medium in the drive must be blank or contain a valid ISO 9660 filesystem.
Else the drive will only be aquired as output drive. Else the drive will only be acquired as output drive.
This drive configuration is the most usual one with xorriso. It loads This drive configuration is the most usual one with xorriso. It loads
an eventual ISO image, allows to manipulate it by insertion, deletion, an eventual ISO image, allows to manipulate it by insertion, deletion,
@ -4735,14 +4735,14 @@ and clears both \"... drive/image\" lines, as well as the ISO model."
if {$what == "Calm drives"} { if {$what == "Calm drives"} {
return \ return \
"The \"Calm drives\" button executes command -calm_drives which tells the "The \"Calm drives\" button executes command -calm_drives which tells the
aquired optical drives to stop spinning until the next drive activity acquired optical drives to stop spinning until the next drive activity
gets triggered." gets triggered."
} }
if {$what == "Rollback"} { if {$what == "Rollback"} {
return \ return \
"The \"Rollback\" button executes command -rollback which drops all pending "The \"Rollback\" button executes command -rollback which drops all pending
changes of the ISO model and reloads it from the input drive, if one is changes of the ISO model and reloads it from the input drive, if one is
aquired." acquired."
} }
if {$what == "drivelist"} { if {$what == "drivelist"} {
return \ return \
@ -4877,7 +4877,7 @@ The address of the disk file is taken from the neighboring text field.
If you do not plan to append further data to the medium, then consider If you do not plan to append further data to the medium, then consider
to enable the \"Close\" switch. to enable the \"Close\" switch.
No input drive may be aquired. (Delete all characters from the field No input drive may be acquired. (Delete all characters from the field
\"Input drive/image\" and hit Return to give up the input drive.) \"Input drive/image\" and hit Return to give up the input drive.)
The medium in the drive must be blank. The medium in the drive must be blank.

View File

@ -6,7 +6,7 @@
*/ */
/* libburn wrappers for libisoburn /* libburn wrappers for libisoburn
Copyright 2007 - 2014 Thomas Schmitt, <scdbackup@gmx.net> Copyright 2007 - 2016 Thomas Schmitt, <scdbackup@gmx.net>
Provided under GPL version 2 or later. Provided under GPL version 2 or later.
*/ */
@ -77,7 +77,7 @@ int isoburn_initialize(char msg[1024], int flag)
/* First the ugly compile time checks for header version compatibility. /* First the ugly compile time checks for header version compatibility.
If everthing matches, then they produce no C code. In case of mismatch, If everything matches, then they produce no C code. In case of mismatch,
intentionally faulty C code will be inserted. intentionally faulty C code will be inserted.
*/ */
@ -532,7 +532,7 @@ ex:
bit5= ignore ACL from external filesystems bit5= ignore ACL from external filesystems
bit6= ignore POSIX Extended Attributes from external filesystems bit6= ignore POSIX Extended Attributes from external filesystems
bit7= pretend -ROM profile and scan for table of content bit7= pretend -ROM profile and scan for table of content
bit8= re-assess (*drive_infos)[0] rather than aquiring adr bit8= re-assess (*drive_infos)[0] rather than acquiring adr
bit9= when scanning for ISO 9660 sessions on overwritable bit9= when scanning for ISO 9660 sessions on overwritable
media: Do not demand a valid superblock at LBA 0 media: Do not demand a valid superblock at LBA 0
and scan until end of medium. and scan until end of medium.

View File

@ -572,7 +572,7 @@ struct isoburn_imgen_opts {
/** /**
* Write AAIP as extension according to SUSP 1.10 rather than SUSP 1.12. * Write AAIP as extension according to SUSP 1.10 rather than SUSP 1.12.
* I.e. without announcing it by an ER field and thus without the need * I.e. without announcing it by an ER field and thus without the need
* to preceed the RRIP fields by an ES and to preceed the AA field by ES. * to precede the RRIP fields by an ES and to precede the AA field by ES.
*/ */
unsigned int aaip_susp_1_10 :1; unsigned int aaip_susp_1_10 :1;

View File

@ -149,12 +149,12 @@ All general options are accepted.
export LD_LIBRARY_PATH="/usr/local/lib" export LD_LIBRARY_PATH="/usr/local/lib"
./auto_isocontent -x ../xorriso/xorriso ./auto_isocontent -x ../xorriso/xorriso
Tests whether xorriso is able to record and restore two familes of Tests whether xorriso is able to record and restore two families of
hard links. hard links.
./auto_printsize -x ../xorriso/xorriso ./auto_printsize -x ../xorriso/xorriso
Tests how long xorriso needs to compose a medium sized directory tree. Tests how long xorriso needs to compose a medium sized directory tree.
If programs mkisofs and/or genisomage are availaible, then the same test If programs mkisofs and/or genisomage are available, then the same test
is done with them. is done with them.
@ -279,7 +279,7 @@ for use by the single tests:
some safety checks. some safety checks.
boldify Try to set the terminal mode for future output to a more boldify Try to set the terminal mode for future output to a more
noticable style of writing. noticeable style of writing.
unboldify Reset terminal mode to normal style of writing. unboldify Reset terminal mode to normal style of writing.

View File

@ -176,7 +176,7 @@ struct FindjoB {
52= show_stream_id 52= show_stream_id
53= internal: show_hfs_cmd , controlled by xorriso->show_hfs_cmd* 53= internal: show_hfs_cmd , controlled by xorriso->show_hfs_cmd*
54= internal: truncate_names 54= internal: truncate_names
55= internal: unique_trunc_test lenght 55= internal: unique_trunc_test length
test for not uniquely truncatable names, test for not uniquely truncatable names,
result delivered in XorrisO.find_unique_trunc_result result delivered in XorrisO.find_unique_trunc_result
56= like 54 but tolerating existing truncated names 56= like 54 but tolerating existing truncated names

View File

@ -4039,7 +4039,7 @@ int Xorriso_hfsplus_file_creator_type(struct XorrisO *xorriso, char *path,
bit1= Revoke any blessing of the node, regardless of parameter bit1= Revoke any blessing of the node, regardless of parameter
blessing. If node is NULL, then revoke all blessings. blessing. If node is NULL, then revoke all blessings.
bit2= Only check parameter blessing. bit2= Only check parameter blessing.
Return blessing index + 1 instead of issueing the blessing. Return blessing index + 1 instead of issuing the blessing.
bit3= With bit2: bit3= With bit2:
Allow blessing "any" and map to index ISO_HFSPLUS_BLESS_MAX. Allow blessing "any" and map to index ISO_HFSPLUS_BLESS_MAX.
Elsewise, blessing "none" is mapped to ISO_HFSPLUS_BLESS_MAX. Elsewise, blessing "none" is mapped to ISO_HFSPLUS_BLESS_MAX.

View File

@ -124,7 +124,7 @@ int Xorriso_startup_libraries(struct XorrisO *xorriso, int flag)
/* First an ugly compile time check for header version compatibility. /* First an ugly compile time check for header version compatibility.
If everthing matches, then no C code is produced. In case of mismatch, If everything matches, then no C code is produced. In case of mismatch,
intentionally faulty C code will be inserted. intentionally faulty C code will be inserted.
*/ */

View File

@ -2093,7 +2093,7 @@ int Xorriso_option_close_filter_list(struct XorrisO *xorriso, int flag)
/* Option -commit */ /* Option -commit */
/* @param flag bit0= leave indrive and outdrive acquired as they were, /* @param flag bit0= leave indrive and outdrive acquired as they were,
i.e. do not aquire outdrive as new in-out-drive i.e. do not acquire outdrive as new in-out-drive
bit1= do not perform eventual -reassure bit1= do not perform eventual -reassure
@return <=0 error , 1 success, 2 revoked by -reassure , 3 no change pending @return <=0 error , 1 success, 2 revoked by -reassure , 3 no change pending
*/ */

View File

@ -685,7 +685,7 @@ int Xorriso_cmd_sorting_rank(struct XorrisO *xorriso,
"* Character sets:", "* Character sets:",
"charset", "local_charset", "charset", "local_charset",
"* Aquiring source and target drive:", "* Acquiring source and target drive:",
"dev", "indev", "outdev", "dev", "indev", "outdev",
"* Drive and media related inquiry actions (2):", "* Drive and media related inquiry actions (2):",
@ -923,7 +923,7 @@ ex:
bit1= these are command line arguments bit1= these are command line arguments
(for xorriso->argument_emulation) (for xorriso->argument_emulation)
bit2= Only execute the one command argv[*idx] and advance bit2= Only execute the one command argv[*idx] and advance
*idx to the next command if sucessful. Then return. *idx to the next command if successful. Then return.
*/ */
int Xorriso_interpreter(struct XorrisO *xorriso, int Xorriso_interpreter(struct XorrisO *xorriso,
int argc, char **argv, int *idx, int flag) int argc, char **argv, int *idx, int flag)

View File

@ -9,7 +9,7 @@
.\" First parameter, NAME, should be all caps .\" First parameter, NAME, should be all caps
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection .\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
.\" other parameters are allowed: see man(7), man(1) .\" other parameters are allowed: see man(7), man(1)
.TH XORRISO 1 "Version 1.4.5, Jul 03, 2016" .TH XORRISO 1 "Version 1.4.5, Jul 20, 2016"
.\" Please adjust this date whenever revising the manpage. .\" Please adjust this date whenever revising the manpage.
.\" .\"
.\" Some roff macros, for reference: .\" Some roff macros, for reference:
@ -2549,7 +2549,7 @@ as reported by the drive. They would be chosen by \-read_speed "min" or
"52xCD", "24xDVD", "20xBD". "52xCD", "24xDVD", "20xBD".
.TP .TP
\fB\-close_damaged\fR "as_needed"|"force" \fB\-close_damaged\fR "as_needed"|"force"
Try to close the upcomming track and session if the drive reported the medium Try to close the upcoming track and session if the drive reported the medium
as damaged. This may apply to CD\-R, CD\-RW, DVD\-R, DVD\-RW, DVD+R, DVD+R DL, as damaged. This may apply to CD\-R, CD\-RW, DVD\-R, DVD\-RW, DVD+R, DVD+R DL,
or BD\-R media. It is indicated by warning messages when the drive gets or BD\-R media. It is indicated by warning messages when the drive gets
acquired, and by a remark "but next track is damaged" with the line acquired, and by a remark "but next track is damaged" with the line
@ -5212,7 +5212,7 @@ into lines which tell their structure.
The first line tells the return value of Xorriso_sieve_get_result(). The first line tells the return value of Xorriso_sieve_get_result().
The next line tells the number of strings. Each string begins by a line that The next line tells the number of strings. Each string begins by a line that
tells the number of lines of the string. Then follow these lines. They are to tells the number of lines of the string. Then follow these lines. They are to
be concatenated with a newline character inbetween each of them. be concatenated with a newline character between each of them.
Finally the number of still available recorded results of the given name Finally the number of still available recorded results of the given name
is put out. is put out.
.br .br
@ -5241,7 +5241,7 @@ input lines minus one tells xorriso how many newline characters are
part of the input text. part of the input text.
.br .br
The announced number of text lines will be read from dialog input, The announced number of text lines will be read from dialog input,
concatenated with a newline character inbetween each of them, concatenated with a newline character between each of them,
and submitted to Xorriso_parse_line() as parameter line. and submitted to Xorriso_parse_line() as parameter line.
Note that newlines outside of quotation marks are Note that newlines outside of quotation marks are
interpreted as separators if the separators parameter is empty. interpreted as separators if the separators parameter is empty.
@ -5251,7 +5251,7 @@ into lines which tell their structure.
The first line tells the return value of Xorriso_parse_line(). The first line tells the return value of Xorriso_parse_line().
The next line tells the number of strings. Each string begins by a line that The next line tells the number of strings. Each string begins by a line that
tells the number of lines of the string. Then follow these lines. They are to tells the number of lines of the string. Then follow these lines. They are to
be concatenated with a newline character inbetween each of them. be concatenated with a newline character between each of them.
.br .br
If \-backslash_codes "encode_output" is enabled, then the strings undergo If \-backslash_codes "encode_output" is enabled, then the strings undergo
encoding as if they were enclosed in quotes. Escpecially each string encoding as if they were enclosed in quotes. Escpecially each string
@ -5272,11 +5272,11 @@ issue.
.br .br
\fBparse_silently\fR \fBparse_silently\fR
.br .br
Like "parse" but not issueing a prompting message. Confusing to humans. Like "parse" but not issuing a prompting message. Confusing to humans.
.br .br
\fBparse_bulk_silently\fR \fBparse_bulk_silently\fR
.br .br
Like "parse_bulk" but not issueing a prompting message. Confusing to humans. Like "parse_bulk" but not issuing a prompting message. Confusing to humans.
.br .br
\fBcompare_sev\fR \fBcompare_sev\fR
.br .br

View File

@ -346,7 +346,7 @@ int Xorriso_program_arg_bsl(struct XorrisO *xorriso, int argc, char ***argv,
which where set with Xorriso_new(), or argument which where set with Xorriso_new(), or argument
arranging. arranging.
bit2= Only execute the one command argv[*idx] and advance bit2= Only execute the one command argv[*idx] and advance
*idx to the next command if sucessful. Then return. *idx to the next command if successful. Then return.
This prevents any argument arranging. This prevents any argument arranging.
@since 1.2.2 @since 1.2.2
bit3= With bit1 and not bit2: bit3= With bit1 and not bit2:

View File

@ -2168,7 +2168,7 @@ File: xorriso.info, Node: Writing, Next: SetWrite, Prev: Filter, Up: Command
-read_speed "min" or "max" if they undercut or surpass the built-in -read_speed "min" or "max" if they undercut or surpass the built-in
limits. These are "1x", "52xCD", "24xDVD", "20xBD". limits. These are "1x", "52xCD", "24xDVD", "20xBD".
-close_damaged "as_needed"|"force" -close_damaged "as_needed"|"force"
Try to close the upcomming track and session if the drive reported Try to close the upcoming track and session if the drive reported
the medium as damaged. This may apply to CD-R, CD-RW, DVD-R, the medium as damaged. This may apply to CD-R, CD-RW, DVD-R,
DVD-RW, DVD+R, DVD+R DL, or BD-R media. It is indicated by warning DVD-RW, DVD+R, DVD+R DL, or BD-R media. It is indicated by warning
messages when the drive gets acquired, and by a remark "but next messages when the drive gets acquired, and by a remark "but next
@ -4358,7 +4358,7 @@ File: xorriso.info, Node: Frontend, Next: ExDevices, Prev: Scripting, Up: Co
line tells the number of strings. Each string begins by a line line tells the number of strings. Each string begins by a line
that tells the number of lines of the string. Then follow these that tells the number of lines of the string. Then follow these
lines. They are to be concatenated with a newline character lines. They are to be concatenated with a newline character
inbetween each of them. Finally the number of still available between each of them. Finally the number of still available
recorded results of the given name is put out. recorded results of the given name is put out.
*clear_sieve* *clear_sieve*
Dispose all recorded strings and continue watching program Dispose all recorded strings and continue watching program
@ -4377,7 +4377,7 @@ File: xorriso.info, Node: Frontend, Next: ExDevices, Prev: Scripting, Up: Co
Xorriso_parse_line(). The number of input lines minus one tells Xorriso_parse_line(). The number of input lines minus one tells
xorriso how many newline characters are part of the input text. xorriso how many newline characters are part of the input text.
The announced number of text lines will be read from dialog input, The announced number of text lines will be read from dialog input,
concatenated with a newline character inbetween each of them, and concatenated with a newline character between each of them, and
submitted to Xorriso_parse_line() as parameter line. Note that submitted to Xorriso_parse_line() as parameter line. Note that
newlines outside of quotation marks are interpreted as separators newlines outside of quotation marks are interpreted as separators
if the separators parameter is empty. if the separators parameter is empty.
@ -4386,8 +4386,7 @@ File: xorriso.info, Node: Frontend, Next: ExDevices, Prev: Scripting, Up: Co
return value of Xorriso_parse_line(). The next line tells the return value of Xorriso_parse_line(). The next line tells the
number of strings. Each string begins by a line that tells the number of strings. Each string begins by a line that tells the
number of lines of the string. Then follow these lines. They are number of lines of the string. Then follow these lines. They are
to be concatenated with a newline character inbetween each of them. to be concatenated with a newline character between each of them.
If -backslash_codes "encode_output" is enabled, then the strings If -backslash_codes "encode_output" is enabled, then the strings
undergo encoding as if they were enclosed in quotes. Escpecially undergo encoding as if they were enclosed in quotes. Escpecially
each string will be put out as a single result line. each string will be put out as a single result line.
@ -4403,10 +4402,10 @@ File: xorriso.info, Node: Frontend, Next: ExDevices, Prev: Scripting, Up: Co
hand, large transactions of command, input texts, and results are hand, large transactions of command, input texts, and results are
desirable if connection latency is an issue. desirable if connection latency is an issue.
*parse_silently* *parse_silently*
Like "parse" but not issueing a prompting message. Confusing to Like "parse" but not issuing a prompting message. Confusing to
humans. humans.
*parse_bulk_silently* *parse_bulk_silently*
Like "parse_bulk" but not issueing a prompting message. Confusing Like "parse_bulk" but not issuing a prompting message. Confusing
to humans. to humans.
*compare_sev* *compare_sev*
The parameter_text should contain two comma separated severity The parameter_text should contain two comma separated severity
@ -5192,7 +5191,7 @@ File: xorriso.info, Node: CommandIdx, Next: ConceptIdx, Prev: Legal, Up: Top
* -jigdo clears JTE or or adds parameter to JTE: Jigdo. (line 33) * -jigdo clears JTE or or adds parameter to JTE: Jigdo. (line 33)
* -joliet enables production of Joliet tree: SetWrite. (line 10) * -joliet enables production of Joliet tree: SetWrite. (line 10)
* -launch_frontend starts frontend program at pipes: Frontend. * -launch_frontend starts frontend program at pipes: Frontend.
(line 142) (line 141)
* -list_arg_sorting prints sorting order of -x: ArgSort. (line 26) * -list_arg_sorting prints sorting order of -x: ArgSort. (line 26)
* -list_delimiter replaces '--': Scripting. (line 55) * -list_delimiter replaces '--': Scripting. (line 55)
* -list_extras lists compile time extra features: Scripting. (line 24) * -list_extras lists compile time extra features: Scripting. (line 24)
@ -5224,7 +5223,7 @@ File: xorriso.info, Node: CommandIdx, Next: ConceptIdx, Prev: Legal, Up: Top
* -msg_op perform operations on program messages: Frontend. (line 27) * -msg_op perform operations on program messages: Frontend. (line 27)
* -mv renames files in ISO image: Manip. (line 37) * -mv renames files in ISO image: Manip. (line 37)
* -mv renames single file in ISO image: Manip. (line 31) * -mv renames single file in ISO image: Manip. (line 31)
* -named_pipe_loop enters EOF resistant dialog: Frontend. (line 120) * -named_pipe_loop enters EOF resistant dialog: Frontend. (line 119)
* -not_leaf sets exclusion pattern: SetInsert. (line 59) * -not_leaf sets exclusion pattern: SetInsert. (line 59)
* -not_list sets exclusions from disk file: SetInsert. (line 63) * -not_list sets exclusions from disk file: SetInsert. (line 63)
* -not_mgt controls file exclusion: SetInsert. (line 22) * -not_mgt controls file exclusion: SetInsert. (line 22)
@ -5247,8 +5246,8 @@ File: xorriso.info, Node: CommandIdx, Next: ConceptIdx, Prev: Legal, Up: Top
* -print_info prints message text line: Scripting. (line 104) * -print_info prints message text line: Scripting. (line 104)
* -print_mark prints synchronizing text line: Scripting. (line 106) * -print_mark prints synchronizing text line: Scripting. (line 106)
* -print_size predicts image size: Inquiry. (line 85) * -print_size predicts image size: Inquiry. (line 85)
* -prog sets program name: Frontend. (line 177) * -prog sets program name: Frontend. (line 176)
* -prog_help prints help text: Frontend. (line 179) * -prog_help prints help text: Frontend. (line 178)
* -prompt prompts for enter key: Scripting. (line 110) * -prompt prompts for enter key: Scripting. (line 110)
* -publisher sets publisher id: SetWrite. (line 186) * -publisher sets publisher id: SetWrite. (line 186)
* -pvd_info shows image id strings: Inquiry. (line 107) * -pvd_info shows image id strings: Inquiry. (line 107)
@ -5372,7 +5371,7 @@ File: xorriso.info, Node: ConceptIdx, Prev: CommandIdx, Up: Top
* Dialog, bring text into history, -history: Scripting. (line 42) * Dialog, bring text into history, -history: Scripting. (line 42)
* Dialog, confirmation question, -reassure: DialogCtl. (line 29) * Dialog, confirmation question, -reassure: DialogCtl. (line 29)
* Dialog, enable dialog mode, -dialog: DialogCtl. (line 7) * Dialog, enable dialog mode, -dialog: DialogCtl. (line 7)
* Dialog, EOF resistant, -named_pipe_loop: Frontend. (line 120) * Dialog, EOF resistant, -named_pipe_loop: Frontend. (line 119)
* Dialog, line editing, -use_readline: DialogCtl. (line 26) * Dialog, line editing, -use_readline: DialogCtl. (line 26)
* Dialog, terminal geometry, -page: DialogCtl. (line 18) * Dialog, terminal geometry, -page: DialogCtl. (line 18)
* Directories, copy, -cp_clone: Insert. (line 181) * Directories, copy, -cp_clone: Insert. (line 181)
@ -5418,7 +5417,7 @@ File: xorriso.info, Node: ConceptIdx, Prev: CommandIdx, Up: Top
* Filter, zisofs parameters, -zisofs: SetWrite. (line 274) * Filter, zisofs parameters, -zisofs: SetWrite. (line 274)
* Filter, _definition: Filter. (line 6) * Filter, _definition: Filter. (line 6)
* Frontend program, start at pipes, -launch_frontend: Frontend. * Frontend program, start at pipes, -launch_frontend: Frontend.
(line 142) (line 141)
* GPT, _definition: Extras. (line 39) * GPT, _definition: Extras. (line 39)
* Group, global in ISO image, -gid: SetWrite. (line 271) * Group, global in ISO image, -gid: SetWrite. (line 271)
* Group, in ISO image, -chgrp: Manip. (line 49) * Group, in ISO image, -chgrp: Manip. (line 49)
@ -5545,7 +5544,7 @@ File: xorriso.info, Node: ConceptIdx, Prev: CommandIdx, Up: Top
* Program, end without writing, -rollback_end: Scripting. (line 154) * Program, end without writing, -rollback_end: Scripting. (line 154)
* Program, list extra features, -list_extras: Scripting. (line 24) * Program, list extra features, -list_extras: Scripting. (line 24)
* Program, print help text, -help: Scripting. (line 19) * Program, print help text, -help: Scripting. (line 19)
* Program, print help text, -prog_help: Frontend. (line 179) * Program, print help text, -prog_help: Frontend. (line 178)
* Program, print message text line, -print_info: Scripting. (line 104) * Program, print message text line, -print_info: Scripting. (line 104)
* Program, print result text line, -print: Scripting. (line 102) * Program, print result text line, -print: Scripting. (line 102)
* Program, print synchronizing text line, -print_mark: Scripting. * Program, print synchronizing text line, -print_mark: Scripting.
@ -5553,7 +5552,7 @@ File: xorriso.info, Node: ConceptIdx, Prev: CommandIdx, Up: Top
* Program, print version, -version: Scripting. (line 22) * Program, print version, -version: Scripting. (line 22)
* Program, prompt for enter key, -prompt: Scripting. (line 110) * Program, prompt for enter key, -prompt: Scripting. (line 110)
* Program, replace --, -list_delimiter: Scripting. (line 55) * Program, replace --, -list_delimiter: Scripting. (line 55)
* Program, set name, -prog: Frontend. (line 177) * Program, set name, -prog: Frontend. (line 176)
* Program, show current settings, -status: Scripting. (line 44) * Program, show current settings, -status: Scripting. (line 44)
* Program, status history, -status_history_max: Scripting. (line 52) * Program, status history, -status_history_max: Scripting. (line 52)
* Program, wait a time span, -sleep: Scripting. (line 113) * Program, wait a time span, -sleep: Scripting. (line 113)
@ -5653,41 +5652,41 @@ Node: Manip72612
Node: CmdFind82395 Node: CmdFind82395
Node: Filter100698 Node: Filter100698
Node: Writing105320 Node: Writing105320
Node: SetWrite115477 Node: SetWrite115476
Node: Bootable138521 Node: Bootable138520
Node: Jigdo162314 Node: Jigdo162313
Node: Charset166573 Node: Charset166572
Node: Exception169902 Node: Exception169901
Node: DialogCtl176031 Node: DialogCtl176030
Node: Inquiry178633 Node: Inquiry178632
Node: Navigate187083 Node: Navigate187082
Node: Verify195378 Node: Verify195377
Node: Restore205256 Node: Restore205255
Node: Emulation213869 Node: Emulation213868
Node: Scripting224279 Node: Scripting224278
Node: Frontend232062 Node: Frontend232061
Node: Examples241697 Node: Examples241687
Node: ExDevices242875 Node: ExDevices242865
Node: ExCreate243536 Node: ExCreate243526
Node: ExDialog244836 Node: ExDialog244826
Node: ExGrowing246107 Node: ExGrowing246097
Node: ExModifying246916 Node: ExModifying246906
Node: ExBootable247426 Node: ExBootable247416
Node: ExCharset247981 Node: ExCharset247971
Node: ExPseudo248877 Node: ExPseudo248867
Node: ExCdrecord249804 Node: ExCdrecord249794
Node: ExMkisofs250124 Node: ExMkisofs250114
Node: ExGrowisofs251481 Node: ExGrowisofs251471
Node: ExException252635 Node: ExException252625
Node: ExTime253093 Node: ExTime253083
Node: ExIncBackup253551 Node: ExIncBackup253541
Node: ExRestore257577 Node: ExRestore257567
Node: ExRecovery258523 Node: ExRecovery258513
Node: Files259095 Node: Files259085
Node: Seealso260429 Node: Seealso260419
Node: Bugreport261144 Node: Bugreport261134
Node: Legal261735 Node: Legal261725
Node: CommandIdx262747 Node: CommandIdx262737
Node: ConceptIdx279862 Node: ConceptIdx279852
 
End Tag Table End Tag Table

View File

@ -50,7 +50,7 @@
@c man .\" First parameter, NAME, should be all caps @c man .\" First parameter, NAME, should be all caps
@c man .\" Second parameter, SECTION, should be 1-8, maybe w/ subsection @c man .\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
@c man .\" other parameters are allowed: see man(7), man(1) @c man .\" other parameters are allowed: see man(7), man(1)
@c man .TH XORRISO 1 "Version 1.4.5, Jul 03, 2016" @c man .TH XORRISO 1 "Version 1.4.5, Jul 20, 2016"
@c man .\" Please adjust this date whenever revising the manpage. @c man .\" Please adjust this date whenever revising the manpage.
@c man .\" @c man .\"
@c man .\" Some roff macros, for reference: @c man .\" Some roff macros, for reference:
@ -2999,7 +2999,7 @@ as reported by the drive. They would be chosen by -read_speed "min" or
@item -close_damaged "as_needed"|"force" @item -close_damaged "as_needed"|"force"
@kindex -close_damaged closes damaged track and session @kindex -close_damaged closes damaged track and session
@cindex Damaged track and session, close, -close_damaged @cindex Damaged track and session, close, -close_damaged
Try to close the upcomming track and session if the drive reported the medium Try to close the upcoming track and session if the drive reported the medium
as damaged. This may apply to CD-R, CD-RW, DVD-R, DVD-RW, DVD+R, DVD+R DL, as damaged. This may apply to CD-R, CD-RW, DVD-R, DVD-RW, DVD+R, DVD+R DL,
or BD-R media. It is indicated by warning messages when the drive gets or BD-R media. It is indicated by warning messages when the drive gets
acquired, and by a remark "but next track is damaged" with the line acquired, and by a remark "but next track is damaged" with the line
@ -6041,7 +6041,7 @@ into lines which tell their structure.
The first line tells the return value of Xorriso_sieve_get_result(). The first line tells the return value of Xorriso_sieve_get_result().
The next line tells the number of strings. Each string begins by a line that The next line tells the number of strings. Each string begins by a line that
tells the number of lines of the string. Then follow these lines. They are to tells the number of lines of the string. Then follow these lines. They are to
be concatenated with a newline character inbetween each of them. be concatenated with a newline character between each of them.
Finally the number of still available recorded results of the given name Finally the number of still available recorded results of the given name
is put out. is put out.
@* @*
@ -6070,7 +6070,7 @@ input lines minus one tells xorriso how many newline characters are
part of the input text. part of the input text.
@* @*
The announced number of text lines will be read from dialog input, The announced number of text lines will be read from dialog input,
concatenated with a newline character inbetween each of them, concatenated with a newline character between each of them,
and submitted to Xorriso_parse_line() as parameter line. and submitted to Xorriso_parse_line() as parameter line.
Note that newlines outside of quotation marks are Note that newlines outside of quotation marks are
interpreted as separators if the separators parameter is empty. interpreted as separators if the separators parameter is empty.
@ -6080,7 +6080,7 @@ into lines which tell their structure.
The first line tells the return value of Xorriso_parse_line(). The first line tells the return value of Xorriso_parse_line().
The next line tells the number of strings. Each string begins by a line that The next line tells the number of strings. Each string begins by a line that
tells the number of lines of the string. Then follow these lines. They are to tells the number of lines of the string. Then follow these lines. They are to
be concatenated with a newline character inbetween each of them. be concatenated with a newline character between each of them.
@* @*
If -backslash_codes "encode_output" is enabled, then the strings undergo If -backslash_codes "encode_output" is enabled, then the strings undergo
encoding as if they were enclosed in quotes. Escpecially each string encoding as if they were enclosed in quotes. Escpecially each string
@ -6101,11 +6101,11 @@ issue.
@* @*
@strong{parse_silently} @strong{parse_silently}
@* @*
Like "parse" but not issueing a prompting message. Confusing to humans. Like "parse" but not issuing a prompting message. Confusing to humans.
@* @*
@strong{parse_bulk_silently} @strong{parse_bulk_silently}
@* @*
Like "parse_bulk" but not issueing a prompting message. Confusing to humans. Like "parse_bulk" but not issuing a prompting message. Confusing to humans.
@* @*
@strong{compare_sev} @strong{compare_sev}
@* @*

View File

@ -300,7 +300,7 @@ struct XorrisO { /* the global context of xorriso */
int cache_tile_blocks; int cache_tile_blocks;
int cache_default; /* bit0= cache_num_tiles, bit1= cache_tile_blocks */ int cache_default; /* bit0= cache_num_tiles, bit1= cache_tile_blocks */
int do_calm_drive; /* bit0= calm down drive after aquiring it */ int do_calm_drive; /* bit0= calm down drive after acquiring it */
char indev[SfileadrL]; char indev[SfileadrL];
void *in_drive_handle; /* interpreted only by libburnia oriented modules */ void *in_drive_handle; /* interpreted only by libburnia oriented modules */
@ -611,7 +611,7 @@ struct XorrisO { /* the global context of xorriso */
int structured_search; int structured_search;
/* 0= flat text search /* 0= flat text search
1= '/' is a significant separator that cannot be matched by wildcards 1= '/' is a significant separator that cannot be matched by wildcards
( 2= like 1 : but report only occurence in tree, no payload, no location ) ( 2= like 1 : but report only occurrence in tree, no payload, no location )
( 3= like 2 : but report first content level of matching directories ) ( 3= like 2 : but report first content level of matching directories )
4= actually not structured but unique find mode (with search_mode 4) 4= actually not structured but unique find mode (with search_mode 4)
*/ */
@ -629,7 +629,7 @@ struct XorrisO { /* the global context of xorriso */
bit1= parameter too (else rekursion only) bit1= parameter too (else rekursion only)
bit2= whole subtree banned (else only exact path) bit2= whole subtree banned (else only exact path)
bit3= when comparing ignore excluded files rather bit3= when comparing ignore excluded files rather
than to treat them as truely missing on disk than to treat them as truly missing on disk
*/ */
struct ExclusionS *iso_rr_hidings; struct ExclusionS *iso_rr_hidings;

View File

@ -1 +1 @@
#define Xorriso_timestamP "2016.07.16.111233" #define Xorriso_timestamP "2016.07.20.083654"