Revision 299dba8f
Von Steven Schubiger vor mehr als 4 Jahren hinzugefügt
doc/dokumentation.xml | ||
---|---|---|
8516 | 8516 |
Template/OpenDocument |
8517 | 8517 |
filenames</programlisting> |
8518 | 8518 |
|
8519 |
<para>The last of which is very machine dependant. Remember that
|
|
8519 |
<para>The last of which is very machine dependent. Remember that
|
|
8520 | 8520 |
a lot of characters are forbidden by some filesystems, for |
8521 | 8521 |
example MS Windows doesn't like ':' in its files where Linux |
8522 | 8522 |
doesn't mind that. If you want the files created with your |
doc/html/ch04s05.html | ||
---|---|---|
54 | 54 |
Template/XML |
55 | 55 |
Template/LaTeX |
56 | 56 |
Template/OpenDocument |
57 |
filenames</pre><p>The last of which is very machine dependant. Remember that
|
|
57 |
filenames</pre><p>The last of which is very machine dependent. Remember that
|
|
58 | 58 |
a lot of characters are forbidden by some filesystems, for |
59 | 59 |
example MS Windows doesn't like ':' in its files where Linux |
60 | 60 |
doesn't mind that. If you want the files created with your |
js/kivi.Order.js | ||
---|---|---|
162 | 162 |
$('#nr_in_title').html($(elt).val()); |
163 | 163 |
}; |
164 | 164 |
|
165 |
ns.reload_cv_dependant_selections = function() {
|
|
165 |
ns.reload_cv_dependent_selections = function() {
|
|
166 | 166 |
var data = $('#order_form').serializeArray(); |
167 | 167 |
data.push({ name: 'action', value: 'Order/customer_vendor_changed' }); |
168 | 168 |
|
... | ... | |
786 | 786 |
|
787 | 787 |
$(function() { |
788 | 788 |
if ($('#type').val() == 'sales_order' || $('#type').val() == 'sales_quotation' ) { |
789 |
$('#order_customer_id').change(kivi.Order.reload_cv_dependant_selections);
|
|
789 |
$('#order_customer_id').change(kivi.Order.reload_cv_dependent_selections);
|
|
790 | 790 |
} else { |
791 |
$('#order_vendor_id').change(kivi.Order.reload_cv_dependant_selections);
|
|
791 |
$('#order_vendor_id').change(kivi.Order.reload_cv_dependent_selections);
|
|
792 | 792 |
} |
793 | 793 |
|
794 | 794 |
if ($('#type').val() == 'sales_order' || $('#type').val() == 'sales_quotation' ) { |
scripts/find-use.pl | ||
---|---|---|
145 | 145 |
$modules{$_->{name}} ||= { status => 'optional' } for @SL::InstallationCheck::optional_modules; |
146 | 146 |
$modules{$_->{name}} ||= { status => 'developer' } for @SL::InstallationCheck::developer_modules; |
147 | 147 |
|
148 |
# build transitive closure for documented dependancies
|
|
148 |
# build transitive closure for documented dependencies
|
|
149 | 149 |
my $changed = 1; |
150 | 150 |
while ($changed) { |
151 | 151 |
$changed = 0; |
... | ... | |
249 | 249 |
=item required |
250 | 250 |
|
251 | 251 |
This module is documented in C<SL:InstallationCheck> to be necessary, or is a |
252 |
dependancy of one of these. Everything alright.
|
|
252 |
dependency of one of these. Everything alright.
|
|
253 | 253 |
|
254 | 254 |
=item !missing |
255 | 255 |
|
scripts/installation_check.pl | ||
---|---|---|
82 | 82 |
$| = 1; |
83 | 83 |
|
84 | 84 |
if (!SL::LxOfficeConf->read(undef, 'may fail')) { |
85 |
print_header('Could not load the config file. If you have dependancies from any features enabled in the configuration these will still show up as optional because of this. Please rerun this script after installing the dependancies needed to load the configuration.')
|
|
85 |
print_header('Could not load the config file. If you have dependencies from any features enabled in the configuration these will still show up as optional because of this. Please rerun this script after installing the dependencies needed to load the configuration.')
|
|
86 | 86 |
} else { |
87 | 87 |
SL::InstallationCheck::check_for_conditional_dependencies(); |
88 | 88 |
} |
... | ... | |
122 | 122 |
|
123 | 123 |
Standard check done, everything is OK and up to date. Have a look at the --help |
124 | 124 |
section of this script to see some more advanced checks for developer and |
125 |
optional dependancies, as well as LaTeX packages you might need.
|
|
125 |
optional dependencies, as well as LaTeX packages you might need.
|
|
126 | 126 |
EOL |
127 | 127 |
} |
128 | 128 |
} |
... | ... | |
270 | 270 |
$role{optional} ? 'It is OPTIONAL for kivitendo but RECOMMENDED for improved functionality.' |
271 | 271 |
: $role{required} ? 'It is NEEDED by kivitendo and must be installed.' |
272 | 272 |
: $role{devel} ? 'It is OPTIONAL for kivitendo and only useful for developers.' |
273 |
: 'It is not listed as a dependancy yet. Please tell this the developers.';
|
|
273 |
: 'It is not listed as a dependency yet. Please tell this the developers.';
|
|
274 | 274 |
|
275 | 275 |
my @source_texts = module_source_texts($module); |
276 | 276 |
local $" = $/; |
... | ... | |
340 | 340 |
|
341 | 341 |
=head1 NAME |
342 | 342 |
|
343 |
scripts/installation_check.pl - check kivitendo dependancies
|
|
343 |
scripts/installation_check.pl - check kivitendo dependencies
|
|
344 | 344 |
|
345 | 345 |
=head1 SYNOPSIS |
346 | 346 |
|
... | ... | |
372 | 372 |
|
373 | 373 |
=item C<-d, --devel> |
374 | 374 |
|
375 |
Probe for perl developer dependancies. (Used for console and tags file)
|
|
375 |
Probe for perl developer dependencies. (Used for console and tags file)
|
|
376 | 376 |
|
377 | 377 |
=item C<--no-devel> |
378 | 378 |
|
379 |
Don't probe for perl developer dependancies. (Useful in combination with --all)
|
|
379 |
Don't probe for perl developer dependencies. (Useful in combination with --all)
|
|
380 | 380 |
|
381 | 381 |
=item C<-h, --help> |
382 | 382 |
|
... | ... | |
408 | 408 |
|
409 | 409 |
=item C<-v. --verbose> |
410 | 410 |
|
411 |
Print additional info for missing dependancies
|
|
411 |
Print additional info for missing dependencies
|
|
412 | 412 |
|
413 | 413 |
=item C<-i, --install-command> |
414 | 414 |
|
Auch abrufbar als: Unified diff
Schreibweise "dependancy" -> "dependency" (und aehnliches)